@charset "UTF-8";
/* 公共 */
/**
 * grid布局
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $colGap     行列间隔
*/
/* end 公共 */
/* 页面公共 */
@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");
}

* {
  font-family: Montserrat-Light;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 6.25rem;
  background: #fff;
  z-index: 9999;
}

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

header .pcNav .oneItem {
  position: relative;
  height: 6.25rem;
}

header .pcNav .oneItem > a h2 {
  line-height: 6.25rem;
  font-size: 1.125rem;
  color: #474747;
  font-weight: normal;
}

header .pcNav .oneItem:not(:last-child) {
  margin-right: 3.125rem;
}

header .pcNav .oneItem.active > a h2 {
  color: var(--main-color);
}

header .pcNav .oneItem:hover > a h2 {
  color: var(--main-color);
}

header .pcNav .subItem {
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  box-shadow: 0px 16px 30px 0px rgba(29, 18, 14, 0.3);
  width: 9.6875rem;
  padding: 1.875rem 0;
  text-align: center;
  border-top: 2px solid var(--main-color);
}

header .pcNav .subItem li a {
  font-size: 1.125rem;
  color: #000;
  line-height: 2.2;
}

header .pcNav .subItem li:hover a {
  color: var(--main-color);
}

@media screen and (min-width: 992px) {
  header .pcNav .subItem {
    transform: translate(-50%, -20px);
    opacity: 0;
    transition: all .5s ease-in-out;
    pointer-events: none;
  }
  header .pcNav .oneItem:hover .subItem {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: all;
  }
}

header .langBox {
  margin: 0 4.375rem;
  font-size: 1.25rem;
}

header .langBox a {
  color: #474747;
  font-family: Montserrat-Light;
}

header .searchBox {
  position: relative;
  background: #fff;
}

header .searchBox i {
  font-size: 1.375rem;
  cursor: pointer;
}

header .searchBox .searchBox-content {
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, 0);
  background: #fff;
  min-width: 6.25rem;
  box-shadow: 0px 0px 5px 2px rgba(24, 119, 73, 0.1);
  padding: .625rem .9375rem;
  border-radius: 1.5625rem;
  display: none;
}

header .searchBox .searchBox-content input {
  display: block;
  border: 0;
  font-size: 14px;
  color: #000;
}

footer {
  background: var(--main-color);
  padding: 5rem 0 1.875rem;
}

footer .f-top .left {
  width: 26.875rem;
}

footer .f-top .left .f-logo {
  display: block;
  width: 15.3125rem;
}

footer .f-top .left .textList {
  color: #fff;
  font-size: 1rem;
  margin-top: 2.8125rem;
  line-height: 2.25;
}

footer .f-top .left .textList span {
  font-family: Montserrat-Bold;
}

footer .f-top .right ul li a {
  display: block;
  color: #fff;
}

footer .f-top .right ul li a:not(:last-child) {
  margin-bottom: 1rem;
}

footer .f-top .right ul li a > h2 {
  font-size: 1.25rem;
  font-family: Montserrat-Bold;
  margin-bottom: 3.125rem;
}

footer .f-top .right ul li a > h3 {
  font-size: 1rem;
  opacity: .7;
  letter-spacing: 0px;
  transition: opacity .5s ease-in-out;
  font-weight: normal;
}

footer .f-top .right ul li a > h3:hover {
  opacity: 1;
}

footer .f-top .right ul li:not(:last-child) {
  margin-right: 3.75rem;
}

footer .f-bot {
  margin-top: 3.4375rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-family: Montserrat-Hairline;
}

footer .f-bot .bq a {
  margin-left: .625rem;
}

footer .f-bot a {
  color: rgba(255, 255, 255, 0.5);
}

footer .f-bot .linkList a:not(:last-child) {
  margin-right: 1.875rem;
}

main {
  margin-top: 6.25rem;
}

@media screen and (max-width: 992px) {
  main {
    margin-top: 60px;
  }
}

.moreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.875rem;
  height: 3.125rem;
  background: var(--main-color);
  color: #fff;
  font-size: 1.25rem;
  border-radius: 1.5625rem;
  transition: 0.5s;
}

.moreBtn span {
  font-family: Montserrat-Bold;
  position: relative;
  transition: 0.5s;
}

.moreBtn span:after {
  content: '>';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -0.9375rem;
  transition: 0.5s;
}

.moreBtn:hover {
  color: #fff;
}

.moreBtn:hover span {
  padding-right: 15px;
}

.moreBtn:hover span::after {
  opacity: 1;
  right: 0;
}

.moreBtn.whiteBtn {
  background: #fff;
  color: var(--main-color);
}

.moreBtn.whiteBtn:hover {
  color: var(--main-color);
}

.i-title {
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
  color: #000000;
  line-height: 1;
  font-size: 3.125rem;
}

@media screen and (max-width: 992px) {
  .i-title {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .i-title {
    font-size: 30px;
  }
}

.i-title.mainColor {
  color: var(--main-color);
}

.banner {
  height: 25rem;
  position: relative;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner h1 {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 4.125rem;
}

@media screen and (max-width: 992px) {
  .banner h1 {
    font-size: 2.75rem;
  }
}

.bredCrumbs {
  position: absolute;
  bottom: 13.75%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.bredCrumbs a {
  font-size: 1rem;
  color: #fff;
  font-weight: 100;
  display: flex;
}

@media screen and (max-width: 992px) {
  .bredCrumbs a {
    font-size: 14px;
  }
}

.btn {
  width: 11.875rem;
  height: 3.125rem;
  display: flex;
  font-size: 1.25rem;
  color: var(--main-color);
  background: #f4f4f4;
  border-radius: 1.5625rem;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn span {
  margin: auto;
}

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

.btn.active {
  color: #fff;
  background: var(--main-color);
}

.product2 .product2-2 .list .item.animate-in-left::after, .product2 .product2-2 .list .item.animate-in-right::after, .product2 .product2-2 .list .item.animate-out-left::after, .product2 .product2-2 .list .item.animate-out-right::after {
  transition: width 0.4s ease-in-out;
}

.product2 .product2-2 .list .item.animate-in-top::after, .product2 .product2-2 .list .item.animate-in-bottom::after, .product2 .product2-2 .list .item.animate-out-top::after, .product2 .product2-2 .list .item.animate-out-bottom::after {
  transition: height 0.4s ease-in-out;
}

.newsList li a {
  display: block;
  width: 100%;
}

.newsList li .imgBox {
  position: relative;
  padding-top: 69.56%;
}

.newsList li .imgBox .imgPos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.875rem;
  z-index: 1;
}

.newsList li .imgBox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-15deg) scale(0.8);
  width: 100%;
  height: calc(100% + 2.5rem);
  background-image: url(../images/newsBg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0;
  transition: transform .5s ease-in-out, opacity .5s ease-in-out;
}

.newsList li .textBox {
  margin-top: 1.875rem;
}

.newsList li .textBox .title {
  color: #474747;
  transition: all .5s ease;
}

.newsList li .textBox .time {
  margin-top: 1.25rem;
  color: #777777;
  transition: all .5s ease;
}

.newsList li:hover .imgBox::after {
  z-index: 2;
  opacity: 1;
  transform: translateY(-50%) rotate(0deg) scale(1);
}

.newsList li:hover .title {
  color: var(--text-hover-color);
  font-family: Montserrat-Bold;
}

.newsList li:hover .time {
  color: var(--text-hover-color);
}

@keyframes boderM {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* end页面公共 */
.home .i-banner {
  height: calc(100vh - 6.25rem);
  --swiper-navigation-size: 20px;
  --swiper-navigation-color: #fff;
}

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

.home .i-banner .bannerText {
  position: absolute;
  top: 16.25rem;
  left: 0;
  width: 100%;
  z-index: 50;
}

.home .i-banner .bannerText .title {
  text-align: center;
  color: #fff;
  font-family: Montserrat-Bold;
  letter-spacing: -0.1875rem;
  line-height: 1;
  font-weight: bold;
  font-size: 4.125rem;
}

@media screen and (max-width: 992px) {
  .home .i-banner .bannerText .title {
    font-size: 2.75rem;
  }
}

.home .i-banner .bannerText .moreBtn {
  margin: 7.5rem auto 0;
}

.home .i-banner .swiper-button-next,
.home .i-banner .swiper-button-prev {
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home .i-banner .swiper-button-prev {
  left: 3.4375rem;
}

.home .i-banner .swiper-button-next {
  right: 3.4375rem;
}

.home .i-about {
  padding-top: 7.5rem;
}

.home .i-about .i-title {
  text-align: center;
}

.home .i-about .iAboutDesc {
  margin-top: 2.8125rem;
  letter-spacing: .0625rem;
  color: #000;
  text-align: center;
}

.home .i-about .aboutSwiperBox {
  position: relative;
}

.home .i-about .aboutSwiper {
  margin-top: 5.625rem;
}

.home .i-about .aboutSwiper .swiper-slide {
  display: flex;
  justify-content: space-between;
}

.home .i-about .aboutSwiper .left {
  width: 43.75rem;
  padding-left: 3.125rem;
  margin-top: 4.375rem;
}

.home .i-about .aboutSwiper .left .title {
  font-size: 2.0625rem;
  font-family: Montserrat-Bold;
  color: #000;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .home .i-about .aboutSwiper .left .title {
    font-size: 1.6875rem;
  }
}

.home .i-about .aboutSwiper .left .desc {
  margin-top: 2.8125rem;
}

.home .i-about .aboutSwiper .left .moreBtn {
  margin-top: 5rem;
}

.home .i-about .aboutSwiper .right {
  width: 50%;
  position: relative;
}

.home .i-about .aboutSwiper .right .imgBox {
  width: 37.5rem;
  position: relative;
}

.home .i-about .aboutSwiper .right .bigImg {
  display: block;
  width: 100%;
}

.home .i-about .aboutSwiper .right .smallImg {
  display: block;
  width: 25.625rem;
  margin-left: auto;
  position: relative;
  right: -13.125rem;
  top: -5.9375rem;
}

.home .i-about .iAboutNav {
  position: absolute;
  left: 3.125rem;
  bottom: 5.9375rem;
  z-index: 20;
}

.home .i-about .iAboutNav li {
  color: #474747;
  transition: all .5s ease;
  cursor: pointer;
}

.home .i-about .iAboutNav li:not(:last-child) {
  margin-right: 2.1875rem;
}

.home .i-about .iAboutNav li:hover {
  color: var(--main-color);
  font-family: Montserrat-Bold;
}

.home .i-about .iAboutNav li.active {
  color: var(--main-color);
  font-family: Montserrat-Bold;
}

.home .i-social {
  margin-top: 5.9375rem;
}

.home .i-social .swiperBox {
  position: relative;
}

.home .i-social .iSocialSwiper {
  margin-top: 3.125rem;
  height: 51.25rem;
  position: relative;
}

.home .i-social .iSocialSwiper .swiper-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home .i-social .iSocialSwiper .textBox {
  padding-top: 12.1875rem;
}

.home .i-social .iSocialSwiper .textBox .i-title {
  color: #fff;
}

.home .i-social .iSocialSwiper .textBox .desc {
  margin: 2.8125rem auto 0;
  line-height: 1.9;
  width: 65rem;
  color: #fff;
}

.home .i-social .iSocialSwiper .textBox .moreBtn {
  margin: 4.0625rem auto 0;
}

.home .i-social .swiperBtn {
  position: absolute;
  left: 0;
  bottom: 6.25rem;
  z-index: 20;
  width: 100%;
}

.home .i-social .swiperBtn .item {
  color: #fff;
  font-size: 1.875rem;
  width: 25rem;
  position: relative;
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.5);
  transition: color .5s ease;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .home .i-social .swiperBtn .item {
    font-size: 20px;
  }
}

.home .i-social .swiperBtn .item:not(:last-child) {
  margin-right: 5rem;
}

.home .i-social .swiperBtn .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 0;
  height: 4px;
  background: #fff;
  transition: width 1s ease;
}

.home .i-social .swiperBtn .item:hover {
  color: #fff;
}

.home .i-social .swiperBtn .item:hover::after {
  width: 100%;
}

.home .i-social .swiperBtn .item.active {
  color: #fff;
}

.home .i-social .swiperBtn .item.active::after {
  width: 100%;
}

.home .i-cert {
  background: #f9ffee;
  padding: 7.1875rem 0 8.4375rem;
}

.home .i-cert ul {
  margin-top: 3.4375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 5rem 5rem;
}

@media (max-width: 992px) {
  .home .i-cert ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .home .i-cert ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.home .i-cert ul li {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.home .i-cert ul img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.home .i-news {
  padding-top: 6.5625rem;
  padding-bottom: 8.75rem;
}

.home .i-news .newsList {
  margin: 5.625rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 0 3.75rem;
}

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

.home .i-news .newsList li:nth-child(2) {
  margin-top: 5rem;
}

.home .i-news .newsList li:nth-child(3) {
  margin-top: -2.5rem;
}

.home .i-news .moreBtn {
  margin: 3.75rem auto 0;
}

.home .i-brand {
  padding-bottom: 7.8125rem;
}

.home .i-brand .iBrandBox {
  position: relative;
  margin-top: 6.25rem;
}

.home .i-brand .iBrandBox .box {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.home .i-brand .iBrandBox .swiper {
  padding: 10px;
}

.home .i-brand .iBrandBox .swiper-slide .bgImg {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  animation: aniRotate 7s linear infinite;
}

.home .i-brand .iBrandBox .swiper-slide .brandImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 80%;
  max-height: 80%;
  filter: grayscale(1) brightness(1000%);
}

.home .i-brand .iBrandBox .swiper-slide.swiper-slide-next .bgImg {
  animation: aniRotate 8s linear infinite;
}

.home .i-brand .iBrandBox .swiper-slide:hover .bgImg {
  animation-play-state: paused;
}

.home .i-brand .swiperBtn {
  margin-top: 4.6875rem;
  position: relative;
  z-index: 50;
}

.home .i-brand .swiperBtn .swiper-button-next,
.home .i-brand .swiperBtn .swiper-button-prev {
  position: relative;
  margin-top: unset;
  left: unset;
  right: unset;
  top: unset;
  width: 3.75rem;
  height: 3.75rem;
  background: var(--main-color);
  transition: background .5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .i-brand .swiperBtn .swiper-button-next::after,
.home .i-brand .swiperBtn .swiper-button-prev::after {
  content: none;
}

.home .i-brand .swiperBtn .swiper-button-next:hover,
.home .i-brand .swiperBtn .swiper-button-prev:hover {
  background: var(--btn-hover-color);
}

.home .i-brand .swiperBtn .swiper-button-next .bi,
.home .i-brand .swiperBtn .swiper-button-prev .bi {
  font-size: 1.125rem;
  color: #fff;
}

.home .i-brand .swiperBtn .swiper-button-next {
  border-radius: 1.5625rem 0px 1.5625rem 0px;
}

.home .i-brand .swiperBtn .swiper-button-prev {
  border-radius: 0px 1.5625rem 0px 1.5625rem;
  margin-right: 3.125rem;
}

.home .i-brand svg {
  width: 100%;
  opacity: 1;
  transform: translate3d(0, 7vw, 0);
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  backface-visibility: hidden;
}

.home .i-brand .wave {
  animation: wave 3s linear;
  animation-iteration-count: infinite;
  stroke: #e6e6e6;
  stroke-width: 0.1px;
  fill: transparent;
}

.home .i-brand .wave#wave1 {
  animation-duration: 5s;
  animation-direction: reverse;
  opacity: .3;
}

.home .i-brand .wave#wave2 {
  animation-duration: 7s;
  animation-direction: reverse;
  opacity: .3;
}

.home .i-brand .wave#wave3 {
  animation-duration: 9s;
  opacity: 0.3;
}

@keyframes wave {
  100% {
    transform: translateX(-100%);
  }
}

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

.about .about-1 {
  padding: 10rem 0;
}

.about .about-1 .row:nth-child(odd) {
  margin-bottom: 5.625rem;
}

.about .about-1 .row:nth-child(odd) .textBox {
  padding-right: 3.125rem;
}

.about .about-1 .row:nth-child(even) .textBox {
  order: 2;
  padding-left: 3.125rem;
}

.about .about-1 .textBox {
  width: 50%;
  box-sizing: border-box;
}

.about .about-1 .textBox .content {
  margin-top: 3.75rem;
  text-align: justify;
  text-align-last: left;
  line-height: 2.1;
}

.about .about-1 .imgBox {
  width: 50%;
  position: relative;
}

.about .about-1 .imgBox .imgPos {
  padding-top: 56.27%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about .about-1 .imgBox .playBtn {
  display: block;
  width: 5rem;
  cursor: pointer;
}

.about .about-2 {
  background: #f7ffe9;
  padding: 6.25rem 0 10rem;
}

.about .about-2 ul {
  margin-top: 3.125rem;
  gap: 1.25rem;
}

.about .about-2 ul li {
  flex: 1;
  background: #000;
  position: relative;
  padding-top: 34.67%;
}

.about .about-2 ul li .imgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.about .about-2 ul li .textBox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
}

.about .about-2 ul li .textBox h3 {
  font-size: 2.25rem;
}

@media screen and (max-width: 992px) {
  .about .about-2 ul li .textBox h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .about .about-2 ul li .textBox h3 {
    font-size: 24px;
  }
}

.about .about-2 ul li .textBox p {
  margin: 1.875rem 0;
  font-weight: 100;
  display: none;
}

.about .about-2 ul li .textBox .icon {
  display: block;
  width: 3.125rem;
  margin: 0 auto;
  display: none;
}

.history .historyBox {
  overflow: hidden;
}

.history .historyBox .list {
  position: relative;
  margin: 8.75rem 0;
}

.history .historyBox .list .item {
  align-items: center;
}

.history .historyBox .list .item .textBox {
  width: 50%;
  position: relative;
}

.history .historyBox .list .item .textBox .text {
  position: relative;
  width: 80%;
  height: 100%;
  line-height: 1.8;
  text-align: justify;
  text-align-last: left;
}

.history .historyBox .list .item .leafBox {
  width: 17.5rem;
  position: relative;
}

.history .historyBox .list .item .leafBox img {
  display: block;
  width: 100%;
  transition: all .5s ease-in-out;
}

.history .historyBox .list .item .leafBox .preImg {
  position: relative;
  z-index: 2;
}

.history .historyBox .list .item .leafBox .activeImg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.history .historyBox .list .item .leafBox p {
  width: 100%;
  text-align: center;
  font-family: Montserrat-Bold;
  letter-spacing: -1px;
  color: var(--main-color);
  font-size: 3.75rem;
  z-index: 3;
}

@media screen and (max-width: 992px) {
  .history .historyBox .list .item .leafBox p {
    font-size: 2.5rem;
  }
}

.history .historyBox .list .item .leafBox::after {
  content: "";
  position: absolute;
  top: 85%;
  left: -4px;
  width: 3.75rem;
  height: 22.9375rem;
  background: url(../images/history-1-bg.png) no-repeat center;
  background-size: contain;
}

.history .historyBox .list .item:nth-child(even) {
  flex-direction: row-reverse;
}

.history .historyBox .list .item:nth-child(even) .text {
  margin-left: auto;
  margin-right: 5%;
}

.history .historyBox .list .item:nth-child(even) .leafBox::after {
  content: "";
  position: absolute;
  top: 85%;
  left: unset;
  right: -6px;
  width: 3.75rem;
  height: 22.9375rem;
  background: url(../images/history-2-bg.png) no-repeat center;
  background-size: contain;
}

.history .historyBox .list .item:nth-child(even) .optiscroll-v {
  right: 0;
}

.history .historyBox .list .item:not(:last-child) {
  margin-bottom: 7.5rem;
}

.history .historyBox .list .item.active .textBox .text {
  color: var(--main-color);
  font-weight: bold;
}

.history .historyBox .list .item.active .leafBox .preImg {
  opacity: 0;
}

.history .historyBox .list .item.active .leafBox .activeImg {
  opacity: 1;
}

.history .historyBox .list .item.active .leafBox p {
  color: #fff;
}

.history .historyBox2 {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6.25rem;
}

.history .historyBox2 .swiper-box {
  position: relative;
}

.history .historyBox2 .img-box {
  position: relative;
}

.history .historyBox2 .img-box img {
  display: block;
  width: 100%;
}

.history .historyBox2 .img-box .leaf-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 2;
}

.history .historyBox2 .img-box .year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  font-family: Montserrat-Bold;
  font-size: 3.125rem;
  color: var(--main-color);
}

@media screen and (max-width: 992px) {
  .history .historyBox2 .img-box .year {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .history .historyBox2 .img-box .year {
    font-size: 30px;
  }
}

.history .historyBox2 .swiper1 {
  margin-right: 10rem;
  overflow: visible;
}

.history .historyBox2 .swiper1 .swiper-slide-prev {
  opacity: 0;
}

.history .historyBox2 .swiper2 {
  opacity: 0;
  pointer-events: none;
}

.history .historyBox2 .swiper-slide {
  direction: ltr;
}

.history .historyBox2 .swiper-slide[class="swiper-slide"]:first-child {
  opacity: 0;
}

.history .historyBox2 .swiper-slide .img-box:nth-child(2) {
  position: relative;
  top: .1625rem;
  margin-top: 3.75rem;
}

.history .historyBox2 .swiper-slide .img-box:nth-child(3) {
  position: relative;
  top: -0.1563rem;
  margin-bottom: 3.75rem;
}

.history .historyBox2 .swiper-slide .img-box:nth-child(3) img {
  transform: rotateX(180deg);
}

.history .historyBox2 .swiper-slide:nth-child(odd) .text-box:nth-child(1) {
  opacity: 0;
}

.history .historyBox2 .swiper-slide:nth-child(odd) .img-box:nth-child(2) {
  opacity: 0;
}

.history .historyBox2 .swiper-slide:nth-child(even) .img-box:nth-child(3) {
  opacity: 0;
}

.history .historyBox2 .swiper-slide:nth-child(even) .text-box:nth-child(4) {
  opacity: 0;
}

.history .historyBox2 .swiper-slide-thumb-active .img-box .leaf-full {
  opacity: 1;
}

.history .historyBox2 .swiper-slide-thumb-active .img-box .year {
  color: #fff;
}

.history .historyBox2 .swiper-slide-thumb-active .text-box {
  color: var(--main-color);
  font-weight: bold;
}

.history .historyBox2 .text-box {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000;
  width: 18.75rem;
  min-height: 5.4375rem;
  text-align: left;
  direction: ltr;
}

.history .historyBox2 .line {
  width: 100vw;
  height: .375rem;
  background-color: #006234;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: -1;
}

.history .historyBox2 .swiperBtn {
  margin-top: 7.5rem;
  position: relative;
  z-index: 50;
}

.history .historyBox2 .swiperBtn .swiper-button-next,
.history .historyBox2 .swiperBtn .swiper-button-prev {
  position: relative;
  margin-top: unset;
  left: unset;
  right: unset;
  top: unset;
  width: 3.75rem;
  height: 3.75rem;
  background: var(--main-color);
  transition: background .5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.history .historyBox2 .swiperBtn .swiper-button-next::after,
.history .historyBox2 .swiperBtn .swiper-button-prev::after {
  content: none;
}

.history .historyBox2 .swiperBtn .swiper-button-next:hover,
.history .historyBox2 .swiperBtn .swiper-button-prev:hover {
  background: var(--btn-hover-color);
}

.history .historyBox2 .swiperBtn .swiper-button-next .bi,
.history .historyBox2 .swiperBtn .swiper-button-prev .bi {
  font-size: 1.125rem;
  color: #fff;
}

.history .historyBox2 .swiperBtn .swiper-button-next {
  border-radius: 1.5625rem 0px 1.5625rem 0px;
}

.history .historyBox2 .swiperBtn .swiper-button-prev {
  border-radius: 0px 1.5625rem 0px 1.5625rem;
  margin-right: 3.125rem;
}

.honor .honor-1 {
  padding: 5.625rem 0 4.375rem;
}

.honor .honor-1 .btnList {
  gap: 2.5rem;
}

.honor .honor-1 .honor-1-box {
  height: 41.25rem;
  margin-top: 3.4375rem;
}

.honor .honor-1 .honor-1-box .box-left {
  width: 26.67%;
  background: #f6f7f5;
  padding-left: 5rem;
  box-sizing: border-box;
}

.honor .honor-1 .honor-1-box .box-left .item .num {
  font-weight: bold;
  font-size: 3.125rem;
  color: var(--main-color);
  font-family: Montserrat-Bold;
}

@media screen and (max-width: 992px) {
  .honor .honor-1 .honor-1-box .box-left .item .num {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .honor .honor-1 .honor-1-box .box-left .item .num {
    font-size: 30px;
  }
}

.honor .honor-1 .honor-1-box .box-left .item:not(:last-child) {
  margin-bottom: 6.25rem;
}

.honor .honor-1 .honor-1-box .box-right {
  width: 73.33%;
  position: relative;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.honor .honor-1 .honor-1-box .box-right img {
  display: block;
  width: 95%;
  margin: auto;
}

.honor .honor-2 {
  height: 47.5rem;
  background-color: var(--main-color);
  border-radius: 25rem 0px 25rem 0px;
  color: #fff;
  position: relative;
  margin-bottom: 6.5625rem;
}

.honor .honor-2 .w1500 {
  position: relative;
  z-index: 3;
}

.honor .honor-2 .left {
  width: 50%;
  padding-left: 5rem;
  box-sizing: border-box;
}

.honor .honor-2 .left .title {
  font-size: 3.125rem;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 992px) {
  .honor .honor-2 .left .title {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .honor .honor-2 .left .title {
    font-size: 30px;
  }
}

.honor .honor-2 .left p {
  line-height: 2.3;
}

.honor .honor-2 .left .swiper-btn {
  display: flex;
  margin-top: 7.5rem;
}

.honor .honor-2 .left .swiper-btn .swiper-button-next,
.honor .honor-2 .left .swiper-btn .swiper-button-prev {
  display: block !important;
  position: relative;
  top: unset;
  left: unset;
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  background: #68a730;
  opacity: 1;
  color: #fff;
  text-align: center;
  margin-top: 0;
}

.honor .honor-2 .left .swiper-btn .swiper-button-next .bi,
.honor .honor-2 .left .swiper-btn .swiper-button-prev .bi {
  font-size: 1.5625rem;
}

.honor .honor-2 .left .swiper-btn .swiper-button-next:after,
.honor .honor-2 .left .swiper-btn .swiper-button-prev:after {
  content: none;
}

.honor .honor-2 .left .swiper-btn .swiper-button-next:hover,
.honor .honor-2 .left .swiper-btn .swiper-button-prev:hover {
  background: #fff;
  color: var(--main-color);
}

.honor .honor-2 .left .swiper-btn .swiper-button-prev {
  border-radius: 0px 1.5625rem 0px 1.5625rem;
  margin-right: 3.125rem;
}

.honor .honor-2 .left .swiper-btn .swiper-button-next {
  border-radius: 1.5625rem 0px 1.5625rem 0px;
}

.honor .honor-2 .right {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.honor .honor-2 .right .swiper-box {
  width: 35rem;
}

.honor .honor-2 .right .rightSwiper {
  width: 25.75rem;
  margin: 0 auto;
  position: relative;
  top: .625rem;
}

.honor .honor-2 .right .rightSwiper .swiper-slide img {
  display: block;
  width: 100%;
}

.honor .honor-2 .right .bgImg {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.honor .honor-2 .bg {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  z-index: 2;
}

.honor .honor-3 {
  height: 59.375rem;
  background: var(--main-color);
  border-radius: 18.75rem 0px 18.75rem 0px;
  position: relative;
}

.honor .honor-3 .bg {
  display: block;
  width: 100%;
}

.honor .honor-3 .w1500 {
  overflow: hidden;
}

.honor .honor-3 .swiper {
  width: 100%;
  text-align: center;
  overflow: visible;
  top: .5625rem;
}

.honor .honor-3 .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 11.25rem;
}

.honor .honor-3 .swiper .swiper-slide .honor3Img {
  margin: 2.1875rem 0 0;
}

.honor .honor-3 .swiper .swiper-slide-active .honor3Img {
  margin: 2.1875rem auto 0;
}

.honor .honor-3 .swiper .swiper-slide-next {
  top: 0;
}

.honor .honor-3 .swiper .swiper-slide-next .honor3Img {
  margin: 2.1875rem auto 0;
}

.honor .honor-3 .swiper .honor3Img {
  display: block;
  width: 22.25rem;
  margin: auto 0;
}

.honor .honor-3 .swiper .title {
  display: inline-block;
  color: #fff;
  padding: .625rem 1.875rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.16);
  margin: 0 auto;
}

.honor .honor-3 .swiper-button-next,
.honor .honor-3 .swiper-button-prev {
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  background: #68a730;
  opacity: 1;
  color: #fff;
  text-align: center;
  margin-top: 0;
}

.honor .honor-3 .swiper-button-next .bi,
.honor .honor-3 .swiper-button-prev .bi {
  font-size: 1.5625rem;
}

.honor .honor-3 .swiper-button-next:after,
.honor .honor-3 .swiper-button-prev:after {
  content: none;
}

.honor .honor-3 .swiper-button-next:hover,
.honor .honor-3 .swiper-button-prev:hover {
  background: #fff;
  color: var(--main-color);
}

.honor .honor-3 .swiper-button-prev {
  border-radius: 0px 1.5625rem 0px 1.5625rem;
  left: 8.33%;
}

.honor .honor-3 .swiper-button-next {
  border-radius: 1.5625rem 0px 1.5625rem 0px;
  right: 8.33%;
}

.honor2 .honor-1 {
  padding: 5.625rem 0 3.75rem;
}

.authority .authority-box {
  background: #f9ffee;
  padding: 9.375rem 0 11.25rem;
}

.authority .authority-box .content {
  line-height: 2.1;
}

.authority .authority-box ul {
  margin-top: 9.0625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 5rem 5rem;
}

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

@media (max-width: 640px) {
  .authority .authority-box ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.authority .authority-box ul li {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.authority .authority-box ul img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.join .join-1 {
  padding: 6.5625rem 0 10rem;
}

.join .join-1 .list li {
  padding: 0 6.875rem;
}

.join .join-1 .list li.head {
  background: var(--main-color);
}

.join .join-1 .list li.head .textItem {
  color: #fff;
}

.join .join-1 .list li .textItem {
  height: 6.25rem;
}

.join .join-1 .list li .textItem .item {
  width: calc((100% - 1.875rem)/3);
  height: 100%;
  display: flex;
  padding-right: .625rem;
}

.join .join-1 .list li .textItem .item span {
  margin: auto 0;
}

.join .join-1 .list li .textItem .item-cir {
  width: 1.875rem;
  display: flex;
}

.join .join-1 .list li .textItem .item-cir .iconfont {
  margin: auto;
  font-size: 1.875rem;
  color: var(--main-color);
}

.join .join-1 .list li .contentItem {
  border-top: 1px solid rgba(24, 119, 73, 0.1);
  padding: 3.125rem 0 4.6875rem;
  color: #222;
  line-height: 1.8;
  display: none;
}

.join .join-1 .list li .contentItem .title {
  color: #68a730;
  font-weight: bold;
}

.join .join-1 .list li:nth-child(even) {
  background: #f1f7f4;
}

.join .join-1 .list li:not(:first-child) {
  cursor: pointer;
}

.product2 {
  overflow: hidden;
}

.product2 .product2-1 {
  padding: 8.125rem 0 6.5625rem;
}

.product2 .product2-1 .product2-1-box {
  margin-top: 3.75rem;
}

.product2 .product2-1 .textBox {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product2 .product2-1 .textBox .content {
  margin-top: 6.25rem;
  padding-right: 8.125rem;
  line-height: 2.1;
}

.product2 .product2-1 .imgBox {
  width: 50%;
  position: relative;
}

.product2 .product2-1 .imgBox img {
  display: block;
  width: 100%;
}

.product2 .product2-2 {
  padding-bottom: 7.8125rem;
}

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

@media (max-width: 640px) {
  .product2 .product2-2 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.product2 .product2-2 .list .item {
  display: flex;
  align-items: center;
  height: 25rem;
  position: relative;
  background: #f9f9f9;
  z-index: 2;
}

.product2 .product2-2 .list .item .text {
  width: 100%;
  position: relative;
  z-index: 2;
}

.product2 .product2-2 .list .item .title {
  color: var(--main-color);
  text-align: center;
  line-height: 1.6;
  font-size: 2.25rem;
}

@media screen and (max-width: 992px) {
  .product2 .product2-2 .list .item .title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .product2 .product2-2 .list .item .title {
    font-size: 24px;
  }
}

.product2 .product2-2 .list .item .more {
  color: var(--main-color);
  text-align: center;
  margin-top: 4.375rem;
  font-weight: bold;
}

.product2 .product2-2 .list .item .iconfont {
  font-size: 1.25rem;
  color: var(--main-color);
}

.product2 .product2-2 .list .item::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  background: var(--main-color);
  z-index: 1;
}

.product2 .product2-2 .list .item.animate-in-left::after {
  left: 0;
  width: 100%;
  height: 100%;
}

.product2 .product2-2 .list .item.animate-in-right::after {
  right: 0;
  width: 100%;
  height: 100%;
}

.product2 .product2-2 .list .item.animate-in-top::after {
  top: 0;
  width: 100%;
  height: 100%;
}

.product2 .product2-2 .list .item.animate-in-bottom::after {
  top: unset;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.product2 .product2-2 .list .item.animate-out-left::after {
  left: 0;
  width: 0;
}

.product2 .product2-2 .list .item.animate-out-right::after {
  left: unset;
  right: 0;
  width: 0;
}

.product2 .product2-2 .list .item.animate-out-top::after {
  bottom: unset;
  top: 0;
  height: 0;
}

.product2 .product2-2 .list .item.animate-out-bottom::after {
  top: unset;
  bottom: 0;
  height: 0;
}

.product2 .product2-2 .list .item.active .title,
.product2 .product2-2 .list .item.active .more,
.product2 .product2-2 .list .item.active .iconfont {
  color: #fff;
}

.productXq .productXq-1 {
  padding-top: 7.5rem;
}

.productXq .productXq-1 .iconBox {
  margin-top: 4.375rem;
}

.productXq .productXq-1 .iconBox img {
  display: block;
  width: 9.0625rem;
  margin: 0 auto;
}

.productXq .productXq-1 .iconBox p {
  margin-top: 1.875rem;
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
  font-size: 2.25rem;
}

@media screen and (max-width: 992px) {
  .productXq .productXq-1 .iconBox p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .productXq .productXq-1 .iconBox p {
    font-size: 24px;
  }
}

.productXq .productXq-1 .xq {
  margin-top: 1.875rem;
  line-height: 1.8;
  color: var(--main-color);
  font-size: 1.875rem;
}

@media screen and (max-width: 992px) {
  .productXq .productXq-1 .xq {
    font-size: 20px;
  }
}

.productXq .productXq-1 .content {
  margin-top: 1.5625rem;
}

.productXq .productXq-1 .content img {
  max-width: 100%;
}

.productXq .productXq-1 .content table {
  width: 100%;
  border-spacing: 0;
  text-align: center;
  border-bottom: 6px solid var(--main-color);
}

.productXq .productXq-1 .content table .firstRow {
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  background: var(--main-color);
}

.productXq .productXq-1 .content table .firstRow td {
  border-bottom: 1px solid #86b59e;
  height: 2.6875rem;
}

.productXq .productXq-1 .content table td {
  border-right: 1px solid #86b59e;
  font-size: 1.125rem;
}

.productXq .productXq-1 .content table tr:not(.firstRow) {
  height: 5.625rem;
}

.productXq .productXq-1 .content table tr:not(.firstRow) td:first-child {
  color: var(--main-color);
  font-weight: bold;
}

.productXq .productXq-1 .content table tr:not(.firstRow):nth-child(even) {
  background-color: #f4f4f4;
}

.productXq .productXq-1 .content table tr:first-child td:first-child {
  border-top-left-radius: 1.25rem;
}

.productXq .productXq-1 .content table tr:first-child td:last-child {
  border-top-right-radius: 1.25rem;
}

.productXq .productXq-1 .moreBtn {
  margin: 3.75rem auto 0;
}

.productXq .product2 {
  margin-top: 5.9375rem;
}

.productXq .product2 .product2-2 {
  padding-bottom: 5rem;
}

.productXq .product2 .moreBtn {
  margin: 3.4375rem auto 0;
}

.product .product-1 {
  padding: 5.625rem 0 11.25rem;
}

.product .product-1 .btnList {
  margin-bottom: 3.4375rem;
}

.product .product-1 .btnList .btn:not(:last-child) {
  margin-right: 2.5rem;
}

.product .product-1 .subBtnList {
  margin-bottom: 3.4375rem;
}

.product .product-1 .subBtnList p {
  font-size: 20px;
  color: var(--main-color);
}

.product .product-1 .subBtnList p:not(:last-child) {
  margin-right: 20px;
}

.product .product-1 .product-1-box .product-title {
  font-size: 2.875rem;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
}

@media screen and (max-width: 992px) {
  .product .product-1 .product-1-box .product-title {
    font-size: 1.875rem;
  }
}

.product .product-1 .product-1-box .list {
  margin-top: 2.8125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 5rem 5.625rem;
}

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

.product .product-1 .product-1-box .list .item a {
  display: block;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}

.product .product-1 .product-1-box .list .item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 119, 73, 0.85);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product .product-1 .product-1-box .list .item .logoImg {
  display: block;
  max-width: 90%;
  max-height: 80%;
  margin: 0 auto;
  z-index: 3;
}

.product .product-1 .product-1-box .list .item p {
  position: absolute;
  left: 0;
  bottom: 3.75rem;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}

.product .product-1 .product-1-box .list .item p .iconfont {
  font-size: 1.25rem;
  color: #fff;
}

.product .product-1 .product-1-box .list .item .bgImg {
  display: block;
  width: 100%;
  aspect-ratio: 44/27;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product .product-1 .product-1-box .list .item:hover a {
  border-radius: 1.875rem;
}

.product .product-1 .product-1-box .list .item:hover a:after {
  opacity: 1;
}

.product .product-1 .product-1-box .list .item:hover .logoImg {
  filter: grayscale(1) brightness(500%);
  transform: translate(-50%, -75%) scale(0.9);
}

.product .product-1 .product-1-box .list .item:hover p {
  opacity: 1;
}

.product .product-1 .product-1-box .list .item:only-child {
  grid-column: 2;
  justify-self: center;
}

.product .product-1 .product-1-box:not(:last-child) {
  margin-bottom: 5.625rem;
}

.product .product-broker .w1500 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 3.125rem 3.125rem;
}

@media (max-width: 768px) {
  .product .product-broker .w1500 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.product .product-broker .product-1-box {
  margin-bottom: 0;
}

.product .product-broker .product-1-box .list {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.product .product-broker .product-1-box .list .item:only-child {
  grid-column: 1;
}

@media screen and (max-width: 640px) {
  .product .product-broker .product-1-box .list .item:only-child {
    grid-column: 1;
  }
}

.product .product-broker .product-1-box .list .item:hover a::after,
.product .product-broker .product-1-box .list .item:hover p {
  opacity: 0;
}

@media screen and (max-width: 640px) {
  .product .product-broker .product-1-box .list {
    width: 100%;
  }
}

.product .product-brokerList .w1500 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem 1.5625rem;
}

@media (max-width: 992px) {
  .product .product-brokerList .w1500 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.product .product-brokerList .w1500:has(.product-1-box:nth-child(1):last-child) {
  justify-content: center;
  grid-template-columns: 1fr;
  max-width: calc(25% + 1.5625rem);
  margin: 0 auto;
}

.product .product-brokerList .w1500:has(.product-1-box:nth-child(1):last-child) img {
  max-width: 440px;
  margin: 0 auto;
}

.product .product-brokerList .w1500:has(.product-1-box:nth-child(2):last-child) .product-1-box:nth-child(1) {
  grid-column: 2;
}

.product .product-brokerList .w1500:has(.product-1-box:nth-child(3):last-child) {
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(75% + 1.5625rem * 2);
  margin: 0 auto;
}

.product .product-brokerList .w1500:has(.product-1-box:nth-child(6):last-child) {
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(75% + 1.5625rem * 2);
  margin: 0 auto;
}

.product .product-brokerList .product-1-box {
  margin-bottom: 0;
}

.product .product-brokerList .product-1-box .list {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product .product-brokerList .product-1-box .list .item:hover a::after,
.product .product-brokerList .product-1-box .list .item:hover p {
  opacity: 0;
}

@media screen and (max-width: 640px) {
  .product .product-brokerList .product-1-box .list {
    width: 100%;
  }
}

.product .product-substrate .product-1-box .list .item .title-text {
  position: absolute;
  top: 3.75rem;
  left: 0;
  width: 100%;
}

.product .product-substrate .product-1-box .list .item .title-text p {
  position: relative;
  left: unset;
  bottom: unset;
  font-size: 30px;
  opacity: 1;
}

@media screen and (max-width: 640px) {
  .product .product-substrate .product-1-box .list .item .title-text p {
    font-size: 24px;
  }
}

.technology .technology-box {
  padding-top: 7.1875rem;
  margin-bottom: 6.25rem;
}

.technology .technology-box .content {
  width: 81.67%;
  line-height: 2.8;
  text-align: justify;
  text-align-last: center;
  margin: 0 auto;
}

.technology .product-1 {
  padding: 0;
  padding-bottom: 10.625rem;
}

.technology .product-1 .product-1-box:first-child {
  justify-content: center;
}

.technology .product-1 .product-1-box:first-child .item:only-child {
  grid-column: 2/3;
}

.team .team-1 {
  padding: 7.5rem 0;
}

.team .team-1 .textBox {
  width: 43.33%;
  line-height: 2.3;
  text-align: justify;
}

.team .team-1 .imgBox {
  display: block;
  width: 46.67%;
}

.team .team-1 .imgBox img {
  display: block;
  width: 100%;
  aspect-ratio: 7/4;
  object-fit: fill;
}

.team .team-2 {
  background: url(../images/team-2-bg.jpg) center no-repeat;
  height: 39.375rem;
  background-size: cover;
  position: relative;
}

.team .team-2 .w1500 {
  position: relative;
  z-index: 2;
}

.team .team-2 .team-2-1 {
  color: #fff;
  position: relative;
}

.team .team-2 .team-2-1 .left {
  width: 50%;
}

.team .team-2 .team-2-1 .left .name {
  font-size: 2.875rem;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .team .team-2 .team-2-1 .left .name {
    font-size: 1.875rem;
  }
}

.team .team-2 .team-2-1 .left .job {
  font-size: 1.875rem;
  margin-top: 1.875rem;
}

@media screen and (max-width: 992px) {
  .team .team-2 .team-2-1 .left .job {
    font-size: 20px;
  }
}

.team .team-2 .team-2-1 .right {
  width: 50%;
  line-height: 2.2;
  padding-left: 3.125rem;
  box-sizing: border-box;
}

.team .team-2 .team-2-2 {
  margin-top: 5rem;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2.0625rem 2.0625rem;
}

@media (max-width: 992px) {
  .team .team-2 .team-2-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.team .team-2 .team-2-2 p {
  font-family: Montserrat-Bold;
  line-height: 1;
  font-size: 3.125rem;
}

@media screen and (max-width: 992px) {
  .team .team-2 .team-2-2 p {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .team .team-2 .team-2-2 p {
    font-size: 30px;
  }
}

.team .team-2 .team-2-2 p span {
  font-family: Montserrat-Bold;
}

.team .team-2 .team-2-2 .title {
  margin: 1.25rem 0 1.875rem;
}

.team .team-2 .team-2-2 .line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.team .team-2 .team-2-2 .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  background: #fff;
  transition: all .5s ease-in-out;
  z-index: 2;
}

.team .team-2 .team-2-2 .item:hover .line::after {
  width: 100%;
}

.team .team-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.news .news-1 {
  padding: 7.8125rem 0 6.25rem;
}

.news .news-1 .newsList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 3.75rem 3.75rem;
}

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

.newsXq .line {
  display: block;
  width: 100%;
  height: 10px;
  background: var(--main-color);
}

.newsXq .newsXq_box {
  padding: 4.375rem 0 6.5625rem;
}

.newsXq .newsXq_box .bredCrumbs {
  position: relative;
  top: unset;
  bottom: unset;
  justify-content: flex-start;
}

.newsXq .newsXq_box .bredCrumbs a {
  color: #777;
}

.newsXq .newsXq_box .title {
  font-size: 3.125rem;
  font-weight: bold;
  color: var(--main-color);
  line-height: 1.6;
  margin-top: 1.5625rem;
}

@media screen and (max-width: 992px) {
  .newsXq .newsXq_box .title {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .newsXq .newsXq_box .title {
    font-size: 30px;
  }
}

.newsXq .newsXq_box .time {
  margin: 2.5rem 0;
}

.newsXq .newsXq_box .time img {
  display: block;
  width: 1.25rem;
  color: #474747;
  margin-right: .625rem;
}

.newsXq .newsXq_box .content {
  margin-bottom: 4.0625rem;
  line-height: 2.8;
}

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

.newsXq .newsXq_box .moreBtn {
  margin: 0 auto;
}

.brand .brand-box {
  padding: 6.25rem 0 9.375rem;
}

.brand .brand-box .list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  gap: 4.375rem 3.9063rem;
}

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

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

.brand .brand-box .list .item {
  transition: all .5s ease-in-out;
}

.brand .brand-box .list .item .box {
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.brand .brand-box .list .item .box img {
  display: block;
  max-width: 90%;
  max-height: 80%;
}

.brand .brand-box .list .item:hover {
  animation: aniRotate2 2s;
}

@keyframes aniRotate2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.global .global-1 {
  padding-top: 7.1875rem;
}

.global .global-1 .global-content {
  width: 73.33%;
  margin: 0 auto;
  line-height: 2.1;
  text-align: center;
}

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

.global .global-1 .global-box .mapBox {
  width: 50%;
  position: relative;
}

.global .global-1 .global-box .mapBox .mapImg {
  display: block;
  width: 100%;
}

.global .global-1 .global-box .mapBox .posItem {
  width: 1px;
  height: 1px;
  position: absolute;
  z-index: 5;
}

.global .global-1 .global-box .mapBox .posItem .posImg {
  display: block;
  width: 1.6875rem;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 5;
}

.global .global-1 .global-box .mapBox .posItem.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  width: 7.875rem;
  height: 7.875rem;
  border-radius: 50%;
  background: rgba(24, 119, 73, 0.1);
  animation: boderM 3s infinite;
  z-index: 2;
  pointer-events: none;
}

.global .global-1 .global-box .mapBox .posItem.active::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(24, 119, 73, 0.08);
  animation: boderM 3s infinite;
  animation-delay: .2s;
  z-index: 1;
  pointer-events: none;
}

.global .global-1 .global-box .mapBox .posItem1 {
  top: 35%;
  left: 82%;
}

.global .global-1 .global-box .mapBox .posItem2 {
  top: 43.5%;
  left: 82%;
}

.global .global-1 .global-box .mapBox .posItem3 {
  top: 46%;
  left: 88%;
}

.global .global-1 .global-box .mapBox .posItem4 {
  top: 59%;
  left: 87.5%;
}

.global .global-1 .global-box .mapBox .posItem5 {
  top: 62.5%;
  left: 74%;
}

.global .global-1 .global-box .mapBox .logoItem {
  top: 35%;
  left: 101%;
}

.global .global-1 .global-box .mapBox .logoItem .logoImg {
  transform: translate(-50%, -100%);
  width: 13.875rem;
}

.global .global-1 .global-box .btnBox {
  width: 27.5rem;
}

.global .global-1 .global-box .btnBox .item {
  width: 100%;
  height: 8.125rem;
  background: rgba(24, 119, 73, 0.1);
  display: flex;
  transition: all .5s ease-in-out;
  cursor: pointer;
}

.global .global-1 .global-box .btnBox .item span {
  margin: auto;
}

.global .global-1 .global-box .btnBox .item:not(:last-child) {
  margin-bottom: 2.5rem;
}

.global .global-1 .global-box .btnBox .item:hover {
  background: #187749;
  color: #fff;
  border-radius: 3.125rem 0px 3.125rem 0px;
}

.global .global-1 .global-box .btnBox .item.active {
  background: #187749;
  color: #fff;
  border-radius: 3.125rem 0px 3.125rem 0px;
}

.global .global-2 {
  margin-top: 7.5rem;
}

.global .global-2 .list {
  gap: 1.5625rem;
  padding-bottom: 9.375rem;
}

.global .global-2 .list li {
  min-height: 20.625rem;
  flex: 1;
  background: #f9f9f9;
  text-align: center;
  padding-top: 4.0625rem;
  box-sizing: border-box;
}

.global .global-2 .list li .iconfont {
  font-size: 3.125rem;
}

@media screen and (max-width: 992px) {
  .global .global-2 .list li .iconfont {
    font-size: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .global .global-2 .list li .iconfont {
    font-size: 30px;
  }
}

.global .global-2 .list li .title {
  color: #000;
  margin: 1.875rem 0;
}

.global .global-2 .list li .desc {
  color: #000;
  line-height: 1.75;
  opacity: .7;
}

.global .global-2 .list li:hover {
  background: var(--main-color);
}

.global .global-2 .list li:hover .title,
.global .global-2 .list li:hover .desc,
.global .global-2 .list li:hover .iconfont {
  color: #fff;
}

.contact .line {
  display: block;
  width: 100%;
  height: 10px;
  background: var(--main-color);
}

.contact .contact-1 {
  padding: 4.375rem 0 10.625rem;
}

.contact .contact-1 .bredCrumbs {
  position: relative;
  top: unset;
  bottom: unset;
}

.contact .contact-1 .bredCrumbs a {
  color: #777;
}

.contact .contact-1 .i-title {
  margin: 2.5rem 0 3.125rem;
}

.contact .contact-1 #container {
  width: 100%;
  height: 41.25rem;
}

.contact .contact-1 .contact-1-box {
  margin-top: 4.0625rem;
  align-items: flex-end;
}

.contact .contact-1 .contact-1-box .left {
  width: 50%;
}

.contact .contact-1 .contact-1-box .left .company {
  font-size: 2.25rem;
  color: var(--main-color);
  margin-bottom: 2.5rem;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .contact .contact-1 .contact-1-box .left .company {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .contact .contact-1 .contact-1-box .left .company {
    font-size: 24px;
  }
}

.contact .contact-1 .contact-1-box .left p {
  color: #231815;
  line-height: 2;
}

.contact .contact-1 .contact-1-box .left span {
  font-family: Montserrat-Bold;
}

.contact .contact-1 .contact-1-box .right .item {
  width: 9.375rem;
}

.contact .contact-1 .contact-1-box .right .item img {
  display: block;
  width: 100%;
}

.contact .contact-1 .contact-1-box .right .item p {
  color: #231815;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 1.125rem;
}

.contact .contact-1 .contact-1-box .right .item:not(:last-child) {
  margin-right: 3.75rem;
}

.contact .contact-2 {
  background: rgba(24, 119, 73, 0.04);
  padding: 7.5rem 0 10.625rem;
}

.contact .contact-2 .tip {
  margin-top: 3.4375rem;
  color: #474747;
}

.contact .contact-2 .formBox {
  margin-top: 3.75rem;
}

.contact .contact-2 .formBox .item {
  width: 48%;
  position: relative;
}

.contact .contact-2 .formBox .item .inpuStyle {
  position: relative;
}

.contact .contact-2 .formBox .item .inpuStyle input {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  height: 3.125rem;
  line-height: 3.125rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  font-size: 1.125rem;
}

.contact .contact-2 .formBox .item .inpuStyle input::placeholder {
  color: #474747;
  font-size: 1.125rem;
}

.contact .contact-2 .formBox .item .itemSelect {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(22, 21, 25, 0.4);
  max-height: 300px;
  display: none;
  overflow-y: auto;
  z-index: 50;
}

.contact .contact-2 .formBox .item .itemSelect .itemSelect-item {
  color: #5f5f5f;
  padding: 5px 1.875rem;
  cursor: pointer;
  font-size: 16px;
  line-height: 36px;
}

.contact .contact-2 .formBox .item .itemSelect .itemSelect-item:hover {
  background: #f8f8f8;
}

.contact .contact-2 .formBox .item .itemSelect .itemSelect-item.active {
  background: #f8f8f8;
  color: var(--main-color);
  font-weight: 700;
}

.contact .contact-2 .formBox .item .selectInput::after {
  content: "";
  width: 17px;
  height: 9px;
  background: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.contact .contact-2 .formBox .row:not(:last-child) {
  margin-bottom: 1.875rem;
}

.contact .contact-2 .formBox textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  resize: none;
  font-size: 1.125rem;
  color: #474747;
  height: 4.0625rem;
}

.contact .contact-2 .formBox textarea::placeholder {
  font-size: 1.125rem;
  color: #474747;
}

.contact .contact-2 .formBox .submit {
  width: 11.75rem;
  height: 3.125rem;
  background: var(--main-color);
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: flex;
  border-radius: 1.5625rem;
  margin-top: 5rem;
  cursor: pointer;
}

.contact .contact-2 .formBox .submit span {
  margin: auto;
}

.develop .develop-1 {
  background: url(../images/develop-1-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 7.5rem 0;
  overflow: hidden;
}

.develop .develop-1 .item-1 {
  position: relative;
}

.develop .develop-1 .item-1 .i-title {
  letter-spacing: 0;
}

.develop .develop-1 .item-1 .desc {
  text-align: center;
  line-height: 2.1;
}

.develop .develop-1 .item-1 .imgBox {
  display: block;
  width: 35rem;
  margin: 5rem auto 0;
  position: relative;
}

.develop .develop-1 .item-1 .imgBox .cirImg {
  display: block;
  width: 100%;
  animation: imgRotate 20s linear infinite;
}

.develop .develop-1 .item-1 .imgBox .centerImg {
  display: block;
  width: 16.875rem;
}

.develop .develop-1 .item-1 .cir {
  position: absolute;
  border-radius: 50%;
  display: flex;
  font-size: 1.875rem;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .develop .develop-1 .item-1 .cir {
    font-size: 20px;
  }
}

.develop .develop-1 .item-1 .cir span {
  margin: auto;
  font-weight: bold;
}

.develop .develop-1 .item-1 .cir1 {
  width: 8.75rem;
  height: 8.75rem;
  background: rgba(64, 174, 218, 0.8);
  top: 32%;
  left: 63%;
}

.develop .develop-1 .item-1 .cir2 {
  top: 43%;
  left: 20%;
  width: 7.875rem;
  height: 7.875rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--main-color);
}

.develop .develop-1 .item-1 .cir3 {
  top: 38%;
  left: 85%;
  width: 8.625rem;
  height: 8.625rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--main-color);
}

.develop .develop-1 .item-1 .cir4 {
  top: 69%;
  left: 7%;
  width: 7.3125rem;
  height: 7.3125rem;
  background: rgba(61, 174, 218, 0.8);
}

.develop .develop-1 .item-1 .cir5 {
  top: 75%;
  left: 75%;
  width: 6.875rem;
  height: 6.875rem;
  background: rgba(198, 89, 77, 0.8);
}

.develop .develop-1 .item-1 .cir6 {
  top: 82%;
  left: 96%;
  width: 7.1875rem;
  height: 7.1875rem;
  background: #fff;
  color: var(--main-color);
}

.develop .develop-1 .item-1 .cir7 {
  top: 92%;
  left: 66%;
  width: 7.3125rem;
  height: 7.3125rem;
  background: #f1be59;
}

.develop .develop-1 .item-1 .cir8 {
  top: 99%;
  left: 22%;
  width: 8.25rem;
  height: 8.25rem;
  background: rgba(240, 131, 30, 0.9);
}

.develop .develop-1 .item-1 .cir9 {
  top: 22%;
  left: 100%;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.develop .develop-1 .item-1 .cir10 {
  top: 54%;
  left: 110%;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.3);
}

.develop .develop-1 .item-1 .cir11 {
  top: 58%;
  left: 73%;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.develop .develop-1 .item-1 .cir12 {
  top: 90%;
  left: -6%;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.3);
}

.develop .develop-1 .item-2 {
  margin-top: 7.5rem;
}

.develop .develop-1 .item-2 .i-title {
  color: #fff;
}

.develop .develop-1 .item-2 img {
  display: block;
  width: 100%;
  margin: -2.5rem auto 0;
}

.develop .develop-2 {
  padding: 7.5rem 0;
}

.develop .develop-2 .textBox {
  width: 50%;
}

.develop .develop-2 .textBox .desc {
  margin-top: 3.125rem;
  width: 86.67%;
  line-height: 2.5;
}

.develop .develop-2 .imgBox {
  width: 50%;
}

.develop .develop-2 .imgBox img {
  display: block;
  width: 100%;
  aspect-ratio: 750/493;
  object-fit: cover;
}

.custom-content-marker {
  position: relative;
  width: 44px;
  height: 51px;
}

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

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

.fenye {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5625rem;
  margin-top: 5.625rem;
}

.fenye .page-link {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  font-family: Montserrat-Bold;
  color: #000;
}

.fenye .page-item:not(:first-child):not(:last-child) .page-link {
  background-color: #f4f4f4;
  border-radius: 20px 0px 20px 0px;
  transition: all .5s;
  color: var(--main-color);
}

.fenye .page-item:not(:first-child):not(:last-child) .page-link:hover {
  background-color: var(--main-color);
  color: white;
  border-radius: 0px 20px 0px 20px;
}

.fenye .page-item:not(:first-child):not(:last-child).active .page-link {
  background-color: var(--main-color);
  color: white;
  border-radius: 0px 20px 0px 20px;
}

.rightSide {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99;
}

.rightSide .item {
  display: block;
  height: 50px;
  width: 50px;
  position: relative;
  transition: all .5s;
}

.rightSide .item a {
  display: block;
  height: 50px;
  font-size: 0;
}

.rightSide .item a i,
.rightSide .item a span {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  line-height: 50px;
}

.rightSide .item i {
  width: 50px;
  text-align: center;
  background: var(--main-color);
  transition: all 0.3s;
}

.rightSide .item i .icon {
  font-size: 16px;
  width: 25px;
  height: 25px;
  margin-right: 3px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  margin-top: -3px;
  fill: #ffffff;
}

.rightSide .item span {
  position: absolute;
  width: 210px;
  text-align: center;
  line-height: 50px;
  background: #333333;
  font-size: 13px;
  color: #fff;
  transition: all 1s;
}

.rightSide .item:not(:last-child) {
  margin-bottom: 2px;
}

.rightSide .item:hover {
  transform: translateX(-210px);
}
