@charset "UTF-8";
/* 公共 */
* {
  font-family: Montserrat-Regular;
}

.text-justify {
  text-align: justify;
}

@font-face {
  font-family: Montserrat-Light;
  src: url(../fonts/MONTSERRAT-LIGHT.OTF);
}

@font-face {
  font-family: Montserrat-Regular;
  src: url(../fonts/MONTSERRAT-REGULAR.TTF);
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url(../fonts/MONTSERRAT-SEMI-BOLD.OTF);
}

@font-face {
  font-family: Montserrat-Bold;
  src: url(../fonts/MONTSERRAT-BOLD.OTF);
}

/**
 * grid布局
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $colGap     行列间隔
*/
@keyframes dotAni {
  0% {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    width: 150%;
    height: 150%;
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0);
  }
}

@keyframes dotAni2 {
  0% {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    width: 400%;
    height: 400%;
    background-color: rgba(255, 255, 255, 0);
  }
}

@keyframes dotAni3 {
  0% {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.4);
  }
  100% {
    width: 400%;
    height: 400%;
    background-color: rgba(255, 255, 255, 0);
  }
}

.swiper-button-clear {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
  margin-top: 0;
}

.swiper-button-clear::after {
  content: none;
}

.swiper-button-style {
  width: 4.375rem;
  height: 4.375rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: linear-gradient(#fff, #fff) content-box, linear-gradient(45deg, #6c4dba, #d1a5f6);
  padding: 1px;
  overflow: hidden;
}

.swiper-button-style i {
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  color: var(--main-color);
  position: relative;
  z-index: 2;
}

.swiper-button-style::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #6c4dba, #d1a5f6);
  transition: all .4s ease-in-out;
  z-index: 1;
}

.swiper-button-style:hover::before {
  width: 100%;
  height: 100%;
}

.swiper-button-style:hover i {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.swiper-button-style2 {
  width: 5.3125rem;
  height: 5.3125rem;
  background: #fff;
  border-radius: 50%;
}

.swiper-button-style2 i {
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  color: var(--main-color);
  position: relative;
  z-index: 2;
  font-size: var(--font22);
}

.swiper-button-style2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, #6c4dba, #d1a5f6);
  transition: all .4s ease-in-out;
  z-index: 1;
}

.swiper-button-style2:hover::before {
  width: 100%;
  height: 100%;
}

.swiper-button-style2:hover i {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.swiper-button-style3 {
  width: 4.375rem;
  height: 4.375rem;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 50%;
}

.swiper-button-style3 i {
  color: #fff;
  position: relative;
  z-index: 2;
}

.swiper-button-style3:hover {
  background: white;
}

.swiper-button-style3:hover i {
  color: var(--main-color);
}

/* end 公共 */
main {
  margin-top: var(--header-height);
}

.moreBtn {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-radius: .625rem;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  padding: .9531rem 2.2125rem;
  position: relative;
  font-size: var(--font16);
}

.moreBtn .original {
  background: #fff;
  color: #000;
  display: grid;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  font-family: Montserrat-Bold;
}

.moreBtn .letters {
  display: inline-flex;
}

.moreBtn span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
  color: #fff;
  box-sizing: border-box;
  font-family: Montserrat-Bold;
}

.moreBtn span:nth-child(2n) {
  transform: translateY(15px);
}

.moreBtn:hover .original {
  transform: translateY(100%);
}

.moreBtn:hover span {
  opacity: 1;
  transform: translateY(0);
}

.moreBtn:hover span:nth-child(2) {
  transition-delay: 0.2s;
}

.moreBtn:hover span:nth-child(3) {
  transition-delay: 0.3s;
}

.moreBtn:hover span:nth-child(4) {
  transition-delay: 0.4s;
}

.moreBtn:hover span:nth-child(5) {
  transition-delay: 0.5s;
}

.moreBtn:hover span:nth-child(6) {
  transition-delay: 0.6s;
}

.moreBtn:hover span:nth-child(7) {
  transition-delay: 0.7s;
}

.moreBtn:hover span:nth-child(8) {
  transition-delay: 0.8s;
}

.moreBtn:hover span:nth-child(9) {
  transition-delay: 0.9s;
}

.moreBtn:hover span:nth-child(10) {
  transition-delay: 1s;
}

.moreBtn:hover span:nth-child(11) {
  transition-delay: 1.1s;
}

.moreBtn:hover span:nth-child(12) {
  transition-delay: 1.2s;
}

.moreBtn:hover span:nth-child(13) {
  transition-delay: 1.3s;
}

.moreBtn:hover span:nth-child(14) {
  transition-delay: 1.4s;
}

.moreBtn:hover span:nth-child(15) {
  transition-delay: 1.5s;
}

.moreBtn:hover span:nth-child(16) {
  transition-delay: 1.6s;
}

.moreBtn:hover span:nth-child(17) {
  transition-delay: 1.7s;
}

.moreBtn:hover span:nth-child(18) {
  transition-delay: 1.8s;
}

.moreBtn:hover span:nth-child(19) {
  transition-delay: 1.9s;
}

.moreBtn:hover span:nth-child(20) {
  transition-delay: 2s;
}

.moreBtn-large:hover span:nth-child(2) {
  transition-delay: 0.1s;
}

.moreBtn-large:hover span:nth-child(3) {
  transition-delay: 0.15s;
}

.moreBtn-large:hover span:nth-child(4) {
  transition-delay: 0.2s;
}

.moreBtn-large:hover span:nth-child(5) {
  transition-delay: 0.25s;
}

.moreBtn-large:hover span:nth-child(6) {
  transition-delay: 0.3s;
}

.moreBtn-large:hover span:nth-child(7) {
  transition-delay: 0.35s;
}

.moreBtn-large:hover span:nth-child(8) {
  transition-delay: 0.4s;
}

.moreBtn-large:hover span:nth-child(9) {
  transition-delay: 0.45s;
}

.moreBtn-large:hover span:nth-child(10) {
  transition-delay: 0.5s;
}

.moreBtn-large:hover span:nth-child(11) {
  transition-delay: 0.55s;
}

.moreBtn-large:hover span:nth-child(12) {
  transition-delay: 0.6s;
}

.moreBtn-large:hover span:nth-child(13) {
  transition-delay: 0.65s;
}

.moreBtn-large:hover span:nth-child(14) {
  transition-delay: 0.7s;
}

.moreBtn-large:hover span:nth-child(15) {
  transition-delay: 0.75s;
}

.moreBtn-large:hover span:nth-child(16) {
  transition-delay: 0.8s;
}

.moreBtn-large:hover span:nth-child(17) {
  transition-delay: 0.85s;
}

.moreBtn-large:hover span:nth-child(18) {
  transition-delay: 0.9s;
}

.moreBtn-large:hover span:nth-child(19) {
  transition-delay: 0.95s;
}

.moreBtn-large:hover span:nth-child(20) {
  transition-delay: 1s;
}

.moreBtn-reverse {
  background: #fff;
  color: #000;
}

.moreBtn-reverse .original {
  background: #000;
  color: #fff;
}

.moreBtn-reverse span {
  color: #000;
}

.moreBtn2 {
  font-family: Montserrat-Bold;
  font-size: 1rem;
  padding: 1.125rem 1.375rem;
  background: var(--gradient-color);
  color: #fff;
  border-radius: .625rem;
  transition: all .3s ease-in-out;
}

.moreBtn2:hover {
  background: var(--light-gradient-color);
  color: #fff;
}

.moreBtn3 {
  width: 9.375rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat-Bold;
  font-size: var(--font16);
  background: #000;
  border-radius: 1.875rem;
  color: #fff;
  position: relative;
}

.moreBtn3 i {
  position: absolute;
  top: 50%;
  right: 13.33%;
  transform: translate(-50%, -50%);
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: all .3s ease-in-out;
}

.moreBtn3:hover {
  color: #fff;
}

.moreBtn3:hover i {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-listStyle a {
  display: block;
  height: 32.1875rem;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all .5s ease-in-out;
  position: relative;
  background: #fff;
}

.news-listStyle a:hover {
  box-shadow: 0 40px 60px 10px rgba(35, 38, 38, 0.3);
  z-index: 20;
}

.news-listStyle .text-box {
  height: 50%;
  width: 100%;
  background: #fff;
  padding: 2.8125rem 1.875rem 0;
  box-sizing: border-box;
}

.news-listStyle .text-box .year {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.54);
}

.news-listStyle .text-box .news-title {
  font-size: var(--font22);
  line-height: 1.5;
  margin-top: 1.875rem;
  color: #000000;
}

.news-listStyle .img-box {
  height: 50%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-listStyle .img-box img {
  display: block;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 9999;
  overflow: hidden;
}

header .logo {
  width: 18.75rem;
  display: block;
}

header .logo img {
  filter: brightness(0) invert(1);
  /* 将图片变为白色 */
}

header .header-right .header-search {
  margin: 0 1.875rem;
}

header .header-right .header-search .search-btn {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  display: flex;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

header .header-right .header-search .search-btn::after {
  content: "";
  width: 100%;
  height: 0;
  background: var(--gradient-color);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all .3s ease;
  z-index: 1;
}

header .header-right .header-search .search-btn i {
  font-size: var(--font16);
  color: #fff;
  margin: auto;
  position: relative;
  z-index: 2;
}

header .header-right .header-search .search-btn:hover::after {
  height: 100%;
}

header .header-right .langBtn {
  font-size: var(--font18);
  color: #fff;
  padding: .875rem .75rem;
  background-image: var(--gradient-color);
  border-radius: .625rem;
  transition: all .3s ease;
}

header .header-right .langBtn:hover {
  background-image: var(--light-gradient-color);
}

header nav .nav-list .one-title {
  height: 100%;
  position: relative;
}

header nav .nav-list .one-title h2 {
  height: 100%;
  display: flex;
  align-items: center;
}

header nav .nav-list .one-title h2 a {
  font-weight: normal;
  font-size: var(--font18);
  color: #fff;
  padding: 0 1.25rem;
}

header nav .nav-list .one-title:first-child h2 a {
  padding-left: 0;
}

header nav .nav-list .one-title:last-child h2 a {
  padding-right: 0;
}

header nav .nav-list .one-title::after {
  content: "";
  height: .25rem;
  width: 100%;
}

header nav .nav-list .one-title.active h2 a {
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

header nav .nav-list .one-title:hover h2 a {
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

header nav .nav-list .one-title:hover .subListBox {
  z-index: 999;
  opacity: 1;
  pointer-events: auto;
}

header .search-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--gradient-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: all .5s linear;
}

header .search-content.active {
  transform: translateY(0);
}

header .search-content form {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #fff;
}

header .search-content input {
  height: calc(var(--header-height)*0.5);
  flex: 1;
  background: none;
  color: #fff;
  font-size: var(--font18);
}

header .search-content input::placeholder {
  color: #fff;
  font-size: var(--font18);
}

header .search-content button {
  height: calc(var(--header-height)*0.5);
  width: calc(var(--header-height)*0.5);
  background: none;
  color: #fff;
  font-size: var(--font18);
  padding: 0;
  cursor: pointer;
}

header.fixed {
  background: #fff;
  box-shadow: 1px 1px 24px 0px rgba(0, 0, 0, 0.07);
}

header.fixed .logo img {
  filter: none;
}

header.fixed nav .nav-list .one-title h2 a {
  color: #000;
}

header.fixed .header-right .header-search .search-btn {
  background: rgba(5, 5, 5, 0.21);
}

.subListBox {
  position: fixed;
  top: var(--li-height);
  left: 0;
  width: 100%;
  background: #ffff;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: all .5s ease-in;
  box-shadow: 3px 0 3px 0px rgba(0, 0, 0, 0.07);
}

.otherList .w1400 {
  display: flex;
  align-items: center;
  min-height: 19.375rem;
}

.otherList .subList {
  padding: 0 5rem;
  gap: 3.4375rem;
}

.otherList .subList .item {
  display: block;
  width: 23.625rem;
  height: 11.8125rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.otherList .subList .item .img-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: all .5s ease-in-out;
}

.otherList .subList .item h3 {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1.875rem;
  box-sizing: border-box;
  padding: 0 1.25rem;
  font-weight: normal;
}

.otherList .subList .item h3 p {
  color: #fff;
  font-size: var(--font18);
}

.otherList .subList .item:hover .img-box {
  transform: scale(1.1);
}

.productSubList::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #ededed;
  height: 100%;
  width: 32.5rem/2;
  z-index: 1;
}

@media screen and (min-width: 1921px) {
  .productSubList::after {
    width: calc((100vw - 1400px)/2);
  }
}

.productSubList .w1400 {
  min-height: 19.375rem;
  background: #ededed;
  position: relative;
  z-index: 2;
}

.productSubList .left {
  width: 21.25rem;
  height: 100%;
}

.productSubList .left .left-item {
  display: block;
  height: 4.375rem;
  line-height: 4.375rem;
  padding-left: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
}

.productSubList .left .left-item::after {
  content: "";
  width: 6px;
  height: 100%;
  background: var(--gradient-color);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .3s linear;
}

.productSubList .left .left-item.active {
  background: #fff;
}

.productSubList .left .left-item.active::after {
  opacity: 1;
}

.productSubList .right {
  background: #fff;
  flex: 1;
  position: relative;
}

.productSubList .right .product-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.productSubList .right .product-items .items-wrapper {
  height: 100%;
  padding-left: 3.4375rem;
  gap: 4rem;
}

.productSubList .right .product-items .items-wrapper .productItem {
  width: 18.4375rem;
  border-radius: .625rem;
  overflow: hidden;
  position: relative;
}

.productSubList .right .product-items .items-wrapper .productItem img {
  transition: all .5s ease-in-out;
}

.productSubList .right .product-items .items-wrapper .productItem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
  transition: all .3s linear;
  z-index: 1;
}

.productSubList .right .product-items .items-wrapper .productItem:hover img {
  transform: scale(1.1);
}

.productSubList .right .product-items .items-wrapper p {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1.125rem;
  font-size: var(--font18);
  color: #fff;
  letter-spacing: 0;
  padding: 0 .25rem;
  z-index: 2;
}

.productSubList .right .product-items.active {
  opacity: 1;
  z-index: 50;
}

footer {
  background: #1c1f1f;
  padding-top: 7.8125rem;
}

footer .footer-top .footer-text {
  display: block;
  width: 41.25rem;
}

footer .footer-top .form-box {
  margin-top: 4.6875rem;
  width: 32.5rem;
  position: relative;
  border-radius: .9375rem;
  overflow: hidden;
  border: 1px solid #fff;
}

footer .footer-top .form-box input {
  display: block;
  height: 3.75rem;
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  padding: 0 8.75rem 0 1.5625rem;
  color: #fff;
}

footer .footer-top .form-box input::placeholder {
  color: #fff;
  opacity: .23;
}

footer .footer-top .submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 7.5rem;
  height: 100%;
  display: block;
  border-radius: .9375rem;
  background: var(--gradient-color);
  color: #fff;
  cursor: pointer;
}

footer .footer-top .right {
  width: 50%;
}

footer .footer-top .footer-nav .one-nav h2 > a {
  font-size: var(--font18);
  color: #fff;
  font-weight: normal;
}

footer .footer-top .footer-nav .one-nav:not(:last-child) {
  margin-bottom: 2.8125rem;
}

footer .footer-top .footer-nav .one-nav:hover i,
footer .footer-top .footer-nav .one-nav:hover .subList h3 {
  opacity: 1;
}

footer .footer-top .footer-nav .one-nav.active i,
footer .footer-top .footer-nav .one-nav.active .subList h3 {
  opacity: 1;
}

footer .footer-top .footer-nav i {
  opacity: 0;
  font-size: var(--font20);
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin: 0 1.875rem 0 1.5625rem;
}

footer .footer-top .footer-nav .subList h3 {
  opacity: 0;
}

footer .footer-top .footer-nav .subList h3:nth-child(1) {
  transition-delay: 200ms;
}

footer .footer-top .footer-nav .subList h3:nth-child(2) {
  transition-delay: 400ms;
}

footer .footer-top .footer-nav .subList h3:nth-child(3) {
  transition-delay: 600ms;
}

footer .footer-top .footer-nav .subList h3:nth-child(4) {
  transition-delay: 800ms;
}

footer .footer-top .footer-nav .subList h3:nth-child(5) {
  transition-delay: 1000ms;
}

footer .footer-top .footer-nav .subList h3:not(:last-child) {
  margin-right: 4.0625rem;
}

footer .footer-top .footer-nav .subList h3 a {
  font-size: var(--font18);
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
}

footer .iconList {
  margin: 5rem 0 1.875rem;
}

footer .iconList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
}

footer .iconList li a i {
  font-size: 18px;
  color: #000;
}

footer .iconList li:hover a {
  background: var(--gradient-color);
}

footer .iconList li:not(:last-child) {
  margin-right: 1.875rem;
}

footer .footer-bot {
  padding: 1.875rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

footer .footer-bot p,
footer .footer-bot a {
  font-size: var(--font14);
  color: rgba(255, 255, 255, 0.54);
}

.breadCrumbs {
  height: var(--breadCrumbs-height);
  background: #fcfcfc;
}

.breadCrumbs a,
.breadCrumbs span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.53);
}

.breadCrumbs.fixed {
  z-index: -1;
  position: fixed;
  width: 100%;
  top: var(--header-height);
}

.banner {
  position: fixed;
  top: calc(var(--header-height) + var(--breadCrumbs-height));
  width: 100%;
  z-index: -1;
}

.banner img {
  aspect-ratio: 1920/680;
  object-fit: cover;
}

.banner .banner-text {
  position: absolute;
  left: 0;
  bottom: 7.5rem;
  width: 100%;
  color: #fff;
}

.banner .banner-text h1 {
  letter-spacing: -1px;
  font-family: Montserrat-Bold;
  font-size: var(--font50);
}

.banner .banner-text h2 {
  margin-top: 1.25rem;
  letter-spacing: -1px;
  font-family: Montserrat-Bold;
  font-size: var(--font50);
}

.index {
  margin-top: 0;
}

.index .i-banner .swiper {
  height: 100vh;
}

.index .i-banner .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-banner .swiper-pagination {
  bottom: 2.5rem;
}

.index .i-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.47);
  transition: all .5s ease-in-out;
}

.index .i-banner .swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 5px;
}

.index .i-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.index .i-banner .banner-text p {
  font-size: var(--font46);
  color: #fff;
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
}

.index .i-banner .banner-text .moreBtn {
  margin-top: 1.875rem;
}

.index .i-system {
  position: relative;
  min-height: 60.3125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  --dot-r: 1.875rem;
  --item-height: 2.8125rem;
}

.index .i-system .titleBox {
  position: absolute;
  top: 3.9%;
  left: 0;
  color: #fff;
  width: 100%;
  text-align: center;
}

.index .i-system .titleBox .title {
  font-size: var(--font46);
  opacity: .9;
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
  line-height: 1;
}

.index .i-system .titleBox .desc {
  text-align: justify;
  text-align-last: center;
  width: 63.53%;
  margin: 1.875rem auto 0;
  font-size: var(--font16);
  line-height: 1.68;
}

.index .i-system .point {
  position: absolute;
  width: 1px;
  height: 1px;
}

.index .i-system .point.active .item::after {
  width: var(--item-height);
}

.index .i-system .point.active .item .dot i {
  transform: rotate(45deg);
}

.index .i-system .point.active .item .dot::after, .index .i-system .point.active .item .dot::before {
  animation-play-state: paused;
  opacity: 0;
}

.index .i-system .point.active .item .title {
  opacity: 0;
  pointer-events: none;
  cursor: none;
}

.index .i-system .point.active .content {
  opacity: 1;
  z-index: 999;
}

.index .i-system .item {
  position: absolute;
  top: 50%;
  left: 50%;
  height: var(--item-height);
  display: flex;
  align-items: center;
  padding: 0 .5rem;
}

.index .i-system .item .dot {
  width: var(--dot-r);
  height: var(--dot-r);
  border-radius: 50%;
  background: var(--gradient-color);
  display: flex;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.index .i-system .item .dot::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: dotAni 2s linear infinite;
  z-index: 1;
}

.index .i-system .item .dot::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: dotAni2 2s linear infinite;
  z-index: 1;
}

.index .i-system .item .dot i {
  margin: auto;
  color: #fff;
  font-size: var(--font16);
  transition: all .3s ease;
}

.index .i-system .item .title {
  word-break: keep-all;
  white-space: nowrap;
  margin-left: .375rem;
  position: relative;
  z-index: 2;
  transition: opacity .3s ease;
  cursor: pointer;
}

.index .i-system .item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.375rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .3s linear;
}

.index .i-system .content {
  width: 24.0625rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem;
  position: absolute;
  border-radius: .9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  transition: opacity .3s ease-in-out;
  opacity: 0;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translate(calc(-100% + var(--item-height)), calc(-100% - 10px));
}

.index .i-system .content .left {
  width: 14.75rem;
}

.index .i-system .content .title {
  font-size: var(--font16);
  color: #000;
}

.index .i-system .content .desc {
  font-size: var(--font14);
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.64);
  margin: 1rem 0;
}

.index .i-system .content .moreLink {
  font-size: var(--font14);
  color: var(--main-color);
}

.index .i-system .content .right {
  width: 6.25rem;
  height: 6.25rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.index .i-system .point1 {
  top: 34%;
  left: 44%;
}

.index .i-system .point1 .content {
  top: calc(var(--item-height) + 10px);
  left: 0;
  transform: none;
}

.index .i-system .point2 {
  top: 72%;
  left: 22%;
}

.index .i-system .point2 .content {
  transform: translate(0, calc(-100% - 10px));
}

.index .i-system .point3 {
  top: 81%;
  left: 59.5%;
}

.index .i-system .point4 {
  top: 73%;
  left: 72%;
}

.index .i-getSolution {
  min-height: 16.25rem;
  display: flex;
  align-items: center;
  padding: 3.125rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-getSolution .left {
  color: #fff;
}

.index .i-getSolution .left .title {
  font-size: var(--font40);
  font-family: Montserrat-Bold;
  line-height: 1;
  letter-spacing: -1px;
}

.index .i-getSolution .left .list {
  margin-top: 1.875rem;
}

.index .i-getSolution .left .list li {
  color: #fff;
  font-size: var(--font18);
}

.index .i-getSolution .left .list li img {
  display: block;
  width: 22px;
  flex-shrink: 0;
  margin-right: 1.25rem;
}

.index .i-getSolution .left .list li:not(:last-child) {
  margin-bottom: 1.125rem;
}

.index .i-getSolution .moreBtn {
  font-size: var(--font26);
  padding: 1.875rem 1.5625rem;
}

.index .i-why {
  text-align: center;
  margin-top: 5.3125rem;
}

.index .i-why .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font55);
  letter-spacing: -1px;
}

.index .i-why .title2 {
  font-size: var(--font26);
  letter-spacing: -1px;
  margin: 1.875rem 0 2.1875rem;
}

.index .i-why .desc {
  font-family: Montserrat-SemiBold;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.76);
}

.index .i-why .list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3.125rem 2.8125rem;
}

@media (max-width: 992px) {
  .index .i-why .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.index .i-why .list .item {
  border-radius: 1.875rem;
  border: solid 1px #000000;
  min-height: 10.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.index .i-why .list img {
  display: block;
  width: 1.875rem;
  margin: 0 auto;
}

.index .i-why .list .num {
  font-family: Montserrat-Bold;
  font-size: var(--font55);
  letter-spacing: -1px;
}

.index .i-why .list p {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.82);
}

.index .i-solution {
  margin-top: 5.3125rem;
  min-height: 28.4375rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-solution .top .title {
  font-size: var(--font40);
  color: #fff;
  letter-spacing: -1px;
}

.index .i-solution .list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 0 6.875rem;
  color: #fff;
  text-align: center;
  margin-top: 5.3125rem;
}

@media (max-width: 992px) {
  .index .i-solution .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.index .i-solution .list .icon-box {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: .625rem;
  border: 1px solid #fff;
  display: flex;
  margin: 0 auto 1.125rem;
}

.index .i-solution .list .icon-box i {
  margin: auto;
  font-size: var(--font30);
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.index .i-solution .list p {
  word-break: keep-all;
  white-space: nowrap;
}

.index .i-partner {
  background: #efefef;
  padding-top: 5rem;
}

.index .i-partner .swiper .swiper-warpper {
  transition-property: transform;
}

.index .i-partner .swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.index .i-partner .swiper img {
  display: block;
  max-width: 100%;
  max-height: 90%;
  margin: 0 auto;
  opacity: .37;
  transition: opacity 0.3s ease;
}

.index .i-partner .swiper img:hover {
  opacity: 1;
}

.i-product {
  margin-top: 6.25rem;
}

.i-product .video-box {
  width: 100%;
  height: 38.4375rem;
  position: relative;
  cursor: pointer;
  border-radius: 1.25rem;
  overflow: hidden;
}

.i-product .video-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6.25rem;
  color: #fff;
  z-index: 20;
  transition: opacity 0.3s ease;
}

.i-product .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.i-product .video-box .video-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.i-product .video-box.playing .video-poster-overlay {
  opacity: 0;
}

.i-product .video-box.playing i {
  opacity: 0;
}

.i-product .title {
  font-family: Montserrat-Bold;
  font-size: var(--font38);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-top: 2.5rem;
  min-height: 5.75rem;
}

.i-product .desc {
  font-size: var(--font24);
  line-height: 1.33;
  letter-spacing: -1px;
  margin: 1.875rem 0;
}

.i-product .swiper-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.8125rem;
}

.i-product .swiper-button .swiper-button-prev {
  margin-right: 1.25rem;
}

.i-product.whiteStyle .title,
.i-product.whiteStyle .desc {
  color: #fff;
}

.i-product.whiteStyle .swiper-button-prev,
.i-product.whiteStyle .swiper-button-next {
  background: transparent;
  border: 1px solid #d1a5f6;
}

.i-adv .item {
  --item-height: 60rem;
  min-height: var(--item-height);
  background: #f1e3fc;
}

.i-adv .item .left {
  height: var(--item-height);
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.i-adv .item .right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i-adv .item .right .box {
  width: 67.7%;
}

.i-adv .item .right .title {
  font-size: var(--font48);
  line-height: 1.25;
  letter-spacing: -1px;
}

.i-adv .item .right .title * {
  font-family: Montserrat-Bold;
}

.i-adv .item .right .desc {
  margin: 4.0625rem 0;
  font-size: var(--font18);
  line-height: 1.9;
}

.i-adv .item .right .tip {
  font-family: Montserrat-Bold;
  font-size: var(--font22);
  color: var(--main-color);
  margin-bottom: 1.875rem;
}

.i-adv .item .right .moreBtn {
  font-size: var(--font18);
}

.i-adv .item:nth-child(2n) {
  flex-direction: row-reverse;
}

.i-news {
  background: #efefef;
  padding-top: 5rem;
}

.i-news .title {
  display: flex;
  position: relative;
  font-family: Montserrat-Bold;
  font-size: var(--font34);
  letter-spacing: -1px;
}

.i-news .title .sqr {
  display: block;
  margin-right: .9375rem;
  width: 25px;
  height: 33px;
  background-image: var(--gradient-color);
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
}

.i-news .swiper-pagination {
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  text-align: right;
  font-family: Montserrat-Light;
  font-size: var(--font26);
  margin-top: 2.5rem;
}

.i-news .swiper-pagination-current {
  font-family: Montserrat-Bold;
  font-size: var(--font34);
}

.i-news .swiper-pagination-total {
  font-family: Montserrat-Light;
  font-size: var(--font26);
}

.i-news .swiper {
  height: 32.1875rem;
  margin-top: 1.875rem;
}

.i-news .swiper .swiper-slide {
  overflow: hidden;
  border-radius: 1.25rem;
}

.i-news .swiper-tool {
  margin-top: 3.75rem;
}

.i-news .swiper-tool .swiper-button-prev {
  margin-right: 1.5rem;
}

.i-news .swiper-tool .line {
  width: 58.4375rem;
  height: 1px;
  border-top: 1px dashed #1c1511;
  margin: 0 1.25rem;
}

.i-contact {
  padding: 6.875rem 0 4.375rem;
  background: #efefef;
}

.i-contact .box {
  min-height: 24.375rem;
  background: var(--gradient-color);
  border-radius: 2.5rem;
  padding: 0 10rem;
  box-sizing: border-box;
}

.i-contact .left .title p {
  color: #fff;
  font-family: Montserrat-SemiBold;
  font-size: var(--font70);
  letter-spacing: -2px;
  line-height: 1.2;
}

.i-contact .left .icon-arrow {
  margin-left: 4.0625rem;
  display: block;
  width: 4.375rem;
  position: relative;
  top: -2.1875rem;
  transform: translateY(50%);
}

.i-contact .right .list li {
  display: flex;
}

.i-contact .right .list li i {
  font-size: var(--font16);
  color: #fff;
  margin-right: 1.5625rem;
}

.i-contact .right .list li .text {
  font-size: var(--font16);
  color: #fff;
}

.i-contact .right .list li:not(:last-child) {
  margin-bottom: 3.125rem;
}

.i-contact .right .moreBtn3 {
  margin-left: 3.125rem;
  width: 14.375rem;
}

.i-contact .right .moreBtn3 i {
  right: 6.33%;
}

.i-contact.blackStyle {
  background: #000;
}

.i-link {
  min-height: 10rem;
}

.i-link .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  --rightDis: 11.25rem;
}

.i-link .list .item i {
  font-size: var(--font34);
  color: #000;
}

.i-link .list .item p {
  margin-left: .875rem;
  font-size: var(--font20);
}

.i-link .list .item:not(:last-child) {
  margin-right: var(--rightDis);
}

.i-link .list .item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: calc(var(--rightDis)/2 * -1);
  transform: translate(-50%, -50%);
}

.i-link.shadow {
  box-shadow: 27px 8px 46px 0px rgba(10, 2, 5, 0.14);
}

.i-link.whiteStyle {
  background: #fff;
}

.news .news-swiper {
  background: #e8d8f9;
  padding: 6.25rem 0;
}

.news .news-swiper .swiper-slide {
  gap: 4.375rem;
}

.news .news-swiper .img-box {
  width: 46.56%;
  flex-shrink: 0;
}

.news .news-swiper .img-box img {
  border-radius: 1.25rem;
  aspect-ratio: 745/460;
  object-fit: cover;
}

.news .news-swiper .text-box {
  flex: 1;
}

.news .news-swiper .text-box .iconList .item:not(:last-child) {
  margin-right: 5rem;
}

.news .news-swiper .text-box .iconList i {
  font-size: var(--font22);
  color: var(--main-color);
}

.news .news-swiper .text-box .iconList p {
  margin-left: 1.125rem;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.48);
}

.news .news-swiper .text-box .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  letter-spacing: -1px;
  color: #000000;
  line-height: 1.1;
  margin: 1.875rem 0 2.5rem;
}

.news .news-swiper .text-box .desc {
  font-size: var(--font16);
  line-height: 1.875;
  color: rgba(0, 0, 0, 0.79);
}

.news .news-swiper .text-box .moreBtn {
  margin-top: 1.875rem;
}

.news .news-swiper .w1600 {
  position: relative;
}

.news .news-swiper .w1600 .swiper-button-style {
  background: linear-gradient(#e8d8f9, #e8d8f9) content-box, linear-gradient(45deg, #6c4dba, #d1a5f6);
}

.news .news-swiper .w1600 .swiper-button-prev,
.news .news-swiper .w1600 .swiper-button-next {
  position: absolute;
  top: 50%;
}

.news .news-swiper .w1600 .swiper-button-prev {
  left: -2.5rem;
  transform: translate(-100%, -50%);
}

.news .news-swiper .w1600 .swiper-button-next {
  right: -2.5rem;
  transform: translate(100%, -50%);
}

.news .news-list {
  background: #efefef;
  padding: 5.625rem 0 4.375rem;
}

.news .news-list .list-top .top-title {
  font-size: var(--font45);
  font-family: Montserrat-Bold;
  color: #000;
  position: relative;
  letter-spacing: -1px;
}

.news .news-list .list-top .top-title .sqr {
  display: block;
  margin-right: .9375rem;
  width: 25px;
  height: 33px;
  background-image: var(--gradient-color);
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
}

.news .news-list .list-top .news-class .item {
  width: 11.25rem;
  height: 3.75rem;
  background: #000;
  border-radius: 10px;
  font-size: var(--font16);
  color: #efefef;
  text-align: center;
  line-height: 3.75rem;
  transition: all .5s ease-in-out;
}

.news .news-list .list-top .news-class .item:not(:last-child) {
  margin-right: 4.6875rem;
}

.news .news-list .list-top .news-class .item:hover {
  background: var(--gradient-color);
}

.news .news-list .list-top .news-class .item.active {
  background: var(--gradient-color);
}

.news .news-list .news-listStyle {
  margin-top: 5.625rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 4.0625rem 1.25rem;
}

@media (max-width: 992px) {
  .news .news-list .news-listStyle {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .news .news-list .news-listStyle {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.news .news-list .video-list {
  margin-top: 7.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 2.8125rem 2.5rem;
}

@media (max-width: 992px) {
  .news .news-list .video-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .news .news-list .video-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.news .news-list .video-list li {
  position: relative;
  cursor: pointer;
}

.news .news-list .video-list li img {
  aspect-ratio: 780/450;
  object-fit: cover;
}

.news .news-list .video-list li i {
  font-size: 6.25rem;
  color: #fff;
}

.newsXq .newsXq-1 {
  background: #f1e3fc;
  padding: 4.375rem 0;
}

.newsXq .newsXq-1 .title {
  font-size: var(--font40);
  font-family: Montserrat-SemiBold;
  letter-spacing: -1px;
  color: #000000;
}

.newsXq .newsXq-1 .iconList {
  margin-top: 3.4375rem;
}

.newsXq .newsXq-1 .iconList .item:not(:last-child) {
  margin-right: 5rem;
}

.newsXq .newsXq-1 .iconList i {
  font-size: var(--font22);
  color: #6038b7;
}

.newsXq .newsXq-1 .iconList p {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.48);
  margin-left: .9375rem;
}

.newsXq .newsXq-2 {
  background: #efefef;
  padding-top: 3.125rem;
}

.newsXq .newsXq-2 .w1600 {
  background: #fff;
  border-radius: 1.25rem;
  padding: 6rem 0;
}

.newsXq .newsXq-2 .news-content {
  width: 81.25%;
  margin: 0 auto;
  font-size: var(--font16);
  line-height: 1.875;
  padding-bottom: 4.6875rem;
}

.newsXq .newsXq-2 .news-content img {
  max-width: 100%;
}

.newsXq .newsXq-2 .page-btn {
  width: 81.25%;
  margin: 0 auto;
}

.newsXq .newsXq-2 .page-btn a {
  width: 43%;
  height: 100px;
  border: 1px solid #000000;
  border-radius: 10px;
}

.newsXq .newsXq-2 .page-btn a i {
  font-size: var(--font20);
  margin: 0 1.25rem;
  color: var(--main-color);
  flex-shrink: 0;
}

.newsXq .newsXq-2 .page-btn .text {
  color: #000000;
}

.newsXq .newsXq-2 .page-btn .text p:first-child {
  font-size: var(--font16);
}

.newsXq .newsXq-2 .page-btn .text p:last-child {
  margin-top: 1.25rem;
  font-size: var(--font18);
  font-family: Montserrat-Light;
}

.newsXq .i-news .title {
  width: 75%;
}

.newsXq .i-news .swiper {
  margin-top: 4.0625rem;
}

.newsXq .i-news .swiper-pagination {
  margin-top: 0;
}

.newsXq .i-contact {
  padding: 2.5rem 0 4.375rem;
}

.main {
  background: #fff;
}

.development {
  margin-top: 0;
}

.development .development-1 {
  background: #f1e3fc;
  padding: 7.5rem 0;
}

.development .development-1 .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  letter-spacing: -1px;
  color: #000;
}

.development .development-1 .desc {
  margin-top: 2rem;
  font-size: var(--font16);
  line-height: 1.875;
}

.development .development-2 {
  position: relative;
}

.development .development-2 .dot {
  width: 1px;
  height: 1px;
  background: #fff;
  position: absolute;
  --cir-radius: 12px;
  --line-height: 12.25rem;
}

.development .development-2 .dot .cir {
  width: var(--cir-radius);
  height: var(--cir-radius);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.development .development-2 .dot .cir::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  animation: dotAni3 2s linear infinite;
}

.development .development-2 .dot .line {
  width: 1px;
  height: var(--line-height);
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}

.development .development-2 .dot .icon {
  position: absolute;
  left: 50%;
  top: calc(-1 * var(--line-height));
  transform: translate(-50%, -100%);
  width: 2.625rem;
}

.development .development-2 .dot .text {
  word-break: keep-all;
  white-space: nowrap;
  color: #fff;
  position: absolute;
  top: calc(-1 * var(--line-height));
  left: 0;
  transform: translate(-150%, -100%);
  text-align: right;
}

.development .development-2 .dot1 {
  top: 41.5%;
  left: 25%;
}

.development .development-2 .dot2 {
  top: 44%;
  left: 46%;
}

.development .development-2 .dot3 {
  top: 55%;
  left: 56.8%;
}

.development .development-2 .dot3 .text {
  transform: translate(-120%, 50%);
}

.development .development-2 .dot4 {
  top: 48%;
  left: 70%;
}

.development .development-2 .dot4 .text {
  text-align: left;
  transform: translate(20%, 30%);
}

.development .development-2 .dot5 {
  top: 63%;
  left: 71.2%;
}

.development .development-2 .dot5 .text {
  text-align: left;
  transform: translate(20%, 30%);
}

.development .development-3 {
  padding-top: 5rem;
}

.development .development-3 .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  letter-spacing: -1px;
}

.development .development-3 .tip {
  font-family: Montserrat-SemiBold;
  font-size: var(--font20);
  margin: .9375rem 0 2.1875rem;
}

.development .development-3 .desc {
  font-size: var(--font16);
  line-height: 1.875;
}

.development .development-3 .box {
  margin-top: 6.25rem;
}

.development .development-3 .box .item {
  width: 46.14%;
  background: #f1e3fc;
  border-radius: 1.25rem;
  overflow: hidden;
}

.development .development-3 .box .item .img-box {
  position: relative;
}

.development .development-3 .box .item img {
  aspect-ratio: 646/360;
  object-fit: cover;
}

.development .development-3 .box .item .tag {
  position: absolute;
  top: 25px;
  left: 22px;
  padding: 8px 15px;
  background: var(--gradient-color);
  color: #fff;
  font-size: var(--font20);
  border-radius: 5px;
}

.development .development-3 .box .text-box {
  min-height: 20.25rem;
  padding: 5rem 2.5rem;
  box-sizing: border-box;
}

.development .development-3 .box .text-box .item-title {
  font-size: var(--font26);
  font-family: Montserrat-SemiBold;
  letter-spacing: -1px;
  margin-bottom: 2.1875rem;
}

.development .i-contact {
  background: #fff;
  padding: 8rem 0 4.5rem;
}

.service-title {
  font-size: var(--font40);
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
}

.service {
  margin-top: 0;
}

.service .service-1 {
  padding: 10.3125rem 0 6.25rem;
}

.service .service-1 .img-box {
  width: 48.75%;
}

.service .service-1 .img-box img {
  border-radius: 1.25rem;
}

.service .service-1 .text-box {
  width: 46.875%;
}

.service .service-1 .text-box .service-title {
  line-height: 1.5;
}

.service .service-1 .text-box .desc {
  margin-top: 3.4375rem;
  font-size: var(--font20);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.78);
}

.service .service-2 {
  background: #f1e3fc;
  padding: 9.6875rem 0 7.5rem;
}

.service .service-2 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 3.4375rem 8.4375rem;
  --li-height: 8.4375rem;
  margin-top: 5rem;
}

@media (max-width: 992px) {
  .service .service-2 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.service .service-2 .list li {
  position: relative;
}

.service .service-2 .list li .item {
  z-index: 6;
  border-radius: 20px;
  border: solid 1px #6631e7;
  min-height: var(--li-height);
  padding: 0 2.5rem;
  cursor: pointer;
}

.service .service-2 .list li .item .item-title {
  flex: 1;
  color: #000;
  letter-spacing: -1px;
  font-family: Montserrat-Bold;
  font-size: var(--font30);
}

.service .service-2 .list li .item .item-title .item-icon {
  margin-right: 2.1875rem;
  font-size: var(--font38);
  color: rgba(102, 49, 231, 0.94);
}

.service .service-2 .list li .item #itemIcon {
  flex-shrink: 0;
  font-size: var(--font38);
  color: rgba(102, 49, 231, 0.94);
}

.service .service-2 .list li .subItem {
  display: none;
  min-height: calc(2 * var(--li-height) + 3.75rem);
  padding: 7.5rem 4.375rem 3.125rem 7.5rem;
  color: rgba(0, 0, 0, 0.75);
  font-size: var(--font20);
  line-height: 1.7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  border: solid 1px #6631e7;
  z-index: 5;
  box-sizing: border-box;
}

.service .service-2 .list li.active {
  z-index: 5;
}

.service .service-2 .list li.active .item {
  border: 0;
}

.service .service-2 .list li.active .item .item-title,
.service .service-2 .list li.active .item #itemIcon {
  position: relative;
  z-index: 6;
}

.service .service-2 .list li.active .item .subItem {
  display: block;
}

.service .i-contact {
  background: #fff;
}

.service-3 {
  padding: 7.8125rem 0 0;
}

.service-3 .box {
  max-width: 1500px;
  width: 93.75%;
}

.service-3 .desc {
  margin-top: 2.1875rem;
  font-family: Montserrat-SemiBold;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.7;
}

.service-3 .form-box {
  margin-top: 3.75rem;
}

.service-3 .form-box .form-row {
  gap: 4.0625rem;
}

.service-3 .form-box .form-row:not(:last-child) {
  margin-bottom: 2.625rem;
}

.service-3 .form-box .form-item {
  flex: 1;
  display: flex;
  align-items: stretch;
  position: relative;
}

.service-3 .form-box .form-item input {
  display: block;
  width: 100%;
  height: 4.6875rem;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 0 2rem;
  box-sizing: border-box;
  font-size: var(--font16);
  color: #000;
}

.service-3 .form-box .form-item input::placeholder {
  color: rgba(0, 0, 0, 0.66);
}

.service-3 .form-box .form-item.phoneItem input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.service-3 .selected {
  width: 85px;
  flex-shrink: 0;
  border: 1px solid #000;
  border-right: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.66);
  cursor: pointer;
}

.service-3 .selected i.iconfont {
  font-size: 12px;
}

.service-3 .select-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 350px;
  width: 100%;
  border: 1px solid #eaeaeb;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.051);
  margin-top: 3px;
  padding: 0 10px 10px;
  overflow-y: scroll;
  z-index: 20;
}

.service-3 .select-drop .searchBox {
  padding: 10px 0 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1;
  background: #fff;
}

.service-3 .select-drop .searchBox input {
  height: 40px;
  outline: 1px solid transparent;
  background: #fff;
  font-size: var(--font16);
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaeb;
  border-radius: 6px !important;
}

.service-3 .select-drop .searchBox input:focus-visible {
  outline-color: #222;
  border-color: #222;
}

.service-3 .select-drop .select-item {
  margin-top: 10px;
  padding: 8px;
  font-size: var(--font16);
  font-weight: 400;
  cursor: pointer;
}

.service-3 .select-drop .select-item .area-prefix {
  color: #828282;
}

.service-3 .select-drop .select-item:hover {
  background-color: #fafafb;
}

.service-3 .tip {
  margin-top: 2.25rem;
  font-size: var(--font20);
  color: #6533df;
}

.service-3 .multipleChoiceBox {
  margin-top: 2.1875rem;
}

.service-3 .multipleChoiceBox .item {
  width: 26.67%;
  position: relative;
  margin-bottom: 2.1875rem;
}

.service-3 .multipleChoiceBox .item input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.service-3 .multipleChoiceBox .item .sqr {
  width: 23px;
  height: 23px;
  border: 1px solid #6533df;
  margin-right: .9375rem;
}

.service-3 .multipleChoiceBox .item p {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.76);
}

.service-3 .multipleChoiceBox .item label.checked .sqr {
  background-color: #6533df;
}

.service-3 .multipleChoiceBox .item:nth-child(4n-3) {
  width: 33.33%;
}

.service-3 .multipleChoiceBox .item:nth-child(4n) {
  width: 13.33%;
}

.service-3 textarea {
  width: 100%;
  border: solid 1px #000000;
  height: 16.75rem;
  resize: none;
  border-radius: 5px;
  padding: 1.875rem;
  box-sizing: border-box;
  font-size: var(--font16);
  line-height: 2;
}

.service-3 .submitBtn {
  margin-top: 2.8125rem;
  width: 18.75rem;
  height: 4.375rem;
  line-height: 4.375rem;
  text-align: center;
  background-image: linear-gradient(0deg, #6c4dba 0%, #d1a5f6 100%);
  border-radius: 5px;
  font-family: Montserrat-Medium;
  font-size: var(--font30);
  color: #fff;
  letter-spacing: -1px;
  cursor: pointer;
}

.service-3.black .form-box .form-item input,
.service-3.black textarea {
  background: transparent;
}

.service-3.black .tip {
  color: #000;
}

.service-3.black .box {
  width: 100%;
}

.service-3.whiteStyle .form-box .form-item > input,
.service-3.whiteStyle textarea {
  background: transparent;
}

.service-3.whiteStyle .service-title {
  color: #fff;
}

.service-3.whiteStyle .desc {
  color: rgba(255, 255, 255, 0.88) !important;
}

.service-3.whiteStyle .form-box .form-item > input,
.service-3.whiteStyle .selected,
.service-3.whiteStyle textarea {
  border: 1px solid #fff;
  color: #fff;
}

.service-3.whiteStyle .form-box .form-item > input::placeholder,
.service-3.whiteStyle .selected::placeholder,
.service-3.whiteStyle textarea::placeholder {
  color: #fff;
  opacity: .6;
}

.service-3.whiteStyle .tip {
  color: #fff;
}

.service-3.whiteStyle .multipleChoiceBox .item .sqr {
  border: 1px solid #fff;
}

.service-3.whiteStyle .multipleChoiceBox .item p {
  color: rgba(255, 255, 255, 0.76);
}

.about {
  margin-top: 0;
}

.about .about-1 {
  background: #f1e3fc;
  padding: 5.625rem 0 5.3125rem;
}

.about .about-1 .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  letter-spacing: -1px;
  color: #000;
}

.about .about-1 .desc {
  margin-top: 2.5rem;
  font-size: var(--font16);
  line-height: 1.875;
}

.about .about-2 {
  margin-top: 6.25rem;
}

.about .about-2 .item-row:not(:last-child) {
  margin-bottom: 8.125rem;
}

.about .about-2 .item-row:nth-child(even) {
  flex-direction: row-reverse;
}

.about .about-2 .item-row:nth-child(even) .text-box {
  padding-left: 0;
}

.about .about-2 .img-box {
  width: 51.79%;
}

.about .about-2 .img-box img {
  aspect-ratio: 725/460;
  object-fit: cover;
  border-radius: 1.25rem;
}

.about .about-2 .text-box {
  width: 48.21%;
  padding: 0 3.75rem;
  box-sizing: border-box;
}

.about .about-2 .text-box .title {
  font-family: Montserrat-Bold;
  font-size: var(--font40);
  letter-spacing: -1px;
  color: #000;
}

.about .about-2 .text-box .desc {
  margin-top: 2.5rem;
  font-size: var(--font16);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.86);
}

.about .about-bg {
  background: #222;
  position: relative;
  overflow: hidden;
}

.about .about-bg .bgImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  z-index: 1;
}

.about .about-bg .about-block {
  padding-top: 59%;
}

.about .about-bg section {
  position: relative;
  z-index: 2;
}

.about .about-3 .title {
  font-family: Montserrat-Bold;
  font-size: var(--font95);
  color: #fff;
  line-height: .9;
}

.about .about-3 .swiper {
  margin-top: 8.75rem;
}

.about .about-3 .swiper .swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 1.875rem;
}

.about .about-3 .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  background: #000;
  opacity: .62;
  transition: opacity .3s ease-in-out;
}

.about .about-3 .swiper .swiper-slide-active::after {
  opacity: 0;
}

.about .about-3 .swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24.5%;
}

.about .about-3 .swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24.5%;
}

.about .about-4 .text-box {
  margin-top: 18.75rem;
  color: #fff;
  padding-bottom: 4.6875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.about .about-4 .text-box .title {
  flex-shrink: 0;
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  letter-spacing: -1px;
}

.about .about-4 .text-box .desc {
  width: 58.75%;
  font-size: var(--font18);
  color: #fff;
  line-height: 1.6;
}

.about .about-4 .numberList {
  margin-top: 3.75rem;
}

.about .about-4 .numberList .item {
  box-sizing: border-box;
  padding: 0 10px;
  text-align: center;
  color: #fff;
}

.about .about-4 .numberList .number {
  font-family: Montserrat-Bold;
  font-size: var(--font55);
  line-height: .9;
}

.about .about-4 .numberList .desc {
  margin-top: 1.875rem;
  font-size: var(--font16);
  opacity: .82;
}

.about .about-4 .swiper-box {
  margin-top: 12.8125rem;
  overflow: hidden;
  padding-left: 16.25rem;
}

@media screen and (min-width: 1921px) {
  .about .about-4 .swiper-box {
    padding-left: calc((100vw - 1600px)/2 + 6.25rem);
  }
}

.about .about-4 .swiper {
  overflow: visible;
}

.about .about-4 .swiper-tool {
  margin-top: 6.25rem;
}

.about .about-4 .swiper-tool .swiper-button-prev {
  margin-right: 5rem;
}

.about .i-contact {
  background: transparent;
  padding: 12.375rem 0 4.5rem;
}

.afterSales .after-1 {
  padding: 8.4375rem 0;
  background: linear-gradient(90deg, #f2e5fc 0%, #f1e3fc 100%);
}

.afterSales .after-1 .box {
  gap: 3px;
}

.afterSales .after-1 .box .img-box {
  width: 51%;
  background: rgba(0, 0, 0, 0.77);
  position: relative;
  min-height: 40.9375rem;
}

.afterSales .after-1 .box .img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.afterSales .after-1 .box .text-box {
  width: 48.875%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  padding: 0 2.5rem 0 3.75rem;
}

.afterSales .after-1 .box .text-box .title {
  font-family: Montserrat-Bold;
  font-size: var(--font40);
}

.afterSales .after-1 .box .text-box .desc {
  margin-top: 2.5rem;
  font-style: var(--font19);
  line-height: 1.85;
}

.afterSales .after-1 .box .text-box .desc * {
  font-style: var(--font19);
  line-height: 1.85;
}

.afterSales .after-1 .numList {
  margin-top: 6.875rem;
}

.afterSales .after-1 .numList .item {
  width: 25%;
  text-align: center;
}

.afterSales .after-1 .numList .item .numberBox {
  display: flex;
  align-items: end;
  justify-content: center;
  font-family: Montserrat-Bold;
  font-size: var(--font55);
  letter-spacing: -1px;
  color: #010101;
}

.afterSales .after-1 .numList .item .numberBox span {
  font-size: var(--font26);
}

.afterSales .after-1 .numList .item .numberBox span.number {
  font-family: Montserrat-Bold;
  font-size: var(--font55);
  letter-spacing: -1px;
  color: #010101;
}

.afterSales .after-1 .numList .item p {
  margin-top: .625rem;
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.82);
}

.afterSales .after-2 {
  padding: 4.0625rem 0 4.6875rem;
}

.afterSales .after-2 .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  letter-spacing: -1px;
}

.afterSales .after-2 .desc {
  margin-top: 2.8125rem;
  line-height: 1.75;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.82);
}

.afterSales .after-2 .desc * {
  line-height: 1.75;
  font-size: var(--font20);
  color: rgba(0, 0, 0, 0.82);
}

.afterSales .after-3 .item .right .box {
  width: 75%;
}

.afterSales .after-3 .item .right .title {
  font-family: Montserrat-Bold;
  font-size: var(--font40);
}

.afterSales .after-3 .item .right .desc {
  margin-top: 4.375rem;
}

.afterSales .after-3 .item .right .desc i.iconfont {
  color: rgba(114, 83, 190, 0.94);
  font-size: var(--font26);
  margin-right: .8125rem;
}

.afterSales .after-3 .item .right .textStyle p {
  margin-top: 5px;
}

.afterSales .after-3 .item .right .textStyle1 {
  margin: 3.125rem 0 1.5625rem;
  font-family: Montserrat-Bold;
  font-size: var(--font19);
  color: #000000;
}

.afterSales .after-3 .item .right .textStyle2 {
  margin: 3.625rem 0;
}

.afterSales .after-3 .item .right .textStyle3 {
  margin: 0;
}

.afterSales .after-3 .item .right .textStyle3 .textStyle:not(:last-child) {
  margin-bottom: 2.5rem;
}

.afterSales .i-contact {
  background: #fff;
}

.download .download-1 {
  background: #ede3f7;
  padding: 10.625rem 0 0;
}

.download .download-1 .title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font40);
  text-align: center;
}

.download .download-search {
  width: 69.56%;
  margin: 4.6875rem auto 5.3125rem;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: .625rem;
  overflow: hidden;
}

.download .download-search input {
  display: block;
  width: 100%;
  height: 5.3125rem;
  font-size: var(--font18);
  color: #000;
  padding: 0 3.125rem;
}

.download .download-search input::placeholder {
  color: rgba(0, 0, 0, 0.46);
}

.download .download-search button {
  margin-right: 3.125rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.download .download-search button:focus {
  border: 0;
  outline: 0;
}

.download .download-search i {
  font-size: var(--font24);
  color: #7051bd;
  margin: auto;
}

.download .swiperBox {
  position: relative;
}

.download .swiperBox .swiper-button-prev,
.download .swiperBox .swiper-button-next {
  --swiper-theme-color: #7051bd;
  --swiper-navigation-color: #7051bd;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 26px;
}

.download .swiper {
  width: 90.72%;
  height: 100px;
  padding: 0 1px;
  /* 设置按钮大小 */
}

.download .swiper .swiper-slide {
  border: 1px solid #7051bd;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.download .swiper .swiper-slide img {
  display: block;
  max-height: 90%;
  max-width: 25%;
}

.download .swiper .swiper-slide p {
  max-width: 10.625rem;
  margin-left: 1.5625rem;
  color: #000;
}

.download .swiper .swiper-slide.active {
  background: #fff;
}

.download .download-listBox {
  margin-top: 4.0625rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 0 3.75rem;
  --p-left: 2.5rem;
}

.download .download-listBox .list-title {
  font-family: Montserrat-SemiBold;
  font-size: var(--font18);
  padding-left: var(--p-left);
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.download .download-listBox .download-list {
  transition: all .5s ease-in-out;
}

.download .download-listBox .download-list li {
  min-height: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-left: var(--p-left);
}

.download .download-listBox .download-list li:hover {
  background: var(--gradient-color);
}

.download .download-listBox .download-list li:hover .left i,
.download .download-listBox .download-list li:hover .text-box .item-title,
.download .download-listBox .download-list li:hover .text-box .year,
.download .download-listBox .download-list li:hover .tool a i {
  color: #fff;
}

.download .download-listBox .download-list .left {
  flex: 1;
}

.download .download-listBox .download-list .left i {
  font-size: var(--font32);
  color: #7051bd;
  margin-right: 2.125rem;
}

.download .download-listBox .download-list .left .text-box .item-title {
  font-size: var(--font18);
  color: #000;
}

.download .download-listBox .download-list .left .text-box .year {
  margin-top: .75rem;
  font-size: var(--font14);
  color: rgba(0, 0, 0, 0.41);
}

.download .download-listBox .download-list .tool a {
  margin-right: 4.6875rem;
}

.download .download-listBox .download-list .tool a i {
  font-size: var(--font24);
  color: #000;
}

.download .i-contact {
  background: #ede3f7;
}

.webMap-box {
  background: #f1e3fc;
}

.webMap-box .list {
  padding: 5rem 0;
}

.webMap-box .list a {
  color: #000;
}

.webMap-box .list .one-title {
  width: 50%;
  margin-bottom: 40px;
}

.webMap-box .list .one-title h2 {
  margin-bottom: 30px;
}

.webMap-box .list .one-title h2 a {
  font-size: 24px;
}

.webMap-box .list .two-title:not(:last-child) {
  margin-bottom: 20px;
}

.webMap-box .list .subList2 {
  margin-top: 10px;
}

.webMap-box .list .subList2 h4 a {
  font-weight: 100;
  opacity: .4;
  font-size: 16px;
  text-indent: 2em;
}

.webMap-box .list .subList2 h4:not(:last-child) {
  margin-bottom: 10px;
}

.webMap-box .list h3 a {
  font-size: 20px;
  opacity: .8;
  font-weight: normal;
}

.contact .main {
  background: #e3d3f3;
}

.contact .contact-1 {
  padding-top: 11.25rem;
}

.contact .contact-1 .contact1-top {
  padding-bottom: 2.4375rem;
  border-bottom: 1px solid #212121;
}

.contact .contact-1 .contact1-top .title {
  font-size: var(--font40);
  font-family: Montserrat-SemiBold;
  letter-spacing: -1px;
}

.contact .contact-1 .contact1-top .iconList li a {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000;
  text-align: center;
  line-height: 26px;
}

.contact .contact-1 .contact1-top .iconList li a i {
  font-size: var(--font16);
  color: #fff;
}

.contact .contact-1 .contact1-top .iconList li a:hover {
  background: var(--gradient-color);
}

.contact .contact-1 .contact1-top .iconList li:not(:last-child) {
  margin-right: 2.1875rem;
}

.contact .contact-1 .list {
  margin-top: 4.0625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1.875rem 5.9375rem;
}

@media (max-width: 992px) {
  .contact .contact-1 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.contact .contact-1 .list .item {
  background: #fff;
  border-radius: .9375rem;
  min-height: 8.75rem;
  padding: 0 2.8125rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact .contact-1 .list .item .left {
  min-width: 72px;
  text-align: center;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.contact .contact-1 .list .item i {
  font-size: var(--font32);
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact .contact-1 .list .item .code {
  display: block;
  width: 72px;
}

.contact .contact-1 .list .item .text {
  font-size: var(--font22);
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.contact .contact-1 .list .item::after {
  content: "";
  width: 7px;
  height: 4.375rem;
  background: var(--gradient-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all .5s ease-in-out;
  z-index: 1;
}

.contact .contact-1 .list .item:hover::after {
  width: 100%;
  height: 100%;
}

.contact .contact-1 .list .item:hover .text {
  color: #fff;
}

.contact .contact-1 .list .item:hover i {
  color: #fff !important;
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.contact .i-contact {
  background: #e3d3f3;
}

.contact .i-link {
  background: #fff;
}

.product .main {
  background: #000;
}

.product .mode-title {
  font-size: var(--font40);
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
  color: #fff;
}

.product .mode-title p {
  font-size: var(--font40);
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
  color: #fff;
}

.product .mode-desc {
  font-size: var(--font20);
  color: #fff;
  margin-top: 2.5rem;
}

.product .mode-tip {
  font-size: var(--font20);
  color: #cea3f4;
}

.product .mode-table, .product .mode-table3, .product .mode-table4 {
  color: #fff;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  --firstRow-height: 3.75rem;
  --row-height: 6.5625rem;
}

.product .mode-table .table-row, .product .mode-table3 .table-row, .product .mode-table4 .table-row {
  display: flex;
  background: #262626;
  height: var(--row-height);
}

.product .mode-table .table-row .table-item, .product .mode-table3 .table-row .table-item, .product .mode-table4 .table-row .table-item {
  flex: 1;
  text-align: center;
  font-size: var(--font16);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .mode-table .table-row .table-item:not(:last-child), .product .mode-table3 .table-row .table-item:not(:last-child), .product .mode-table4 .table-row .table-item:not(:last-child) {
  border-right: 2px solid #000;
}

.product .mode-table .table-row:not(:last-child), .product .mode-table3 .table-row:not(:last-child), .product .mode-table4 .table-row:not(:last-child) {
  margin-bottom: 2px;
}

.product .mode-table .first-row, .product .mode-table3 .first-row, .product .mode-table4 .first-row {
  background: var(--gradient-color);
  height: var(--firstRow-height);
}

.product .mode-table .first-row .table-item, .product .mode-table3 .first-row .table-item, .product .mode-table4 .first-row .table-item {
  color: #000;
  font-family: Montserrat-Bold;
}

.product .mode-table2 {
  color: #fff;
  width: 100%;
  --row-height: 3.75rem;
}

.product .mode-table2 .table-row {
  display: flex;
  height: var(--row-height);
  border-bottom: 2px solid #292929;
}

.product .mode-table2 .table-row .table-item {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: var(--font16);
  color: #fff;
}

.product .mode-table2 .table-row:first-child {
  border-top: 2px solid #292929;
}

.product .mode-table2.center .table-item {
  justify-content: center;
}

.product .mode-table3 {
  border-radius: .3125rem;
  --firstRow-height: 3.75rem;
  --row-height: 3.125rem;
}

.product .mode-table3 .table-row:not(:last-child) {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product .mode-table3 .table-row .table-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.product .mode-table3 .table-row .table-item:first-child {
  flex: none;
  width: 50%;
}

.product .mode-table3 .first-row .table-item {
  color: #fff;
  font-family: Montserrat-Bold;
}

.product .mode-table4 {
  border-radius: .3125rem;
  --firstRow-height: 3.75rem;
  --row-height: 6.25rem;
}

.product .mode-table4 .table-row:not(:last-child) {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product .mode-table4 .table-row .table-item {
  flex-wrap: wrap;
}

.product .mode-table4 .table-row .table-item p {
  width: 100%;
}

.product .mode-table4 .table-row .table-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.product .mode-table4 .first-row .table-item {
  color: #fff;
  font-family: Montserrat-Bold;
}

.product .productBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: .8125rem 1.5625rem;
  background: var(--gradient-color);
  border-radius: 1.875rem;
}

.product .productBtn i {
  font-size: var(--font30);
}

.product .productBtn p {
  font-size: var(--font20);
  font-family: Montserrat-Bold;
  margin-left: .625rem;
}

.product .i-product {
  margin-top: 11.25rem;
}

.product .i-product .mode-title {
  margin-bottom: 3.125rem;
}

.product .i-product .moreLink {
  color: #6038b7;
}

.product .i-product .moreLink:hover {
  color: #fff !important;
}

.product .mode-contact {
  min-height: 17.5rem;
  background: #262626;
  border-radius: 1.25rem;
}

.product .mode-contact .productBtn {
  margin-top: 2.5rem;
}

.product .mode-contact .code {
  margin-left: 11.25rem;
  display: flex;
  align-items: center;
}

.product .mode-contact .code .item:not(:last-child) {
  margin-right: 8.75rem;
}

.product .mode-contact .code .imgBox {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: .625rem;
  background: #fff;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product .mode-contact .code img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  max-height: 90%;
}

.product .mode-contact .code .code-text {
  margin-top: var(--font18);
  text-align: center;
  color: #fff;
}

.product .i-contact {
  background: #000;
}

.product .i-link {
  background: #fff;
}

.product1 .product1-1 {
  padding-top: 7.5rem;
  color: #fff;
}

.product1 .product1-1 .mode-desc {
  line-height: 2.3;
}

.product1 .product1-1 .box {
  margin-top: 7.5rem;
}

.product1 .product1-1 .slide {
  width: 36.875%;
}

.product1 .product1-1 .slide .item {
  display: flex;
  align-items: center;
}

.product1 .product1-1 .slide .item:not(:last-child) {
  margin-bottom: 10.625rem;
}

.product1 .product1-1 .slide .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product1 .product1-1 .slide .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product1 .product1-1 .slide .text {
  color: #fff;
  margin-left: 2rem;
}

.product1 .product1-1 .slide .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product1 .product1-1 .slide .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product1 .product1-1 .slide .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product1 .product1-1 .center {
  width: 18.3125%;
}

.product1 .product1-2 {
  margin-top: 11.875rem;
}

.product1 .product1-2 .box {
  margin-top: 8.125rem;
}

.product1 .product1-2 .box .imgBox {
  width: 53.5%;
  position: relative;
}

.product1 .product1-2 .box .imgBox .bgimg {
  display: block;
  width: 100%;
}

.product1 .product1-2 .box .item {
  position: absolute;
  width: 1px;
  height: 1px;
}

.product1 .product1-2 .box .item .text {
  position: absolute;
}

.product1 .product1-2 .box .item .text p {
  font-size: var(--font24);
  color: #fff;
  padding-left: 6.25rem;
  word-break: keep-all;
  white-space: nowrap;
  letter-spacing: -1px;
}

.product1 .product1-2 .box .item .text .lineImg {
  display: block;
  width: 28.3125rem;
  margin-top: 1.875rem;
}

.product1 .product1-2 .box .item1 {
  top: 2%;
  left: 78%;
}

.product1 .product1-2 .box .item2 {
  top: 28%;
  left: 82%;
}

.product1 .product1-2 .box .item3 {
  top: 44%;
  left: 82%;
}

.product1 .product1-2 .box .item3 p {
  position: relative;
  top: 1.25rem;
  left: 2.8125rem;
}

.product1 .product1-2 .box .item3 .lineImg {
  margin-top: 0 !important;
}

.product1 .product1-2 .box .item4 {
  top: 67%;
  left: -30%;
}

.product1 .product1-2 .box .item4 p {
  position: relative;
  top: 1.25rem;
}

.product1 .product1-2 .box .item4 .lineImg {
  margin-top: 0 !important;
}

.product1 .product1-2 .box .item5 {
  top: 69%;
  left: 59%;
}

.product1 .product1-2 .box .item5 p {
  position: relative;
  top: 1.25rem;
}

.product1 .product1-2 .box .item5 .lineImg {
  margin-top: 0 !important;
}

.product1 .product1-3 {
  margin-top: 5rem;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  --dot-r: 1.875rem;
  --item-height: 2.8125rem;
}

.product1 .product1-3 .point {
  position: absolute;
  width: 1px;
  height: 1px;
}

.product1 .product1-3 .point.active .item::after {
  width: var(--item-height);
}

.product1 .product1-3 .point.active .item .dot i {
  transform: rotate(45deg);
}

.product1 .product1-3 .point.active .item .dot::after, .product1 .product1-3 .point.active .item .dot::before {
  animation-play-state: paused;
  opacity: 0;
}

.product1 .product1-3 .point.active .item .title {
  opacity: 0;
  pointer-events: none;
  cursor: none;
}

.product1 .product1-3 .point.active .content {
  opacity: 1;
  z-index: 999;
}

.product1 .product1-3 .item {
  position: absolute;
  top: 50%;
  left: 50%;
  height: var(--item-height);
  display: flex;
  align-items: center;
  padding: 0 .5rem;
}

.product1 .product1-3 .item .dot {
  width: var(--dot-r);
  height: var(--dot-r);
  border-radius: 50%;
  background: var(--gradient-color);
  display: flex;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.product1 .product1-3 .item .dot::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: dotAni 2s linear infinite;
  z-index: 1;
}

.product1 .product1-3 .item .dot::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: dotAni2 2s linear infinite;
  z-index: 1;
}

.product1 .product1-3 .item .dot i {
  margin: auto;
  color: #fff;
  font-size: var(--font16);
  transition: all .3s ease;
}

.product1 .product1-3 .item .title {
  word-break: keep-all;
  white-space: nowrap;
  margin-left: .375rem;
  position: relative;
  z-index: 2;
  transition: opacity .3s ease;
  cursor: pointer;
}

.product1 .product1-3 .item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.375rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .3s linear;
}

.product1 .product1-3 .content {
  width: 24.0625rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem;
  position: absolute;
  top: calc(var(--item-height) + 10px);
  left: 0;
  border-radius: .9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  transition: opacity .3s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.product1 .product1-3 .content .left {
  width: 14.75rem;
}

.product1 .product1-3 .content .title {
  font-size: var(--font16);
  color: #000;
}

.product1 .product1-3 .content .desc {
  font-size: var(--font14);
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.64);
  margin: 1rem 0;
}

.product1 .product1-3 .content .moreLink {
  font-size: var(--font14);
  color: var(--main-color);
}

.product1 .product1-3 .content .right {
  width: 6.25rem;
  height: 6.25rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product1 .product1-3 .point1 {
  top: 18%;
  left: 50%;
}

.product1 .product1-3 .point2 {
  top: 73%;
  left: 10%;
}

.product1 .product1-3 .point3 {
  top: 69%;
  left: 43%;
}

.product1 .product1-3 .point4 {
  top: 62%;
  left: 77.5%;
}

.product1 .product1-4 {
  padding: 5.5rem 0 2.5rem;
}

.product1 .product1-4 .swiper {
  margin-top: 3.75rem;
  width: 197px;
}

.product1 .product1-4 .swiper-pagination {
  position: relative;
  bottom: unset;
  left: unset;
  margin-top: 2.1875rem;
}

.product1 .product1-4 .swiper-pagination p {
  list-style-type: inherit;
}

.product1 .product1-4 .swiper-pagination-bullet {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}

.product1 .product1-4 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.product1 .product1-4 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 3.125rem;
}

.product1 .product1-4 .swiper-pagination-bullet:first-child::after {
  background: #fff;
}

.product1 .product1-4 .swiper-pagination-bullet:nth-child(2)::after {
  background: #606060;
}

.product1 .product1-4 .swiper-pagination-bullet-active {
  border-color: #fff;
}

.product1 .product1-5 {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 6.625rem;
}

.product1 .product1-5 .mode-desc {
  line-height: 1.75;
}

.product1 .product1-6 {
  padding-top: 3.125rem;
}

.product1 .product1-6 .top .left {
  width: 38.75%;
}

.product1 .product1-6 .top .left .mode-desc {
  margin-top: 1.875rem;
  line-height: 1.75;
}

.product1 .product1-6 .top .right {
  width: 51.56%;
}

.product1 .product1-6 .mode-table, .product1 .product1-6 .product .mode-table3, .product .product1 .product1-6 .mode-table3, .product1 .product1-6 .product .mode-table4, .product .product1 .product1-6 .mode-table4 {
  margin-top: 4.0625rem;
}

.product1 .product1-7 {
  margin-top: 9.6875rem;
  padding-bottom: 13.75rem;
}

.product1 .product1-7 .top .left {
  width: 37.5%;
}

.product1 .product1-7 .top .left img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.product1 .product1-7 .top .right {
  width: 55%;
}

.product1 .product1-7 .top .right .mode-title {
  padding-left: 1.25rem;
}

.product1 .product1-7 .top .right .mode-table2 {
  margin-top: 2.1875rem;
}

.product1 .product1-7 .top .right .mode-table2 .table-row .table-item:first-child {
  padding-left: 1.25rem;
  flex: 1.5;
}

.product1 .product1-7 .bot {
  margin-top: 6.25rem;
}

.product1 .product1-7 .bot .img-box {
  min-height: 11.25rem;
  margin-bottom: 2.8125rem;
}

.product1 .product1-7 .bot .img-box img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.product1 .product1-7 .bot .mode-table2 {
  margin-top: 15px;
}

.product1 .product1-8 .box {
  padding-top: 10rem;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

.product1 .product1-8 .box .mode-title {
  color: #000;
}

.product1 .product1-8 .box .mode-desc {
  margin-top: 1.875rem;
}

.product1 .product1-8 .box .mode-desc p {
  color: #000;
  line-height: 1.75;
}

.product1 .product1-9 {
  overflow: hidden;
}

.product1 .product1-9 .box1 {
  overflow: hidden;
}

.product1 .product1-9 .box1 .text {
  width: 48.4375%;
}

.product1 .product1-9 .box1 .text .mode-title {
  margin-top: 1.25rem;
}

.product1 .product1-9 .box1 .text .mode-desc {
  margin-top: 3.125rem;
  width: 93%;
  line-height: 1.6;
}

.product1 .product1-9 .box1 .img-box {
  position: relative;
}

.product1 .product1-9 .box1 .img-box .imgBox {
  position: relative;
}

.product1 .product1-9 .box1 .img-box .imgCom {
  max-width: 100%;
  display: block;
  width: 23.4375rem;
}

.product1 .product1-9 .box1 .img-box .img1 {
  position: relative;
  z-index: 3;
}

.product1 .product1-9 .box1 .img-box .img2 {
  position: absolute;
  top: 10rem;
  left: 0;
  transform: translateX(-75%);
  z-index: 2;
}

.product1 .product1-9 .box2 {
  height: 46.875rem;
  border-radius: 20px;
  overflow: hidden;
}

.product1 .product1-9 .box2 .left {
  width: 44%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product1 .product1-9 .box2 .right {
  width: 66%;
  padding-left: 3.75rem;
  padding-top: 7.5rem;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product1 .product1-9 .box2 .right .item-title {
  font-size: var(--font30);
  color: #fff;
  margin: 5.5rem 0 1.875rem;
}

.product1 .product1-9 .box2 .right .item-img {
  max-width: 100%;
  display: block;
}

.product1 .product1-10 {
  margin-top: 8.125rem;
}

.product1 .product1-10 .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 4.5625rem 6.75rem;
}

@media (max-width: 992px) {
  .product1 .product1-10 .top {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.product1 .product1-10 .top .item {
  height: 21.875rem;
  background: rgba(252, 250, 255, 0.1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product1 .product1-10 .top .item .text {
  position: relative;
  z-index: 2;
}

.product1 .product1-10 .top .item .item-title {
  font-size: var(--font22);
  color: #fff;
  text-align: center;
  margin-bottom: 1.5625rem;
}

.product1 .product1-10 .top .item img {
  margin: 0 auto;
  max-width: 90%;
  display: block;
}

.product1 .product1-10 .top .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(21deg, #9f7cdb 0%, #1f1f1f 100%);
  border-radius: 1.25rem;
  opacity: 0;
  z-index: 1;
  transition: all .5s ease-in-out;
}

.product1 .product1-10 .top .item:hover::after {
  opacity: 1;
}

.product1 .product1-10 .top .item1 {
  grid-row: span 2;
  height: 100%;
}

.product1 .product1-10 .top .item1 .item-title {
  font-size: var(--font30);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 5rem;
}

.product1 .product1-10 .mode-contact {
  margin-top: 2.8125rem;
}

.product2 .prodcut2-1 {
  padding-top: 7.5rem;
}

.product2 .prodcut2-1 .mode-desc {
  margin-top: 3.125rem;
  line-height: 2.3;
}

.product2 .prodcut2-1 .item-img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.product2 .prodcut2-2 {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.product2 .product2-3 {
  padding-top: 5rem;
  padding-bottom: 6.875rem;
}

.product2 .product2-3 .top .text {
  width: 50%;
}

.product2 .product2-3 .top .text .mode-desc {
  line-height: 1.6;
}

.product2 .product2-3 .top .imgBox {
  width: 44.5%;
  overflow: hidden;
  border-radius: 1.25rem;
}

.product2 .product2-3 .top .imgBox img {
  transition: all .5s ease-in-out;
}

.product2 .product2-3 .top .imgBox:hover img {
  transform: scale(1.1);
}

.product2 .product2-3 .bot {
  margin-top: 7.1875rem;
}

.product2 .product2-3 .bot .item {
  width: 44.86%;
  background: #e8d8f9;
  border-radius: .625rem;
  overflow: hidden;
}

.product2 .product2-3 .bot .item .imgBox {
  height: 20.9375rem;
}

.product2 .product2-3 .bot .item .imgBox .img-box {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product2 .product2-3 .bot .textBox {
  height: 19.875rem;
  padding: 5rem 2.1875rem 0;
  box-sizing: border-box;
}

.product2 .product2-3 .bot .textBox .mode-title {
  color: #000;
}

.product2 .product2-3 .bot .textBox .mode-desc {
  color: #000;
  margin-top: 1.25rem;
  line-height: 1.25;
  font-family: Montserrat-Bold;
}

.product2 .product2-4 {
  height: 50.9375rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product2 .product2-4 .text {
  padding-top: 15%;
}

.product2 .product2-4 .mode-desc {
  width: 64.29%;
  line-height: 1.7;
}

.product2 .product2-5 {
  padding-top: 11.875rem;
}

.product2 .product2-5 .mode-desc {
  line-height: 1.7;
  margin-bottom: 7.875rem;
}

.product2 .product2-6 {
  margin-top: 13.125rem;
}

.product2 .product2-6 .text {
  width: 42%;
}

.product2 .product2-6 .text .mode-tip {
  margin-bottom: 1.25rem;
}

.product2 .product2-6 .text .mode-desc {
  margin-top: 2.1875rem;
  line-height: 1.6;
}

.product2 .product2-6 .img-box {
  position: relative;
}

.product2 .product2-6 .img-box .imgBox {
  position: relative;
}

.product2 .product2-6 .img-box .imgCom {
  max-width: 100%;
  width: 23.4375rem;
  display: block;
}

.product2 .product2-6 .img-box .img1 {
  position: relative;
  z-index: 3;
}

.product2 .product2-6 .img-box .img2 {
  position: absolute;
  top: 10rem;
  left: 0;
  transform: translateX(-75%);
  z-index: 2;
}

.product2 .product2-7 {
  margin-top: 11.875rem;
  box-sizing: border-box;
  padding-top: 7.5rem;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product2 .product2-8 .mode-table3 {
  margin-top: 3.75rem;
}

.product2 .product2-8 .mode-contact {
  margin-top: 1.875rem;
}

.product2 .i-product {
  margin-top: 18.75rem;
}

.product3 .product3-1 {
  padding-top: 11.5625rem;
}

.product3 .product3-1 .list {
  margin-top: 6.5625rem;
}

.product3 .product3-1 .list li {
  width: 50%;
  display: flex;
}

.product3 .product3-1 .list li:nth-child(1), .product3 .product3-1 .list li:nth-child(2) {
  margin-bottom: 7.8125rem;
}

.product3 .product3-1 .list .item {
  display: flex;
  align-items: center;
}

.product3 .product3-1 .list .item:not(:last-child) {
  margin-bottom: 10.625rem;
}

.product3 .product3-1 .list .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product3 .product3-1 .list .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product3 .product3-1 .list .text {
  color: #fff;
  margin-left: 2rem;
}

.product3 .product3-1 .list .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product3 .product3-1 .list .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product3 .product3-1 .list .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product3 .product3-1 .bg {
  display: block;
  width: 100%;
  margin-top: -15%;
}

.product3 .product3-2 {
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.product3 .product3-2 .item-title {
  margin-top: 10%;
}

.product3 .product3-2 .item-title p {
  font-size: var(--font50);
  color: #fff;
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
}

.product3 .product3-3 {
  padding-top: 6.25rem;
  padding-bottom: 10.9375rem;
}

.product3 .product3-3 .text {
  width: 37.82%;
}

.product3 .product3-3 .text .mode-tip {
  margin-bottom: 1.25rem;
}

.product3 .product3-3 .text .mode-desc {
  width: 100%;
  line-height: 1.6;
}

.product3 .product3-3 .img-box {
  position: relative;
}

.product3 .product3-3 .img-box .imgBox {
  position: relative;
}

.product3 .product3-3 .img-box .imgCom {
  max-width: 100%;
}

.product3 .product3-3 .img-box .img1 {
  position: relative;
  z-index: 3;
}

.product3 .product3-3 .img-box .img2 {
  position: absolute;
  top: 10rem;
  left: 0;
  transform: translateX(-75%);
  z-index: 2;
}

.product3 .product3-4 {
  min-height: 55.3125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.product3 .product3-5 {
  margin-top: 7.5rem;
}

.product3 .product3-5 .mode-table3 {
  margin-top: 3.75rem;
}

.product3 .product3-5 .mode-contact {
  margin-top: 3.125rem;
}

.product4 .product4-1 {
  position: relative;
  min-height: 73.75rem;
  background: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  box-sizing: border-box;
  padding-top: 10.625rem;
}

.product4 .product4-1 .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.product4 .product4-1 .top {
  position: relative;
  z-index: 2;
  text-align: center;
}

@media screen and (min-width: 1921px) {
  .product4 .product4-1 {
    background-size: contain;
    box-sizing: content-box;
  }
}

.product4 .product4-1 .list {
  margin-top: 7.5rem;
  padding: 0 10rem;
}

.product4 .product4-1 .list .item {
  display: flex;
  align-items: center;
  width: 50%;
  margin-bottom: 10.625rem;
}

.product4 .product4-1 .list .item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.product4 .product4-1 .list .item:nth-child(2n) {
  padding-left: 30%;
  box-sizing: border-box;
}

.product4 .product4-1 .list .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product4 .product4-1 .list .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product4 .product4-1 .list .text {
  color: #fff;
  margin-left: 2rem;
}

.product4 .product4-1 .list .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product4 .product4-1 .list .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product4 .product4-1 .list .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product4 .product4-2 {
  height: 86.875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 7.8125rem;
  box-sizing: border-box;
}

.product4 .product4-2 .mode-title,
.product4 .product4-2 .mode-desc {
  color: #070707;
}

.product4 .product4-2 .numberList {
  margin-top: 6.25rem;
}

.product4 .product4-2 .numberList .item .numberBox {
  font-family: Montserrat-Bold;
  font-size: var(--font55);
  letter-spacing: -1px;
  color: #070707;
}

.product4 .product4-2 .numberList .item .numberBox .number {
  font-family: Montserrat-Bold;
}

.product4 .product4-2 .numberList .item .numberBox .small {
  font-family: Montserrat-Bold;
  color: #070707;
  font-size: var(--font16);
}

.product4 .product4-2 .numberList .item p {
  opacity: .82;
}

.product4 .product4-2 .numberList .item:not(:last-child) {
  margin-right: 15.3125rem;
}

.product4 .product4-3 {
  height: 69.375rem;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.product4 .product4-3 .product-img {
  display: block;
  width: 89.6875rem;
  margin-left: auto;
}

.product4 .product4-3 .leftText {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.product4 .product4-3 .leftText .mode-desc {
  line-height: 2.3;
}

.product4 .product4-4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 66.5625rem;
}

.product4 .product4-5 {
  padding: 5rem 0;
}

.product4 .product4-5 .text {
  width: 50%;
}

.product4 .product4-5 .text .mode-tip {
  margin-bottom: 1.25rem;
}

.product4 .product4-5 .text .mode-desc {
  margin-top: 2.1875rem;
  line-height: 1.6;
}

.product4 .product4-5 .img-box {
  position: relative;
}

.product4 .product4-5 .img-box .imgBox {
  position: relative;
}

.product4 .product4-5 .img-box .imgCom {
  max-width: 100%;
  width: 23.25rem;
  display: block;
}

.product4 .product4-5 .img-box .img1 {
  position: relative;
  z-index: 3;
}

.product4 .product4-5 .img-box .img2 {
  position: absolute;
  top: 10rem;
  left: 0;
  transform: translateX(-75%);
  z-index: 2;
}

.product4 .product4-6 {
  margin-top: 10.625rem;
}

.product4 .product4-6 .mode-title {
  text-align: center;
}

.product4 .product4-6 .box {
  margin-top: 6.25rem;
}

.product4 .product4-6 .slide .item {
  display: flex;
  align-items: center;
  margin-bottom: 10.625rem;
}

.product4 .product4-6 .slide .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product4 .product4-6 .slide .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product4 .product4-6 .slide .text {
  color: #fff;
  margin-left: 2rem;
}

.product4 .product4-6 .slide .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product4 .product4-6 .slide .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product4 .product4-6 .slide .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product4 .product4-6 .center img {
  display: block;
}

.product4 .product4-6 .center .img1 {
  width: 15.625rem;
}

.product4 .product4-6 .center .img2 {
  width: 14.375rem;
  margin-top: 3.75rem;
  margin-left: -1.25rem;
}

.product4 .product4-8 {
  margin-top: 8.4375rem;
}

.product4 .product4-8 .mode-title {
  text-align: left;
}

.product4 .product4-8 .table-box {
  margin-top: 3.75rem;
}

.product4 .product4-8 .table-box .mode-table3 .table-item {
  flex-wrap: wrap;
}

.product4 .product4-8 .table-box .mode-table3 p {
  width: 100%;
}

.product4 .product4-8 .mode-contact {
  margin-top: 20px;
}

.product5 .product5-1 {
  padding-top: 5.9375rem;
}

.product5 .product5-1 .list {
  margin-top: 6.5625rem;
}

.product5 .product5-1 .list .item {
  display: flex;
  align-items: center;
  width: 50%;
  margin-bottom: 7.8125rem;
}

.product5 .product5-1 .list .item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.product5 .product5-1 .list .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product5 .product5-1 .list .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product5 .product5-1 .list .text {
  color: #fff;
  margin-left: 2rem;
}

.product5 .product5-1 .list .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product5 .product5-1 .list .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product5 .product5-1 .list .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product5 .product5-1 .secImg {
  display: block;
  width: 100%;
  margin-top: -2.5%;
}

.product5 .product5-2 {
  height: 60.3125rem;
  position: relative;
}

.product5 .product5-2 .secImg {
  display: block;
  width: auto;
  height: 100%;
  margin-left: auto;
}

.product5 .product5-2 .text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 20;
}

.product5 .product5-2 .text .mode-desc {
  width: 39.375rem;
}

.product5 .product5-3 {
  padding: 12.5rem 0;
}

.product5 .product5-3 .text {
  width: 50%;
}

.product5 .product5-3 .text .mode-tip {
  margin-bottom: 1.25rem;
}

.product5 .product5-3 .text .mode-desc {
  margin-top: 2.1875rem;
  line-height: 1.6;
}

.product5 .product5-3 .img-box {
  position: relative;
}

.product5 .product5-3 .img-box .imgBox {
  position: relative;
}

.product5 .product5-3 .img-box .imgCom {
  max-width: 100%;
  width: 23.25rem;
  display: block;
}

.product5 .product5-3 .img-box .img1 {
  position: relative;
  z-index: 3;
}

.product5 .product5-3 .img-box .img2 {
  position: absolute;
  top: 10rem;
  left: 0;
  transform: translateX(-75%);
  z-index: 2;
}

.product5 .product5-4 {
  height: 73.125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 14.375rem;
}

.product5 .product5-4 .title p {
  font-size: var(--font50);
  color: #fff;
  line-height: 1.24;
  letter-spacing: -1px;
  font-family: Montserrat-Bold;
}

.product5 .product5-5 {
  padding-top: 5.625rem;
}

.product5 .product5-5 .table-box {
  margin-top: 3.75rem;
}

.product5 .product5-5 .mode-contact {
  margin-top: 20px;
}

.product5 .product5-6 {
  position: relative;
}

.product5 .product5-6 .box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

.product5 .product5-6 .box .text {
  width: 50%;
  margin-left: auto;
}

.product5 .product5-6 .box .text .mode-desc {
  line-height: 1.65;
}

.product6 .product6-1 {
  padding-top: 8.4375rem;
}

.product6 .product6-1 .img-box {
  position: relative;
}

.product6 .product6-1 .img-box .point {
  position: absolute;
  width: 1px;
  height: 1px;
}

.product6 .product6-1 .img-box .point .text {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.product6 .product6-1 .img-box .point .text p {
  font-size: var(--font22);
  color: #fff;
  letter-spacing: 0;
}

.product6 .product6-1 .img-box .point .text::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.product6 .product6-1 .img-box .point1 {
  top: 29%;
  left: 19%;
}

.product6 .product6-1 .img-box .point1 .text {
  width: 36.875rem;
  height: 5.625rem;
  border-top: 1px dashed #fff;
  border-right: 1px dashed #fff;
  padding-top: 1.75rem;
  padding-left: 1.375rem;
}

.product6 .product6-1 .img-box .point2 {
  top: 26.5%;
  left: 59.5%;
}

.product6 .product6-1 .img-box .point2 .text {
  width: 23.125rem;
  height: 12.5rem;
  padding: 1.25rem 0 0 0;
  border-top: 1px dashed #fff;
  border-left: 1px dashed #fff;
  display: flex;
  justify-content: flex-end;
}

.product6 .product6-1 .img-box .point2 .text::after {
  right: 0;
  left: unset;
  transform: translate(50%, -50%);
}

.product6 .product6-1 .img-box .point3 {
  top: 45.5%;
  left: 69.5%;
}

.product6 .product6-1 .img-box .point3 .text {
  width: 23.125rem;
  height: 12.5rem;
  padding: 1.5625rem 0 0 0;
  border-top: 1px dashed #fff;
  border-left: 1px dashed #fff;
  display: flex;
  justify-content: flex-end;
}

.product6 .product6-1 .img-box .point3 .text::after {
  right: 0;
  left: unset;
  transform: translate(50%, -50%);
}

.product6 .product6-1 .img-box .point4 {
  top: 60.5%;
  left: 25.5%;
}

.product6 .product6-1 .img-box .point4 .text {
  width: 32.5rem;
  height: 20rem;
  border-bottom: 1px dashed #fff;
  border-right: 1px dashed #fff;
  display: flex;
  align-items: flex-end;
  padding: 0 0 1rem 1rem;
}

.product6 .product6-1 .img-box .point4 .text::after {
  top: 100%;
  transform: translate(-50%, -50%);
}

.product6 .product6-1 .img-box .point5 {
  top: 67.5%;
  left: 57.5%;
}

.product6 .product6-1 .img-box .point5 .text {
  width: 26.5625rem;
  height: 11.25rem;
  border-bottom: 1px dashed #fff;
  border-left: 1px dashed #fff;
  display: flex;
  align-items: flex-end;
  padding-left: 2.8125rem;
  padding-bottom: .9375rem;
}

.product6 .product6-1 .img-box .point5 .text p {
  word-break: keep-all;
  white-space: nowrap;
}

.product6 .product6-1 .img-box .point5 .text::after {
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1920px) {
  .product6 .product6-1 .img-box .point1 {
    top: 27.5%;
    left: 15.5%;
  }
  .product6 .product6-1 .img-box .point2 {
    top: 23.5%;
  }
  .product6 .product6-1 .img-box .point3 {
    top: 43.5%;
  }
}

.product6 .product6-2 {
  height: 60rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 12.5rem;
}

.product6 .product6-3 {
  padding-bottom: 10rem;
}

.product6 .product6-3 .mode-desc {
  line-height: 1.7;
}

.product6 .product6-3 .iconList {
  margin-top: 6.5625rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: auto;
  gap: 5.625rem 3.75rem;
  text-align: center;
}

@media (max-width: 992px) {
  .product6 .product6-3 .iconList {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product6 .product6-3 .iconList {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.product6 .product6-3 .iconList i {
  font-size: var(--font50);
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product6 .product6-3 .iconList .text {
  margin-top: 1.25rem;
  color: #fff;
}

.product6 .product6-3 .iconList .text p {
  letter-spacing: -1px;
  word-break: keep-all;
  white-space: nowrap;
}

.product6 .product6-3 .iconList .text p:first-child {
  font-size: var(--font22);
  font-family: Montserrat-Bold;
}

.product6 .product6-3 .iconList .text p:nth-child(2) {
  font-size: var(--font20);
}

.product6 .product6-3 .list {
  margin-top: 10.625rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0 1.5625rem;
}

@media (max-width: 992px) {
  .product6 .product6-3 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product6 .product6-3 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.product6 .product6-3 .list .item {
  position: relative;
  height: 37.5rem;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.product6 .product6-3 .list .item .text {
  position: absolute;
  left: 0;
  top: 85%;
  width: 100%;
  padding: 0 1.5625rem;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 2;
  transition: all .5s ease-in-out;
}

.product6 .product6-3 .list .item .text .title {
  font-size: var(--font22);
  font-family: Montserrat-Bold;
  color: #fff;
}

.product6 .product6-3 .list .item .text .desc {
  margin-top: 1.125rem;
  color: #fff;
  opacity: 0;
  transition: all .5s ease-in-out;
  line-height: 1.6;
}

.product6 .product6-3 .list .item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(0, #9f7cdb, rgba(159, 124, 219, 0));
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.product6 .product6-3 .list .item:hover .text {
  top: 70%;
}

.product6 .product6-3 .list .item:hover .text .desc {
  opacity: 1;
}

.product6 .product6-3 .list .item:hover:after {
  opacity: 1;
}

.product6 .product6-4 {
  height: 67.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.product6 .product6-5 {
  padding-top: 3.75rem;
}

.product6 .product6-5 .table-box {
  margin-top: 4.0625rem;
}

.product6 .product6-5 .table-box .table-row .table-item {
  justify-content: flex-start;
  padding-left: 2.8125rem;
  text-align: left;
}

.product6 .product6-5 .table-box .table-row .table-item:first-child {
  width: 25%;
  padding-left: 3.75rem;
}

.product6 .product6-5 .mode-contact {
  margin-top: 20px;
}

.product7 .product7-1 {
  padding-top: 5.9375rem;
}

.product7 .product7-1 .list {
  margin-top: 8.4375rem;
}

.product7 .product7-1 .list li {
  width: 50%;
  display: flex;
}

.product7 .product7-1 .list li:nth-child(1), .product7 .product7-1 .list li:nth-child(2) {
  margin-bottom: 7.8125rem;
}

.product7 .product7-1 .list .item {
  display: flex;
  align-items: center;
}

.product7 .product7-1 .list .item:not(:last-child) {
  margin-bottom: 10.625rem;
}

.product7 .product7-1 .list .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product7 .product7-1 .list .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product7 .product7-1 .list .text {
  color: #fff;
  margin-left: 2rem;
}

.product7 .product7-1 .list .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product7 .product7-1 .list .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product7 .product7-1 .list .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product7 .product7-1 .bg {
  display: block;
  width: 100%;
  margin-top: -15%;
}

.product7 .product7-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 64.6875rem;
}

.product7 .product7-3 {
  padding: 3.75rem 0 9.375rem;
}

.product7 .product7-3 .mode-desc {
  line-height: 1.7;
  margin-top: 2.1875rem;
}

.product7 .product7-3 .list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2.1875rem 1.25rem;
}

@media (max-width: 992px) {
  .product7 .product7-3 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product7 .product7-3 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.product7 .product7-3 .list li {
  height: 17.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.product7 .product7-3 .list li .title {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  color: #fff;
  font-family: Montserrat-Bold;
  font-size: var(--font22);
  padding: 0 1.25rem;
  box-sizing: border-box;
  z-index: 2;
}

.product7 .product7-3 .list li::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #b18be4 0%, rgba(169, 132, 223, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.product7 .product7-3 .list li:hover::after {
  opacity: 1;
}

.product7 .product7-4 {
  position: relative;
}

.product7 .product7-4 .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.product7 .product7-4 .text .mode-desc {
  line-height: 2.3;
  margin-top: 3.125rem;
}

.product7 .product7-5 {
  margin-top: 10rem;
}

.product7 .product7-5 .table-box {
  margin-top: 3.75rem;
}

.product7 .product7-5 .table-box .mode-table4 {
  --row-height: 3.75rem;
}

.product7 .product7-5 .mode-contact {
  margin-top: 20px;
}

.product8 .product8-1 {
  padding-top: 5.9375rem;
}

.product8 .product8-1 .list {
  margin-top: 6.25rem;
}

.product8 .product8-1 .list li {
  width: 33%;
  display: flex;
  margin-bottom: 6.25rem;
}

.product8 .product8-1 .list li:last-child(-n+3) {
  margin-bottom: 0;
}

.product8 .product8-1 .list .item {
  display: flex;
  align-items: center;
}

.product8 .product8-1 .list .icon-box {
  width: 4.0625rem;
  height: 4.0625rem;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-shrink: 0;
}

.product8 .product8-1 .list .icon-box i {
  font-size: var(--font34);
  margin: auto;
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.product8 .product8-1 .list .text {
  color: #fff;
  margin-left: 2rem;
}

.product8 .product8-1 .list .text .item-title {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product8 .product8-1 .list .text .item-title p {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  letter-spacing: -1px;
}

.product8 .product8-1 .list .text .item-desc {
  margin-top: 1rem;
  font-size: var(--font18);
  line-height: 1.5;
  opacity: .5;
}

.product8 .product8-1 .sec1Img {
  display: block;
  width: 100%;
}

.product8 .product8-2 {
  height: 75.5625rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.product8 .product8-3 {
  padding-top: 3.75rem;
}

.product8 .product8-3 .table-box {
  margin-top: 3.75rem;
}

.product8 .product8-3 .table-box .mode-table4 {
  --row-height: 3.75rem;
}

.product8 .product8-3 .mode-contact {
  margin-top: 20px;
}
