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

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

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

@font-face {
  font-family: Montserrat-Light;
  src: url(../fonts/MONTSERRAT-LIGHT.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     行列间隔
*/
/* end 公共 */
/* 页面公共 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  z-index: 9999;
}

.header-logo {
  display: block;
  width: 13.25rem;
}

.header-nav {
  height: var(--header-height);
}

.header .nav-list .list-item {
  height: var(--header-height);
  position: relative;
}

.header .nav-list .list-item:not(:last-child) {
  margin-right: 3.125rem;
}

.header .nav-list .list-item--active a h2 {
  color: var(--main-color);
  font-family: Montserrat-Bold;
}

.header .nav-list .list-oneTitle h2 {
  line-height: var(--header-height);
  font-weight: normal;
  color: #000;
  font-size: var(--font20);
  letter-spacing: 0;
}

.header .nav-list .list-oneTitle h2:hover {
  color: var(--main-color);
}

.header .nav-list .header-nav__subNav {
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50px);
  width: auto;
  min-width: 12.5rem;
  background: #fff;
  padding: 2.5rem 1.25rem 2.25rem;
  opacity: 0;
  z-index: 1;
  transition: all .5s ease-in-out;
  box-shadow: 0 2px 3px 3px rgba(130, 27, 41, 0.1);
}

.header .nav-list .header-nav__subNav > ul li h3 a {
  font-size: var(--font16);
  word-break: keep-all;
  white-space: nowrap;
  color: #000;
}

.header .nav-list .header-nav__subNav > ul li h3 a:hover {
  color: var(--main-color);
}

.header .nav-list .header-nav__subNav > ul li:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.header .nav-list .header-nav__subNav::after {
  content: "";
  width: 0;
  height: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  transition: all .5s ease-in-out;
  transition-delay: .3s;
}

.header .nav-list .header-nav__subNav.active {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: all;
}

.header .nav-list .header-nav__subNav.active::after {
  width: 100%;
}

.header-tool {
  margin-left: 5.3125rem;
}

.header-tool__item {
  cursor: pointer;
  position: relative;
}

.header-tool__item i {
  font-size: var(--font24);
  color: #797c78;
}

.header-tool__item .box {
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, 0);
  background: #fff;
  min-width: 6.25rem;
  box-shadow: 0px 0px 5px 2px rgba(130, 27, 41, 0.2);
  padding: .625rem .9375rem;
  border-radius: 1.5625rem;
  display: none;
  font-size: var(--font16);
}

.header-tool__item .box a {
  display: block;
  font-size: var(--font20);
  color: #000;
  text-align: center;
  line-height: 2.2;
}

.header-tool__item .box a.active {
  color: var(--main-color);
}

.header-tool__item .box input {
  display: block;
  border: 0;
  font-size: var(--font14);
  color: #000;
}

.header-tool #langBox {
  width: 111px;
  margin-left: 4.0625rem;
}

.header-tool__line {
  width: 1px;
  height: 1.0625rem;
  background: #8f8f8f;
  margin: 0 12px;
}

.header-tool__menu {
  width: 25px;
  flex-direction: column;
  cursor: pointer;
}

.header-tool__menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
}

.header-tool__menu span:not(:last-child) {
  margin-bottom: 6px;
}

.footer {
  background: var(--main-color);
  padding: 4.375rem 0 2.1875rem;
}

.footer-logo {
  display: block;
  width: 15rem;
}

.footer-list {
  margin-top: 3.4375rem;
}

.footer-list li {
  color: #fff;
  font-size: var(--font18);
}

.footer-list li i {
  font-size: var(--font24);
  margin-right: .625rem;
}

.footer-list li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.footer-nav {
  margin-top: 3.125rem;
}

.footer-nav li h2 {
  margin-bottom: 3.125rem;
}

.footer-nav li h2 a {
  font-family: Montserrat-Bold;
  color: #fff;
  font-size: var(--font20);
}

.footer-nav li h3 a {
  color: #fff;
  font-family: Montserrat-ExtraLight;
  font-size: var(--font16);
  line-height: 1.6;
}

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

.footer-nav li h3:hover {
  transform: translateX(10px);
  transition: all .3s;
}

.footer-bot {
  margin-top: 5.9375rem;
}

.footer-bot-left p,
.footer-bot-left a {
  color: #fff;
  margin-right: .625rem;
}

.footer-bot-iconList a {
  color: #fff;
}

.footer-bot-iconList a:not(:last-child) {
  margin-right: 3.125rem;
}

.footer-bot-iconList i {
  font-size: var(--font24);
}

main {
  margin-top: var(--header-height);
  overflow: hidden;
}

.moreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 3.75rem;
  background: var(--main-color);
  color: #fff !important;
  font-size: var(--font20);
  transition: all .5s ease-in-out;
}

.moreBtn span {
  font-family: Montserrat-Bold;
}

.moreBtn .bi {
  margin-left: 10px;
  transition: all .3s;
}

.moreBtn:hover .bi {
  transform: translateX(15px);
}

.moreBtn2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 3.75rem;
  background: #fff;
  color: var(--main-color);
  font-size: var(--font20);
  transition: all .3s ease-in-out;
  border: 1px solid var(--main-color);
}

.moreBtn2 span {
  font-family: Montserrat-Bold;
}

.moreBtn2 .bi {
  margin-left: 10px;
  transition: all .3s;
}

.moreBtn2:hover {
  background: var(--main-color);
  color: #fff !important;
}

.moreBtn2:hover .bi {
  transform: translateX(15px);
}

.mode-desc, .about .desc {
  font-size: var(--font20);
  line-height: 2;
}

.page-title {
  font-family: Montserrat-Bold;
  font-size: var(--font60);
}

.swiperBtnStyle {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background: #e5e5e5;
  transition: .3s ease-in-out;
  margin-top: 0;
}

.swiperBtnStyle::after {
  content: none;
}

.swiperBtnStyle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--font30);
  margin: auto;
  color: #fff;
}

.swiperBtnStyle:hover {
  background: var(--main-color);
}

.swiperBtnNormal {
  display: flex;
  align-items: center;
}

.swiperBtnNormal .swiperBtnStyle {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  transform: none;
  background: #fff;
}

.swiperBtnNormal .swiperBtnStyle .iconfont {
  color: var(--main-color);
}

.swiperBtnNormal .swiperBtnStyle:first-child {
  margin-right: 2.8125rem;
}

.swiperBtnNormal .swiperBtnStyle:hover {
  background: var(--main-color);
}

.swiperBtnNormal .swiperBtnStyle:hover .iconfont {
  color: #fff;
}

.newsListStyle li:hover .title {
  color: var(--main-color);
}

.newsListStyle a {
  color: #000;
}

.newsListStyle img {
  display: block;
  width: 100%;
  aspect-ratio: 390/260;
  object-fit: cover;
  background: var(--main-color);
}

.newsListStyle .newsClass {
  margin-top: 1.875rem;
  font-size: var(--font16);
  line-height: 1;
}

.newsListStyle .title {
  font-size: var(--font24);
  font-family: Montserrat-Bold;
  margin: 1.25rem 0;
}

.newsListStyle .desc {
  font-size: var(--font18);
  line-height: 1.4;
  letter-spacing: -1px;
  font-family: Montserrat-ExtraLight;
  margin-bottom: 1.5625rem;
}

.newsListStyle .time {
  line-height: 1;
  font-size: var(--font16);
  font-family: Montserrat-Hairline;
}

.wheelStyle li {
  width: 18.75rem;
}

.wheelStyle .title {
  width: 100%;
  font-size: var(--font24);
  font-family: Montserrat-Bold;
  color: #000;
}

.wheelStyle .tip {
  font-size: var(--font16);
  color: #777777;
  margin-top: .3125rem;
}

.wheelStyle .img-box {
  height: 12.5rem;
  display: flex;
  align-items: center;
  margin: 1.875rem auto 1.125rem;
}

.wheelStyle img {
  display: block;
  max-width: 90%;
  max-height: 100%;
  margin: 0 auto;
}

.wheelStyle .iconBox {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: .625rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  overflow: hidden;
  position: absolute;
  right: 1.25rem;
  bottom: 1.875rem;
}

.wheelStyle .iconBox .iconfont {
  font-size: var(--font26);
  transition: all .5s ease;
  color: #797c78;
}

.wheelStyle .item {
  display: block;
  background: #f7f7f7;
  padding: 3.75rem 1.25rem 1.875rem 2.5rem;
  box-sizing: border-box;
  height: 28.75rem;
  position: relative;
}

.wheelStyle .item:hover .title {
  color: var(--main-color);
}

.wheelStyle .item:hover .iconBox {
  background: var(--main-color);
}

.wheelStyle .item:hover .iconBox .iconfont {
  color: #fff;
}

aside {
  position: fixed;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  z-index: 999;
}

aside .item {
  position: relative;
}

aside .item:not(:last-child) {
  margin-bottom: 10px;
}

aside .item.active .form-box {
  opacity: 1;
  transform: translateX(0);
}

aside .item.active .text-box {
  opacity: 0;
  z-index: -1;
}

aside .item:first-child {
  cursor: pointer;
}

aside .text-box {
  width: 4.375rem;
  height: 25rem;
  background: var(--main-color);
  border-radius: .625rem;
  color: #fff;
  padding-top: 1.25rem;
  box-sizing: border-box;
  transition: all .3s ease;
}

aside .text-box .iconfont {
  font-size: var(--font24);
  cursor: pointer;
}

aside .text-box p {
  margin: 2.8125rem auto 0;
  font-size: var(--font24);
  font-family: Montserrat-Bold;
  writing-mode: vertical-rl;
  height: 100%;
}

aside .form-box {
  width: 18.75rem;
  height: 25rem;
  background: var(--main-color);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: .625rem;
  padding: 1.5625rem 1.25rem 0;
  box-sizing: border-box;
  transform: translateX(100%);
  opacity: 0;
  transition: all .5s ease-in-out;
}

aside .form-box .iconfont {
  font-size: var(--font24);
  color: #fff;
  cursor: pointer;
}

aside .form-box .title {
  text-align: center;
  font-size: var(--font24);
  color: #fff;
  font-family: Montserrat-Bold;
  margin-top: 1.25rem;
  line-height: 1;
}

aside .form-box input {
  margin-top: 1.25rem;
  display: block;
  width: 100%;
  height: 2.8125rem;
  font-size: var(--font14);
  padding: 0 .75rem;
  box-sizing: border-box;
  border: 0;
  outline: 0;
}

aside .form-box input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

aside .form-box textarea {
  display: block;
  resize: none;
  width: 100%;
  height: 8.125rem;
  background: #fff;
  font-size: var(--font14);
  border: 0;
  outline: 0;
  padding: .75rem;
  box-sizing: border-box;
  margin: .9375rem 0 1.5625rem;
}

aside .form-box textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

aside .form-box button {
  display: block;
  width: 11.875rem;
  height: 2.8125rem;
  background: #fff;
  color: var(--main-color);
  margin: 0 auto;
  border: 0;
  outline: 0;
}

aside .iconBox {
  width: 4.375rem;
  height: 4.375rem;
  background: var(--main-color);
  border-radius: .625rem;
  display: flex;
}

aside .iconBox i {
  font-size: var(--font30);
  color: #fff;
  margin: auto;
}

.banner {
  position: relative;
}

.banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 1920/660;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.banner-text .title {
  font-size: var(--font60);
  font-family: Montserrat-Bold;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.banner .breadCrumbs {
  margin-top: 2.8125rem;
}

.banner .second-navBox {
  position: absolute;
  left: 0;
  bottom: 3.4375rem;
  width: 100%;
}

.banner .second-navBox .second-nav li h2 a {
  font-size: var(--font18);
  font-family: Montserrat-Light;
  color: #fff;
  letter-spacing: .2px;
}

.banner .second-navBox .second-nav li.active h2 a {
  font-family: Montserrat-Bold;
}

.banner .second-navBox .second-nav li.interval {
  color: #fff;
  font-size: var(--font16);
  font-family: Montserrat-Light;
  line-height: 1;
  position: relative;
  top: .125rem;
  margin: 0 1.25rem;
}

.banner .second-navBox .second-nav li.interval:last-child {
  display: none;
}

.breadCrumbs a {
  display: flex;
  color: #fff;
  font-size: var(--font16);
  font-family: Montserrat-ExtraLight;
  transition: all .3s ease-in-out;
}

.breadCrumbs a .iconfont {
  margin-right: 8px;
}

.breadCrumbs a span:last-child {
  margin: 0 8px;
}

.breadCrumbs a span:only-child {
  margin: 0;
}

.breadCrumbs a:hover {
  color: var(--main-color);
  font-weight: bold;
}

@keyframes cirRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes cirRotate2 {
  5% {
    transform: rotate(-10deg);
  }
  45% {
    transform: rotate(160deg);
  }
  55% {
    transform: rotate(160deg);
  }
  95% {
    transform: rotate(-10deg);
  }
}

@media screen and (max-width: 992px) {
  .moreBtn {
    width: 9.375rem;
    height: 2.8125rem;
    font-size: 1rem;
  }
  .moreBtn2 {
    width: 9.375rem;
    height: 2.8125rem;
    font-size: 1rem;
  }
  aside {
    top: 55%;
    right: 10px;
  }
  aside .text-box {
    width: 50px;
  }
  aside .iconBox {
    width: 50px;
    height: 50px;
  }
  aside .iconBox i {
    font-size: 22px;
  }
  .swiperBtnStyle {
    width: 60px;
    height: 60px;
  }
  .swiperBtnStyle i {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  aside {
    top: unset;
    bottom: 5%;
    transform: none;
  }
  aside .text-box p {
    font-size: 16px;
  }
  .mode-desc, .about .desc {
    font-size: 16px;
  }
  .swiperBtnStyle {
    width: 45px;
    height: 45px;
  }
  .swiperBtnStyle i {
    font-size: 16px;
  }
  .newsListStyle .newsClass {
    font-size: 12px;
  }
  .newsListStyle .title {
    font-size: 18px;
  }
  .newsListStyle .desc {
    font-size: 16px;
  }
  .newsListStyle .time {
    font-size: 14px;
  }
  .banner-img {
    aspect-ratio: 750/300 !important;
  }
  .breadCrumbs a {
    font-size: 14px;
  }
  .breadCrumbs a .iconfont {
    font-size: 14px;
  }
  .wheelStyle li {
    width: 100%;
  }
}

h1 {
  font-weight: normal;
}

/* end 页面公共 */
.index .i-banner {
  height: 53.75rem;
}

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

.index .i-banner-text {
  position: absolute;
  top: 10.625rem;
  left: 0;
  width: 100%;
  color: #fff;
}

.index .i-banner-text .title1 {
  font-size: var(--font24);
  line-height: 1;
}

.index .i-banner-text .title2 {
  font-size: var(--font60);
  letter-spacing: -3px;
  font-family: Montserrat-Bold;
  line-height: 1;
  margin-bottom: 3.125rem;
}

.index .i-banner .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 3.75rem;
  right: var(--extend-width);
  left: unset;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  margin: 0;
  opacity: 1;
  position: relative;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all .3s;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet:nth-child(1)::before {
  background: url("../images/i-banner-icon1.png") no-repeat center;
  background-size: contain;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet:nth-child(2)::before {
  background: url("../images/i-banner-icon2.png") no-repeat center;
  background-size: contain;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet:nth-child(3)::before {
  background: url("../images/i-banner-icon3.png") no-repeat center;
  background-size: contain;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet:nth-child(4)::before {
  background: url("../images/i-banner-icon4.png") no-repeat center;
  background-size: contain;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin-right: 2.8125rem;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet-active::after {
  opacity: 0;
}

.index .i-banner .swiper-pagination .swiper-pagination-bullet-active::before {
  opacity: 1;
}

.index .i-about {
  padding: 9.375rem 0 7.1875rem;
}

.index .i-about .left {
  width: 69.44%;
}

.index .i-about .left .page-title {
  letter-spacing: -1px;
}

.index .i-about .left .mode-desc, .index .i-about .left .about .desc, .about .index .i-about .left .desc {
  margin-top: 3.75rem;
  line-height: 1.5;
}

.index .i-about .right {
  flex-shrink: 0;
  margin-left: 9.0625rem;
}

.index .i-about .right li .title {
  font-size: 3.75rem;
  letter-spacing: -1px;
  transition: all .3s ease-in-out;
}

.index .i-about .right li .title span {
  transition: all .3s ease-in-out;
}

.index .i-about .right li p {
  font-size: var(--font20);
  color: #000;
  opacity: .7;
  margin-top: .625rem;
}

.index .i-about .right li:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 3.125rem;
}

.index .i-about .right li:not(:first-child) {
  padding-top: 3.125rem;
}

.index .i-about .right li:hover .title,
.index .i-about .right li:hover span {
  color: var(--main-color);
  font-family: Montserrat-Bold;
}

.index .i-product .box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 33.125rem;
  background-color: var(--main-color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index .i-product .box .text {
  width: 100%;
  color: #fff;
}

.index .i-product .box .text-title {
  font-size: var(--font60);
  font-family: Montserrat-Bold;
  line-height: 1;
  text-align: center;
}

.index .i-product .box .text .moreBtn {
  margin: 2.5rem auto 0;
}

.index .i-hot {
  margin: 3.75rem 0 4.6875rem;
}

.index .i-hot .page-title {
  text-align: center;
}

.index .i-hot .hotSwiper {
  margin: 2.8125rem auto 0;
}

.index .i-hot .swiper-box {
  position: relative;
}

.index .i-hot .swiper-box .swiper-button-prev {
  left: -2.5rem;
  transform: translateX(-100%);
}

.index .i-hot .swiper-box .swiper-button-next {
  right: -2.5rem;
  transform: translateX(100%);
}

.index .i-hot .moreBtn2 {
  margin: 3.125rem auto 0;
}

.index .i-honor {
  height: 51.25rem;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.index .i-honor .honorSwiper {
  margin-top: 3.75rem;
}

.index .i-honor .honorSwiper .swiper-slide {
  cursor: pointer;
}

.index .i-honor .swiper-slide:hover p {
  font-family: Montserrat-Bold;
}

.index .i-honor .page-title {
  color: #fff;
}

.index .i-honor p {
  text-align: center;
  color: #fff;
  margin-top: .9375rem;
}

.index .i-honor .swiperBtnNormal {
  justify-content: flex-end;
  margin-top: 3.125rem;
}

.index .i-honor .aniBox {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 27.8125rem;
  height: 10.625rem;
}

.index .i-honor .aniBox img {
  display: block;
  width: 100%;
}

.index .i-honor .aniBox .img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}

.index .i-honor .aniBox .img2 {
  transform: rotate(-10deg);
  animation: cirRotate2 10s linear infinite;
}

.index .i-news {
  margin: 5.3125rem 0;
}

.index .i-news .page-title {
  text-align: center;
}

.index .i-news .newsList {
  margin-top: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 0 2.8125rem;
}

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

.index .i-news .moreBtn2 {
  margin: 3.75rem auto 0;
}

.index .i-video {
  position: relative;
}

.index .i-video .bg {
  aspect-ratio: 1920/940;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.index .i-video .videoBtn {
  width: 6.25rem;
  height: 6.25rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  z-index: 3;
  cursor: pointer;
}

.index .i-video .videoBtn .iconfont {
  margin: auto;
  font-size: var(--font30);
  color: var(--main-color);
}

.index .i-video .videoBtn::after {
  content: "";
  width: 12.1875rem;
  height: 12.1875rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about {
  overflow: hidden;
}

.about h1.title {
  font-family: Montserrat-Bold;
  font-size: var(--font60);
  color: #000;
  line-height: 1.2;
}

.about h2.title {
  font-family: Montserrat-Bold;
  font-size: var(--font60);
  color: #000;
  line-height: 1.2;
}

.about .title2 {
  font-family: Montserrat-Bold;
  font-size: var(--font32);
  margin-top: 2.5rem;
}

.about .desc {
  color: #000;
  letter-spacing: 0;
}

.about .about-1 {
  padding: 8.125rem 0 6.25rem;
}

.about .about-1 .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2rem 1.875rem;
}

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

.about .about-1 .grid-box .item1 {
  grid-area: 1 / 1 / span 3 / span 2;
}

.about .about-1 .grid-box .item1 .desc {
  margin-top: 4.0625rem;
  width: 45.625rem;
}

.about .about-1 .grid-box .item2 .title {
  font-family: Montserrat-Light;
  font-size: var(--font60);
  letter-spacing: -1px;
  transition: all .3s;
}

.about .about-1 .grid-box .item2 .desc {
  color: rgba(0, 0, 0, 0.9);
  line-height: 1;
}

.about .about-1 .grid-box .item2 .line {
  margin-top: 2.5rem;
  width: 100%;
  height: 1px;
  background: #d6d6d6;
  position: relative;
}

.about .about-1 .grid-box .item2 .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--main-color);
  width: 100%;
  height: 1px;
  transform: scale(0);
  transition: all .5s ease-in-out;
  transform-origin: left top;
}

.about .about-1 .grid-box .item2:hover .title,
.about .about-1 .grid-box .item2:hover .title span {
  font-family: Montserrat-Bold;
  color: var(--main-color);
}

.about .about-1 .grid-box .item2:hover .line::after {
  transform: scale(1);
}

.about .about-2 {
  margin: 6.875rem 0 4.0625rem;
}

.about .about-2 .desc {
  margin-top: 1.875rem;
}

.about .about-2 .iconList {
  margin-top: 3.125rem;
  --diameter: 12.5rem;
}

.about .about-2 .iconList li {
  width: var(--diameter);
}

.about .about-2 .iconList li:hover .iconBox {
  background: var(--main-color);
}

.about .about-2 .iconList li:hover .iconBox i {
  color: #fff;
}

.about .about-2 .iconList li:hover p {
  color: var(--main-color);
}

.about .about-2 .iconList .iconBox {
  height: var(--diameter);
  position: relative;
  border-radius: 50%;
  background: #f7f7f7;
  transition: all .5s ease-in-out;
}

.about .about-2 .iconList .iconBox i {
  font-size: var(--font70);
}

.about .about-2 .iconList p {
  text-align: center;
  margin-top: 1.5625rem;
  font-size: var(--font18);
  font-family: Montserrat-ExtraLight;
  transition: all .5s ease-in-out;
}

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

.about .about-3 {
  margin: 8.125rem 0 6.875rem;
}

.about .about-3 .item {
  width: 50%;
}

.about .about-3 .item .title {
  letter-spacing: -1px;
}

.about .about-3 .item .desc {
  margin-top: 1.875rem;
  width: 93.7%;
  line-height: 1.6;
}

.about .about-4 {
  background: #f9f9f9;
  min-height: 41.25rem;
  display: flex;
  align-items: center;
}

.about .about-4 .box {
  margin-top: 4.375rem;
  align-items: flex-start;
}

.about .about-4 .item {
  width: 50%;
}

.about .about-4 .right {
  display: flex;
  justify-content: flex-end;
}

.about .about-4 .number-item {
  position: relative;
}

.about .about-4 .number-item .numberBox {
  align-items: flex-end;
  font-size: var(--font60);
  letter-spacing: -1px;
  line-height: .7;
  font-family: Montserrat-Bold;
}

.about .about-4 .number-item .numberBox span {
  color: rgba(0, 0, 0, 0.7);
  font-size: var(--font20);
  line-height: 1;
  margin-left: .375rem;
}

.about .about-4 .number-item .numberBox .number {
  letter-spacing: -1px;
  color: #000;
  font-size: var(--font60);
  line-height: .7;
  margin: 0;
  font-family: Montserrat-Bold;
}

.about .about-4 .number-item p {
  font-size: var(--font20);
  margin-top: 1.5rem;
  color: rgba(0, 0, 0, 0.7);
}

.about .about-4 .number-item:not(:last-child) {
  --rightWidth: 7.8125rem;
  margin-right: var(--rightWidth);
}

.about .about-4 .number-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-1 * (var(--rightWidth)/2));
  transform: translateY(-50%);
  width: 1px;
  height: 5.5rem;
  background: #cccc;
}

.about .about-4 .number-item:hover .numberBox {
  color: var(--main-color);
}

.about .about-4 .number-item:hover .numberBox .number {
  color: var(--main-color);
}

.about .about-5 {
  padding: 8.125rem 0 5.625rem;
}

.about .about-5 .about5-1 .item {
  width: 50%;
}

.about .about-5 .about5-1 .right {
  padding-left: 3.4375rem;
  box-sizing: border-box;
}

.about .about-5 .about5-1 .desc {
  margin-top: 2.8125rem;
  line-height: 1.8;
}

.about .about-5 .about5-2 {
  margin-top: 9.375rem;
}

.about .about-5 .about5-2 .desc {
  margin-top: 2.5rem;
}

.about .about-6 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50rem;
}

.about .about-6 .left {
  width: 24.375rem;
  background: #fff;
  padding: 3.4375rem 3.125rem;
  box-sizing: border-box;
}

.about .about-6 .left .brand {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
}

.about .about-6 .left .invest_num #nowPrice {
  font-family: Montserrat-Bold;
  font-size: var(--font60);
  color: var(--main-color);
}

.about .about-6 .left .invest_num #nowstate {
  font-family: Montserrat-Bold;
  font-size: var(--font60);
  color: #777;
}

.about .about-6 .left .invest_num #change {
  font-family: Montserrat-Bold;
  font-size: var(--font18);
  color: #fff;
  padding: .375rem .6875rem;
  border-radius: 0px .625rem .625rem 10px;
  background: var(--main-color);
  margin-left: 1.875rem;
}

.about .about-6 .left ul {
  margin-top: 2.5rem;
}

.about .about-6 .left ul li:not(:last-child) {
  margin-bottom: .9375rem;
}

.about .about-6 .left ul p {
  font-size: var(--font16);
  color: #777;
}

.about .about-6 .left ul div {
  font-family: Montserrat-Bold;
  font-size: var(--font24);
  color: #474747;
}

.about .about-6 .left .tip {
  margin-top: 3.125rem;
  font-size: var(--font16);
  color: #777;
}

.about .about-6 .right {
  width: 53.75rem;
  background: #fff;
  padding: 1.5625rem;
  box-sizing: border-box;
}

.history {
  margin-bottom: 6.875rem;
}

.history .history-1 {
  text-align: center;
  margin-top: 8.125rem;
}

.history .history-1 .history-box {
  margin-top: 20.625rem;
}

.history .history-1 .row-item {
  position: relative;
  width: 100%;
  height: .625rem;
  background: #dddddd;
  --radius: 16.25rem;
}

.history .history-1 .row-item:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #dddddd;
  transform: translate(-50%, -50%);
}

.history .history-1 .row-item:not(:last-child) {
  margin-bottom: var(--radius);
}

.history .history-1 .row-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
  width: var(--radius);
  height: var(--radius);
  border-radius: 50%;
  border: .625rem solid #dddddd;
  mask: linear-gradient(90deg, transparent 50%, #000 50%);
}

.history .history-1 .row-item:nth-child(even)::after {
  right: unset;
  left: 0;
  transform: translateX(-50%);
  mask: linear-gradient(90deg, #000 50%, transparent 50%);
}

.history .history-1 .row-item:nth-child(odd) .item:first-child {
  left: 12.3%;
  top: 0;
}

.history .history-1 .row-item:nth-child(odd) .item:nth-child(2) {
  left: 62.7%;
  top: 0;
}

.history .history-1 .row-item:nth-child(even) .item:first-child {
  left: 88.1%;
  top: 0;
}

.history .history-1 .row-item:nth-child(even) .item:nth-child(2) {
  left: 38.1%;
  top: 0;
}

.history .history-1 .row-item:last-child::after {
  display: none;
}

.history .history-1 .item {
  position: absolute;
  width: 1px;
  height: 1px;
}

.history .history-1 .item .text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}

.history .history-1 .item .text:hover .title {
  color: var(--main-color);
  font-family: Montserrat-Bold;
}

.history .history-1 .item .title {
  font-size: var(--font30);
  color: #000;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
}

.history .history-1 .item .desc {
  width: 31.25rem;
  font-size: var(--font16);
  line-height: 1.2;
  text-align: left;
  margin: 1rem 0 .5rem;
}

.history .history-1 .item .iconBox {
  width: 6.875rem;
  height: 6.25rem;
  border-radius: 50%;
  background: var(--main-color);
  position: relative;
  display: flex;
  margin: 0 auto;
}

.history .history-1 .item .iconBox .year {
  margin: auto;
  font-family: Montserrat-Bold;
  font-size: var(--font36);
  color: #fff;
  position: relative;
  z-index: 2;
}

.history .history-1 .item .iconBox i {
  font-size: var(--font70);
  color: #fff;
  opacity: 0;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.history .history-2 {
  margin-top: 10rem;
  text-align: right;
}

.history .history-2 #main {
  height: 45rem;
}

.history .history-2 .tip {
  display: inline-block;
  padding: .625rem 1.375rem;
  font-size: var(--font16);
  color: #777;
  background: #eee;
  border-radius: .9375rem;
}

.strength .strength-1 {
  text-align: center;
  margin: 8.75rem 0 5.625rem;
}

.strength .strength-1 .mode-desc, .strength .strength-1 .about .desc, .about .strength .strength-1 .desc {
  text-align: left;
  width: 78.57%;
  color: #222;
  margin: 3.75rem auto 0;
}

.strength .strength-2 {
  position: relative;
  padding: 8.125rem 0 3.75rem;
  box-sizing: border-box;
}

.strength .strength-2 .strengthSwiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.strength .strength-2 .strengthSwiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.strength .strength-2 .box {
  position: relative;
  z-index: 20;
}

.strength .strength-2 .box .top .title {
  color: #fff;
  font-family: Montserrat-Bold;
  font-size: var(--font50);
}

.strength .strength-2 .box .top .desc {
  margin-top: 1.875rem;
  font-size: var(--font20);
  color: #fff;
  line-height: 1.6;
}

.strength .strength-2 .box .bot {
  margin-top: 5rem;
}

.strength .strength-2 .box .bot .item {
  position: relative;
}

.strength .strength-2 .box .bot .item .icon-box {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.strength .strength-2 .box .bot .item .icon-box img {
  display: block;
  width: 3.125rem;
  margin: auto;
}

.strength .strength-2 .box .bot .item .text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(20px);
  width: 29.375rem;
  overflow: hidden;
  background: rgba(130, 27, 41, 0.9);
  border-radius: 2.5rem;
  box-sizing: border-box;
  padding: 4.0625rem 2.1875rem 4.0625rem 1.875rem;
  opacity: 0;
  transition: all .5s ease-in-out;
  z-index: -1;
}

.strength .strength-2 .box .bot .item .text-box img {
  display: block;
  width: 6.25rem;
}

.strength .strength-2 .box .bot .item .text-box .title {
  font-size: var(--font30);
  color: #fff;
  font-family: Montserrat-Bold;
  margin: 3.4375rem 0 1.875rem;
}

.strength .strength-2 .box .bot .item .text-box .mode-desc, .strength .strength-2 .box .bot .item .text-box .about .desc, .about .strength .strength-2 .box .bot .item .text-box .desc {
  color: #fff;
  line-height: 1.6;
}

.strength .strength-2 .box .bot .item:not(:last-child) {
  margin-right: 2rem;
}

.strength .strength-2 .box .bot .item.active .icon-box {
  position: absolute;
  opacity: 0;
}

.strength .strength-2 .box .bot .item.active .text-box {
  position: relative;
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

.strength .strength-3 {
  margin-bottom: 11.25rem;
}

.strength .strength-3 .tableBox {
  margin-top: 10rem;
  position: relative;
  overflow: hidden;
}

.strength .strength-3 .tableBox .item {
  position: absolute;
  transform: translateY(40px);
  opacity: 0;
  transition: all .5s ease-in-out;
}

.strength .strength-3 .tableBox .item.active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}

.strength .strength-3 .tableBox .page-title {
  line-height: 1;
  margin: 2.5rem 0;
}

.strength .strength-3 .tableBox i {
  font-size: var(--font70);
  color: var(--main-color);
}

.strength .strength-3 .btnBox {
  margin-top: 5rem;
  height: 37.5rem;
}

.strength .strength-3 .btnBox li {
  width: 16.67%;
  height: 100%;
  position: relative;
  transition: all .3s linear;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.strength .strength-3 .btnBox li.active {
  width: 33.33%;
}

.strength .strength-3 .btnBox li.active .iconBox {
  background: var(--main-color);
  border: solid 3px var(--main-color);
}

.strength .strength-3 .btnBox li .iconBox {
  width: 8.125rem;
  height: 8.125rem;
  border: solid 3px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all .3s linear;
}

.strength .strength-3 .btnBox li .iconBox i {
  font-size: var(--font60);
  color: #fff;
}

.honor .i-honor {
  margin-top: 8rem;
  border-radius: 6.25rem 6.25rem 0px 0px;
  height: 61.25rem;
}

.partners .partners-box {
  margin: 8.125rem 0 12.1875rem;
}

.partners .partners-box .page-title {
  text-align: center;
  margin-bottom: 6.875rem;
}

.partners .partners-box .swiper {
  height: 9.375rem;
}

.partners .partners-box .swiper .swiper-wrapper {
  transition-property: transform;
}

.partners .partners-box .swiper:not(:last-child) {
  margin-bottom: 5.3125rem;
}

.partners .partners-box .swiper-slide {
  background: #f4f4f4;
  border-radius: 4.6875rem;
  display: flex;
}

.partners .partners-box .swiper-slide img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
}

.wheel .banner .second-navBox .second-nav li h2 a {
  font-size: var(--font24);
}

.wheel .wheel-box {
  margin: 7.5rem 0;
}

.wheel .wheel-box .page-title {
  text-align: center;
}

.wheel .wheel-box .list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2.5rem 1.25rem;
}

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

.wheelXq .breadCrumbs {
  margin: 2.5rem 0 4.375rem;
}

.wheelXq .breadCrumbs a {
  color: #777777;
}

.wheelXq-1 {
  padding-bottom: 6.5625rem;
  border-bottom: 1px solid #dddddd;
}

.wheelXq-1 .left {
  --leftWidth: 39.375rem;
  width: var(--leftWidth);
}

.wheelXq-1 .left .bigSwiper {
  width: var(--leftWidth);
  height: var(--leftWidth);
  border: solid 1px #dddddd;
}

.wheelXq-1 .left .bigSwiper .swiper-slide {
  display: flex;
}

.wheelXq-1 .left .bigSwiper .swiper-slide img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
}

.wheelXq-1 .left .bigSwiper .iconBox {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 25;
  width: 3.75rem;
  height: 3.75rem;
  border: solid 1px #cccccc;
  border-radius: .625rem;
  transition: all .5s ease-in-out;
}

.wheelXq-1 .left .bigSwiper .iconBox i {
  font-size: var(--font26);
  transition: all .5s ease;
  color: #797c78;
}

.wheelXq-1 .left .bigSwiper .iconBox:hover {
  background: var(--main-color);
}

.wheelXq-1 .left .bigSwiper .iconBox:hover i {
  color: #fff;
}

.wheelXq-1 .left .smallSwiper {
  --slideStyle: 6.875rem;
  margin-top: 2.5rem;
}

.wheelXq-1 .left .smallSwiper .swiper-slide {
  width: var(--slideStyle);
  height: var(--slideStyle);
  border: solid 1px #dddddd;
  display: flex;
  box-sizing: border-box;
}

.wheelXq-1 .left .smallSwiper .swiper-slide img {
  display: block;
  margin: auto;
  max-width: 50%;
  max-height: 90%;
}

.wheelXq-1 .left .smallSwiper .swiper-slide-thumb-active {
  border: solid 1px var(--main-color);
}

.wheelXq-1 .right {
  width: 39.375rem;
  padding-left: 3.75rem;
  box-sizing: border-box;
}

.wheelXq-1 .right .page-title {
  color: #000;
  margin-top: 1.25rem;
}

.wheelXq-1 .right .type {
  font-family: Montserrat-ExtraLight;
  font-size: var(--font20);
  margin: 1.875rem 0 2.5rem;
}

.wheelXq-1 .right .list li {
  display: flex;
}

.wheelXq-1 .right .list li p {
  font-size: var(--font16);
  line-height: 1.875rem;
}

.wheelXq-1 .right .list li p:first-child {
  text-align: center;
  min-width: 11.25rem;
  padding: 0 .9375rem;
  background: #eee;
  border-radius: .375rem;
  margin-right: 1.875rem;
}

.wheelXq-1 .right .list li:not(:last-child) {
  margin-bottom: 1rem;
}

.wheelXq-1 .right .desc {
  font-size: var(--font18);
  line-height: 1.8;
  margin: 3.125rem 0 3.75rem;
}

.wheelXq-2 {
  text-align: center;
  margin-top: 4.6875rem;
}

.wheelXq-2 .content {
  margin-top: 2.8125rem;
}

.wheelXq-2 .content table {
  width: 100%;
  font-size: var(--font18);
}

.wheelXq-2 .content table tbody {
  width: 100%;
}

.wheelXq-2 .content table tr td {
  width: 50%;
  height: 3.125rem;
}

.wheelXq-2 .content table tr:nth-child(odd) td:nth-child(odd) {
  background: #eeeeee;
}

.wheelXq-2 .content table tr:nth-child(odd) td:nth-child(even) {
  background: rgba(238, 238, 238, 0.4);
}

.wheelXq-3 {
  margin: 8.125rem 0;
}

.btnBox .btn {
  width: 12.5rem;
  height: 3.75rem;
  font-size: var(--font20);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: all .5s ease-in-out;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--main-color);
}

.btnBox .btn span {
  font-family: Montserrat-Bold;
  position: relative;
  z-index: 2;
}

.btnBox .btn i {
  font-size: var(--font16);
  position: relative;
  z-index: 2;
  font-weight: bold;
  margin-left: .625rem;
}

.btnBox .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--main-color);
  width: 100%;
  height: 100%;
  transition: width .5s ease-in-out, height .5s ease-in-out;
}

.btnBox .btn1 {
  color: #fff;
  margin-right: 2.5rem;
}

.btnBox .btn1:hover {
  color: var(--main-color);
}

.btnBox .btn1:hover::after {
  width: 0;
  height: 0;
}

.btnBox .btn2 {
  color: var(--main-color);
}

.btnBox .btn2::after {
  width: 0;
  height: 0;
}

.btnBox .btn2:hover {
  color: #fff;
}

.btnBox .btn2:hover::after {
  width: 100%;
  height: 100%;
}

.btnBox .btn:only-child {
  margin-right: 0 !important;
}

.quoteBox .desc {
  margin: 1.875rem 0 2.8125rem;
  font-size: var(--font18);
  line-height: 1.6;
}

.quoteBox .formBox .form-style {
  display: flex;
  align-items: center;
  height: 3.125rem;
  background: var(--main-color);
  font-size: var(--font14);
  color: #fff;
  padding: 0 1.375rem;
  box-sizing: border-box;
}

.quoteBox .formBox .form-style input {
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  flex: 1;
}

.quoteBox .formBox .form-row:not(:last-child) {
  margin-bottom: 1.25rem;
}

.quoteBox .formBox .form-row2 {
  gap: 1.25rem;
}

.quoteBox .formBox .form-item {
  position: relative;
  background: #eeeeee;
  flex: 1;
  padding: 0 1.25rem;
}

.quoteBox .formBox .form-item input {
  width: 100%;
  height: 3.125rem;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: #000;
}

.quoteBox .formBox .form-item input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.quoteBox .formBox .form-item span {
  font-size: 14px;
  color: var(--main-color);
  position: absolute;
  right: .9375rem;
  top: 50%;
  transform: translateY(-50%);
}

.quoteBox .formBox textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 1.25rem;
  border: 0;
  resize: none;
  background: #eeeeee;
  height: 9.375rem;
  color: #000;
}

.quoteBox .formBox textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.quoteBox .formBox .submit {
  width: 11.875rem;
  height: 2.8125rem;
  background: var(--main-color);
  margin-top: 3.4375rem;
  font-family: Montserrat-Bold;
  font-size: var(--font18);
  color: #fff;
  line-height: 2.8125rem;
  text-align: center;
  cursor: pointer;
}

.specialXq .breadCrumbs {
  margin: 2.5rem 0 2.1875rem;
}

.specialXq .breadCrumbs a {
  color: #777777;
}

.specialXq-1 .iconBox {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: .625rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  overflow: hidden;
  border: 1px solid #cccccc;
}

.specialXq-1 .iconBox .iconfont {
  font-size: var(--font26);
  transition: all .5s ease;
  color: #797c78;
}

.specialXq-1 .iconBox:hover {
  background: var(--main-color);
}

.specialXq-1 .iconBox:hover .iconfont {
  color: #fff;
}

.specialXq-1 .page-title {
  margin: 3.4375rem 0 1.875rem;
}

.specialXq-1 .bigSwiper {
  margin-top: 3.75rem;
}

.specialXq-1 .bigSwiper .swiper-slide img {
  display: block;
  width: 100%;
}

.specialXq-1 .bigSwiper .swiper-button-prev,
.specialXq-1 .bigSwiper .swiper-button-next {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all .5s ease-in-out;
}

.specialXq-1 .bigSwiper .swiper-button-prev i,
.specialXq-1 .bigSwiper .swiper-button-next i {
  font-size: var(--font18);
  color: #fff;
}

.specialXq-1 .bigSwiper .swiper-button-prev:hover,
.specialXq-1 .bigSwiper .swiper-button-next:hover {
  background: var(--main-color);
}

.specialXq-1 .bigSwiper .swiper-button-prev::after,
.specialXq-1 .bigSwiper .swiper-button-next::after {
  content: none;
}

.specialXq-1 .smallSwiper {
  height: 7.8125rem;
  margin-top: 2.25rem;
}

.specialXq-1 .smallSwiper .swiper-slide {
  width: 14.0625rem;
  border: solid 1px #dddddd;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.specialXq-1 .smallSwiper .swiper-slide-thumb-active {
  border: solid 1px var(--main-color);
}

.specialXq-2 {
  margin-top: 6.875rem;
}

.specialXq-2 .content {
  margin-top: 2.8125rem;
  font-size: var(--font18);
  line-height: 2.2;
}

.specialXq-3 {
  margin-top: 5.625rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #dddddd;
}

.specialXq-4 {
  margin-top: 4.0625rem;
}

.specialXq-4 .content {
  margin-top: 2.8125rem;
}

.specialXq-4 table {
  width: 100%;
  font-size: var(--font18);
}

.specialXq-4 table tbody {
  width: 100%;
}

.specialXq-4 table tr td {
  padding: .875rem 1.875rem;
}

.specialXq-4 table tr td:first-child {
  text-align: center;
  width: 31.7%;
}

.specialXq-4 table tr:nth-child(odd) td:nth-child(odd) {
  background: #eeeeee;
}

.specialXq-4 table tr:nth-child(odd) td:nth-child(even) {
  background: rgba(238, 238, 238, 0.4);
}

.specialXq-5 {
  margin: 7.1875rem 0 6.25rem;
}

.news .banner .banner-img {
  aspect-ratio: 1920/330;
}

.news .banner .second-navBox {
  bottom: 1.875rem;
}

.news .news-box {
  margin: 8.4375rem 0 6.875rem;
}

.news .news-box .list a {
  align-items: stretch;
  box-shadow: 0px 0px 16px 4px rgba(6, 0, 1, 0.08);
  color: #000;
  transition: all .5s ease-in-out;
}

.news .news-box .list .imgBox {
  width: 24.375rem;
}

.news .news-box .list .imgBox img {
  display: block;
  width: 100%;
  aspect-ratio: 390/260;
  object-fit: cover;
}

.news .news-box .list .textBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3.125rem;
  box-sizing: border-box;
}

.news .news-box .list .textBox .title {
  font-size: var(--font24);
  font-family: Montserrat-Bold;
}

.news .news-box .list .textBox .desc {
  font-size: var(--font18);
  margin: 1.25rem 0 2.1875rem;
  letter-spacing: -1px;
}

.news .news-box .list .textBox .year {
  font-size: var(--font16);
  font-family: Montserrat-Hairline;
}

.news .news-box .list li:not(:last-child) {
  margin-bottom: 2.5rem;
}

.news .news-box .list li:hover a {
  background: var(--main-color);
  color: #fff;
}

.newsXq .breadCrumbs {
  margin: 3.75rem 0 6.5625rem;
}

.newsXq .breadCrumbs a {
  color: #777777;
}

.newsXq-box {
  margin-bottom: 9.0625rem;
}

.newsXq-box .left {
  width: 50rem;
}

.newsXq-box .left .title {
  font-size: var(--font46);
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
  color: #000;
}

.newsXq-box .left .year {
  font-family: Montserrat-Hairline;
  font-size: var(--font16);
  margin: 1.875rem 0;
}

.newsXq-box .left .content {
  font-size: var(--font18);
  line-height: 2;
}

.newsXq-box .left .content img {
  max-width: 100%;
}

.newsXq-box .left .btnBox {
  margin: 4.0625rem 0 4.6875rem;
}

.newsXq-box .left .line {
  width: 100%;
  height: 1px;
  background: #777;
  opacity: .2;
}

.newsXq-box .left .page {
  margin-top: 3.75rem;
}

.newsXq-box .left .page a {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-size: var(--font18);
  color: #000;
  transition: all .3s;
}

.newsXq-box .left .page a i {
  font-size: var(--font14);
  flex-shrink: 0;
}

.newsXq-box .left .page a:hover {
  color: var(--main-color);
}

.newsXq-box .left .page-prev {
  padding-right: 1.25rem;
}

.newsXq-box .left .page-prev i {
  margin-right: .75rem;
}

.newsXq-box .left .page-next {
  padding-left: 1.25rem;
  flex-direction: row-reverse;
}

.newsXq-box .left .page-next i {
  margin-left: .75rem;
}

.newsXq-box .right {
  width: 24.375rem;
}

.newsXq-box .right .related-title {
  font-size: var(--font24);
  font-family: Montserrat-Bold;
}

.newsXq-box .right ul {
  margin-top: 3.4375rem;
}

.newsXq-box .right ul li:not(:last-child) {
  margin-bottom: 3.75rem;
}

.information-box {
  margin: 8.4375rem 0 6.875rem;
}

.information-box .list li {
  box-shadow: 0px 0px 16px 4px rgba(6, 0, 1, 0.08);
  transition: all .5s;
}

.information-box .list li a {
  font-size: var(--font24);
  color: #000;
  padding: 0 3.125rem;
  min-height: 7.5rem;
  transition: all .5s;
}

.information-box .list li a p {
  padding-right: 10px;
}

.information-box .list li .time {
  flex-shrink: 0;
  font-family: Montserrat-Hairline;
  font-size: var(--font16);
}

.information-box .list li:not(:last-child) {
  margin-bottom: 2.5rem;
}

.information-box .list li:hover {
  background: var(--main-color);
}

.information-box .list li:hover a {
  color: #fff;
}

.contact .banner .banner-img {
  aspect-ratio: 1920/250;
}

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

.contact-1 .formBox .form-style {
  background: #eeeeee;
  position: relative;
}

.contact-1 .formBox .form-style input {
  color: #000;
}

.contact-1 .formBox .form-style input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.contact-1 .formBox .form-style span {
  font-size: 14px;
  color: var(--main-color);
  position: absolute;
  right: .9375rem;
  top: 50%;
  transform: translateY(-50%);
}

.contact-2 {
  padding: 9.375rem 0;
}

.contact-2 .page-title {
  text-align: center;
}

.contact-2 .mapList {
  margin-top: 4.375rem;
}

.contact-2 .mapList .item {
  display: flex;
  --itemHeight: 23.75rem;
  height: var(--itemHeight);
}

.contact-2 .mapList .item:not(:last-child) {
  margin-bottom: 3.125rem;
}

.contact-2 .mapList .item .text-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 36.875rem;
  background: #f7f7f7;
  padding-left: 3.125rem;
  box-sizing: border-box;
}

.contact-2 .mapList .item .title {
  font-size: var(--font30);
  font-family: Montserrat-Bold;
}

.contact-2 .mapList .item .desc {
  font-size: var(--font18);
  line-height: 2;
  margin-top: 3.125rem;
  padding-right: 3.125rem;
}

.contact-2 .mapList .item .list {
  margin-top: 1.875rem;
}

.contact-2 .mapList .item .list li {
  display: flex;
  align-items: center;
  font-size: var(--font18);
}

.contact-2 .mapList .item .list li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.contact-2 .mapList .item i {
  color: var(--main-color);
  margin-right: .625rem;
}

.contact-2 .mapList .item .iconList {
  margin-top: 1.875rem;
}

.contact-2 .mapList .item .iconList a {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--main-color);
}

.contact-2 .mapList .item .iconList a i {
  color: #fff;
  margin: auto;
}

.contact-2 .mapList .item .iconList a:not(:last-child) {
  margin-right: 1.875rem;
}

.contact-2 .mapList .item .map-box {
  width: 41.875rem;
  height: 100%;
}

.custom-content-marker {
  position: relative;
  width: 25px;
  height: 34px;
}

.custom-content-marker img {
  width: 100%;
  height: 100%;
}

.webMap .banner .banner-img {
  aspect-ratio: 1920/500;
}

.webMap-box {
  margin: 6.25rem 0;
}

.webMap-box h1 {
  text-align: center;
}

.webMap-box .list {
  margin-top: 3.125rem;
}

.webMap-box .list .item h2 a {
  display: block;
  font-size: var(--font24);
  color: var(--main-color);
  text-align: center;
}

.webMap-box .list .item:not(:last-child) {
  margin-bottom: 1.875rem;
  border-bottom: 1px solid #eeee;
}

.webMap-box .list .item .subList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5625rem;
}

.webMap-box .list .item .subList .subItem {
  width: 33%;
  text-align: center;
  margin-bottom: 1.25rem;
}

.webMap-box .list .item .subList .subItem h3 a {
  font-size: var(--font18);
  color: #000;
  display: inline-block;
}

.webMap-box .list .item .subList .subItem h3 a:hover {
  color: var(--main-color);
}

.searchBox {
  margin: 6.25rem 0;
}

.searchBox-btn .item {
  cursor: pointer;
  font-size: var(--font24);
  color: #000;
}

.searchBox-btn .item:not(:last-child) {
  margin-right: 3.125rem;
}

.searchBox-btn .item.active {
  font-family: Montserrat-Bold;
  color: var(--main-color);
}

.searchBox-table {
  margin-top: 3.125rem;
}

.searchBox-table .table-item {
  display: none;
}

.searchBox-table .table-item .productList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2.5rem 1.25rem;
}

@media (max-width: 640px) {
  .searchBox-table .table-item .productList {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.searchBox-table .table-item .information-box {
  margin: 0;
}

.searchBox-table .table-item.active {
  display: block;
}

.fenye {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  --itemBorder: 50px;
}

.fenye .page-item .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--itemBorder);
  height: var(--itemBorder);
  font-size: 18px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  transition: all .5s ease-in-out;
}

.fenye .page-item.active .page-link {
  background: var(--main-color);
  color: #fff;
}

.fenye .page-item:hover .page-link {
  background: var(--main-color);
  color: #fff;
}

.fenye .page-item:not(:last-child) {
  margin-right: 1.5625rem;
}
