@charset "UTF-8";
@use 'sass:math';
body,
html {
  font-size: calc(100vw / 120);
}

@media (min-width: 64rem) and (max-width: 85.375rem) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
}

@media (min-width: 47.9375rem) and (max-width: 64rem) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}

@media (max-width: 47.9375rem) {
  body,
  html {
    font-size: .875rem;
  }
}

body {
  font-family: 'Poppins', 'Noto Sans SC', sans-serif !important;
}

body * {
  outline: none;
}

.p_top {
  position: absolute;
  top: -6.25rem;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #727272;
  --color-zt: #79C000;
  --head-height: 6.25rem;
  --cbasta: 13.5416666667%;
  --pandrd: 86px;
}

@media (max-width: 85.375rem) {
  :root {
    --cbasta: 5.25%;
  }
}

@media (max-width: 48rem) {
  :root {
    --cbasta: 4%;
    --pandrd: 32px;
  }
}

.wh {
  padding: 0 var(--cbasta);
}

.wh_l {
  padding: 0 0 0 var(--cbasta);
}

.wh1 {
  padding: 0 5.20833%;
}

@media (max-width: 48rem) {
  .wh1 {
    padding: 0 4%;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.flex-z {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.flex_left {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}

.flex_left1 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

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

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

.flex21 {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.more-msl {
  display: inline-block;
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 16px/50px "Poppins";
  border-radius: 25px;
  width: 160px;
  text-align: center;
  border: 0.0625rem solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

@media (max-width: 48rem) {
  .more-msl {
    line-height: 44.8px;
    width: 144px;
    font-size: 14px;
  }
}

.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-zt);
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.more-msl:hover {
  color: #fff;
}

.more-msl:hover::before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

.more-msl.bs {
  color: #fff;
  background: transparent;
  border: .0625rem solid #fff;
}

.more-msl.bs:before {
  background: #fff;
}

.more-msl.bs:hover {
  color: var(--color-zt);
}

.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}

.more-msl.hs:before {
  background: var(--color-zt);
}

.more-msl.hs:hover {
  color: #fff;
  border-color: var(--color-zt);
}

.more-msl.ls {
  color: var(--color-zt);
  background: transparent;
  border-color: var(--color-zt);
}

.more-msl.ls:before {
  background: var(--color-zt);
}

.more-msl.ls:hover {
  color: #fff;
}

.more-b {
  display: block;
  width: fit-content;
  padding: 13.6px 32px;
  border-radius: 10px;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-weight: 500;
  background: #BCBCBC;
  font-size: 18px;
}

@media (max-width: 48rem) {
  .more-b {
    padding: 11.2px 26.4px;
  }
}

.more-b > * {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 10px;
}

.more-b:hover {
  color: #fff;
}

.more-b:hover::after {
  transform-origin: center left;
  transform: scaleX(1);
}

.more-b.bs {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.more-b.bs > * {
  color: #fff;
}

.more-b.bs::after {
  background: var(--color-zt);
}

.more-b.bs:hover {
  border-color: var(--color-zt);
}

@media (max-width: 61.875rem) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}

@media (max-width: 61.875rem) {
  .pc-hidden {
    display: none;
  }
}

.m-hidden {
  display: none;
}

@media (max-width: 61.875rem) {
  .m-hidden {
    display: block;
  }
}

@media (max-width: 61.875rem) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: calc(70vh - 3.75rem);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.20276%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.fancybox__container {
  z-index: 10000;
}

.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 9999;
}

.head .head2 {
  line-height: var(--head-height);
  position: relative;
  transition: all .6s;
  --as-calore: #fff;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.head .head2 .logo a {
  display: flex;
}

.head .head2 .logo a img {
  height: 3.9375rem;
  filter: brightness(0) invert(1);
}

.head .head2 a.top-tel {
  color: var(--as-calore);
  position: relative;
  padding-right: 1rem;
}

.head .head2 a.top-tel i {
  font-size: 1.4rem;
  font-weight: 500;
}

.head .head2 a.top-tel:hover .tel_box {
  display: flex;
}

.head .head2 a.top-tel .tel_box {
  position: absolute;
  left: -2rem;
  background-color: #fff;
  width: 9.625rem;
  height: 6rem;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.0625rem;
  display: none;
}

.head .head2 a.top-tel .tel_box::before {
  content: '';
  position: absolute;
  top: -0.625rem;
  left: 2.1875rem;
  display: block;
  width: 0;
  height: 0;
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-bottom: .625rem solid #fff;
  /* 三角形的颜色 */
}

.head .head2 a.top-tel .tel_box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.head .head2 a.top-tel .tel_box p {
  margin-top: .625rem;
  color: #6DB030;
  font-size: .875rem;
  line-height: 1;
}

.head .head2 .zywena {
  margin: 0 1rem 0 0;
  position: relative;
  border-left: .0625rem solid #E6E6E6;
}

.head .head2 .zywena a.rhgxt {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
  padding: 0 1.5rem;
}

.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 600;
}

.head .head2 .zywena .yy-sec {
  position: absolute;
  left: 50%;
  top: 3rem;
  width: 5.5rem;
  transform: translateX(-50%);
  background: white;
  border: 0.0625rem solid #e6e6e6;
  border-radius: .5rem;
  padding: .5rem 1rem;
  display: none;
  text-align: center;
}

.head .head2 .zywena .yy-sec a {
  color: #333;
  display: block;
  line-height: 1.75em;
  font-size: 1rem;
  font-weight: 500;
}

.head .head2 .zywena .yy-sec a + a {
  border-top: .0625rem solid #333;
}

.head .head2 .zywena .yy-sec a:hover {
  color: var(--color-zt);
}

.head .head2 .more-sxa {
  background: #6DB030;
  color: #fff;
  font-size: .875rem;
  line-height: 2.8rem;
  padding: 0 1.5em;
  border-radius: 2rem;
}

.head .head2 .sska {
  padding: 0 1.25rem;
  margin-left: 1.25rem;
  border-left: .0625rem solid #E6E6E6;
  border-right: .0625rem solid #E6E6E6;
}

.head .head2 .sska a {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
}

.head .head2 .sska a i {
  font-size: 1.25rem;
  font-weight: 500;
}

.head.sticky .head2, .head:hover .head2, .head.sticky1 .head2 {
  background: #fff;
  --as-calore: #333333;
}

.head.sticky .head2 .logo a img, .head:hover .head2 .logo a img, .head.sticky1 .head2 .logo a img {
  filter: inherit;
}

.head.sticky .head2 #menu .nav_a1 > li:hover > a,
.head.sticky .head2 #menu .nav_a1 > li.active > a, .head:hover .head2 #menu .nav_a1 > li:hover > a,
.head:hover .head2 #menu .nav_a1 > li.active > a, .head.sticky1 .head2 #menu .nav_a1 > li:hover > a,
.head.sticky1 .head2 #menu .nav_a1 > li.active > a {
  color: var(--color-zt);
}

#menu {
  margin-right: 1vw;
}

#menu .nav_a1 > li {
  float: left;
}

#menu .nav_a1 > li a {
  display: block;
  color: var(--as-calore);
  font-family: "Noto Sans SC";
}

#menu .nav_a1 > li > a {
  font-size: 1.125rem;
  padding: 0 2rem;
  transition: all .6s;
  font-weight: 400;
  position: relative;
}

#menu .nav_a1 > li > a span {
  position: relative;
  display: block;
}

#menu .nav_a1 > li > a span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.0625rem;
  transform: translateX(-50%);
  width: 0;
  height: .125rem;
  background: var(--color-zt);
  transition: all .4s ease;
  display: none;
}

#menu .nav_a1 > li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: .5rem;
  width: 100%;
}

#menu .nav_a1 > li > a i {
  position: absolute;
  left: 16%;
  top: 26%;
  width: 1.5625rem;
  line-height: 1;
  opacity: 0;
}

#menu .nav_a1 > li > a i img {
  width: 100%;
}

#menu .nav_a1 > li .sec {
  position: absolute;
  top: calc(100% + .0625rem);
  width: 100%;
  max-width: inherit;
  left: 50%;
  background: white;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(1.25rem);
  padding: 3.125rem 0 4rem;
  text-align: center;
}

#menu .nav_a1 > li .sec .left {
  width: 67%;
  padding-right: 55px;
}

#menu .nav_a1 > li .sec .left ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 58px;
}

#menu .nav_a1 > li .sec .left ul li {
  border-bottom: .0625rem solid #D9D9D9;
  position: relative;
}

#menu .nav_a1 > li .sec .left ul li::before {
  content: '';
  width: 0%;
  height: .0625rem;
  background-color: var(--color-zt);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

#menu .nav_a1 > li .sec .left ul li a.bl {
  color: #595757;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 4.375rem;
  text-align: left;
}

#menu .nav_a1 > li .sec .left ul li a.bl::before {
  content: unset;
}

#menu .nav_a1 > li .sec .left ul li a.bl i {
  float: right;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
}

#menu .nav_a1 > li .sec .left ul li:hover {
  border-bottom: unset;
}

#menu .nav_a1 > li .sec .left ul li:hover a.bl {
  color: var(--color-zt);
}

#menu .nav_a1 > li .sec .left ul li:hover a.bl i {
  color: var(--color-zt);
}

#menu .nav_a1 > li .sec .left ul li:hover::before {
  width: 100%;
}

#menu .nav_a1 > li .sec .right {
  width: 33%;
}

#menu .nav_a1 > li .sec .right .over {
  border-radius: 1.875rem;
  height: 13.125rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

#menu .nav_a1 > li .sec .right .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu .nav_a1 > li .sec .right .over.over2 {
  height: auto;
}

#menu .nav_a1 > li .sec .right .over.over2 img {
  width: 70%;
}

#menu .nav_a1 > li:hover > a {
  color: var(--color-zt);
}

#menu .nav_a1 > li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}

#menu .nav_a1 > li:hover .sec {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#menu .nav_a1 > li:hover .sec.sec1 {
  transform: translateY(0);
}

#menu .nav_a1 > li:hover > a i, #menu .nav_a1 > li.active > a i {
  opacity: 1;
}

#menu .nav_a1 > li:hover > a span, #menu .nav_a1 > li.active > a span {
  color: var(--color-zt);
}

#menu .nav_a1 > li:hover > a span::after, #menu .nav_a1 > li.active > a span::after {
  width: 100%;
}

.sskbj {
  padding: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.sskbj .searchbox1 {
  width: 100%;
  padding: 2.5rem calc(100% * 0.104);
  height: 450px;
  background-color: #fff;
  text-align: right;
  display: none;
}

.sskbj .searchbox1 .searchs {
  width: 80%;
  max-width: 50rem;
  margin-top: 2vw;
}

.sskbj .searchbox1 .searchs dt {
  font-size: 32px;
  line-height: 1.5em;
  text-align: left;
  margin-bottom: 1em;
}

.sskbj .searchbox1 .searchs .sertext {
  width: 75%;
  border-radius: 30px;
  font-size: 16px;
  text-indent: 1em;
}

.sskbj .searchbox1 .searchs .serbtn {
  border-radius: 30px;
}

.sskbj .search-close-btn {
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: poPoppins;
  transition: all 0.6s;
}

.sskbj .search-close-btn:hover {
  transform: rotate(180deg);
}

.sskbj .search-close-btn i {
  color: #000;
  font-size: 28.8px;
  font-weight: 600;
}

.sskbj .serbtn {
  background: var(--color-zt);
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0rem 0rem 1rem 0rem rgba(0, 0, 0, 0.07);
  animation: sticky 1s;
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
}

.m-bm-head .m-bm-head-box {
  position: relative;
  height: 3.75rem;
}

.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 2.5rem;
}

.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}

.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 2.5rem;
  max-width: 40%;
}

.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: flex;
}

.m-bm-head .m-bm-head-box .m-bm-logo a p {
  font-size: 20px;
  font-weight: 700;
  margin-left: 8px;
}

.m-bm-head .m-bm-head-box .sskza {
  color: #000;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}

.m-bm-head .m-bm-head-box .sskza i {
  font-size: 20px;
  margin-right: 4px;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 1.25rem;
  height: .9375rem;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: .0938rem;
  width: 100%;
  background: #fff;
  transition: all .5s;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: .2813rem 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--color-zt);
}

.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 3.75rem);
  height: -moz-calc(100vh - 3.75rem);
  height: calc(100vh - 3.75rem);
  overflow: auto;
  padding-bottom: 5rem;
}

.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 18px/3.75rem "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}

.m-bm-head .mrhgxt i {
  font-size: 18px;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "Poppins";
  padding: 0 4%;
  font-weight: 600;
}

.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Poppins";
  font-weight: 500;
}

.m-bm-nav > li .sec {
  display: none;
  padding: .625rem .9375rem .625rem 8%;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.m-bm-nav > li .sec .tit1 {
  position: relative;
}

.m-bm-nav > li .sec .tit1 .aniut {
  height: 2.1875rem;
  line-height: 2.1875rem;
}

.m-bm-nav > li .sec .tit1 .aniut i {
  font-size: 18px;
}

.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}

.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.m-bm-nav .aniut {
  position: absolute;
  width: 2.5rem;
  height: 3.125rem;
  line-height: 3.125rem;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}

.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}

.m-bm-head.white .m-bm-menu {
  background: #fff;
}

.m-bm-head.white .m-bm-nav > li,
.m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}

.m-bm-head.white .m-bm-nav > li > a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav > li .sec a,
.m-bm-head.white .mrhgxt {
  color: #000;
}

.cp_sort1 {
  background: #F4F5F5;
  border-radius: 32px;
  border: .0625rem solid #DBDBDB;
  padding: 16px;
}

.cp_sort1 > li {
  position: relative;
}

.cp_sort1 > li + li {
  margin-top: 16px;
}

.cp_sort1 > li > .sec {
  padding: 0;
}

.cp_sort1 > li > .sec > .tit1 > a.clicked {
  border-bottom: .0625rem solid #DEDEDE;
}

.cp_sort1 > li > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > a:hover {
  color: #6DB030;
}

.cp_sort1 > li > .sec > .tit1 > .sec {
  padding: 0;
  border-bottom: .0625rem solid #DEDEDE;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 {
  padding: 0 2%;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 .aniut {
  right: 2%;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a {
  font-size: 14px;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked {
  border-bottom: .0625rem solid #DEDEDE;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #6DB030;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec {
  padding: 0;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a {
  font-size: 12px;
  line-height: 32px;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #6DB030;
}

.cp_sort1 > li > a {
  display: block;
  line-height: 56px;
  font-size: 16px;
  color: #020202;
  font-family: "Poppins";
  padding: 0 8%;
  font-weight: 600;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 8px 0rem rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}

.cp_sort1 > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Poppins";
  font-weight: 500;
}

.cp_sort1 > li > a.clicked {
  background: #6DB030;
  color: #fff;
}

.cp_sort1 > li > a.clicked + .aniut i {
  color: #fff;
}

.cp_sort1 > li .sec {
  display: none;
  padding: 16px 0 1.6px;
}

.cp_sort1 > li .sec .tit1 {
  position: relative;
  padding: 0 8%;
}

.cp_sort1 > li .sec .tit1 .aniut {
  height: 45px;
  line-height: 45px;
  right: 8%;
}

.cp_sort1 > li .sec .tit1 .aniut i {
  font-size: 18px;
}

.cp_sort1 > li .sec .tit1 a {
  color: #020202;
  font-size: 16px;
  line-height: 45px;
}

.cp_sort1 > li .sec a {
  display: block;
  font-size: .75rem;
  color: #020202;
  line-height: 2.1875rem;
}

.cp_sort1 > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.cp_sort1 .aniut {
  position: absolute;
  width: auto;
  height: 56px;
  line-height: 56px;
  right: 8%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.cp_sort1 .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #888888;
}

@media (max-width: 61.875rem) {
  body {
    padding: 3.75rem 0 0 !important;
  }
}

/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}

.pc-banner .mySwipera {
  position: relative;
}

.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}

.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}

.pc-banner .mySwipera .swiper-slide .img > img.aimg {
  visibility: hidden;
}

@media (max-width: 61.875rem) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg {
    visibility: inherit;
  }
}

.pc-banner .mySwipera .swiper-slide .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(100%);
}

.pc-banner .mySwipera .swiper-slide:hover .img .imgxa2 {
  z-index: 1;
}

.pc-banner .mySwipera .banwez1 {
  width: 100%;
  z-index: 99;
  color: #fff;
}

.pc-banner .mySwipera .banwez1 .cont-pa .tit {
  font-size: 5.75rem;
  line-height: 1.125em;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .cont-pa .tit {
    font-size: 28px;
  }
}

.pc-banner .mySwipera .banwez1 .cont-pa .ftit {
  font-size: 2.375rem;
  line-height: 1.125em;
  font-weight: 500;
  letter-spacing: .1rem;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .cont-pa .ftit {
    font-size: 22px;
    line-height: 1.2em;
  }
}

.pc-banner .mySwipera .banwez1 .cont-pa .p1txt {
  font-size: 2.5rem;
  line-height: 1.5em;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .cont-pa .p1txt {
    font-size: 26px;
  }
}

.pc-banner .mySwipera .fdysx {
  position: absolute;
  left: 0;
  bottom: 17%;
  width: 100%;
  z-index: 1;
}

.pc-banner .mySwipera .fdysx .swiper-pagination1 span {
  width: 1rem;
  height: 1rem;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.pc-banner .mySwipera .fdysx .swiper-pagination1 span + span {
  margin-left: .8rem;
}

.pc-banner .mySwipera .fdysx .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #fff;
}

.pc-banner a.mouse {
  position: absolute;
  bottom: 25rem;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
  animation: run 1s infinite linear;
}

.pc-banner a.mouse p {
  color: #FFFFFF;
  font-size: .75rem;
  margin-bottom: 0.25em;
}

.pc-banner a.mouse u {
  width: .875rem;
  display: block;
  font-size: 0;
  margin: 0 auto;
}

.pc-banner a.mouse u img {
  width: 100%;
}

.pc-banner .b_img .i1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.79;
  z-index: 9;
}

.pc-banner .b_img .i2 {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  z-index: 8;
}

@keyframes run {
  from {
    bottom: 11rem;
    opacity: 0;
  }
  to {
    bottom: 10rem;
    opacity: 1;
  }
}

@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

/* 图片动画 */
.fang {
  overflow: hidden;
  display: block;
}

.fang img {
  transition: all .6s;
}

.fang:hover img {
  transform: scale(1.1);
}

.xz img {
  transition: all .5s;
}

.xz:hover img {
  transform: rotateY(180deg);
}

.gong-pagination span {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
}

.gong-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}

.gong-pagination.hs span {
  background: rgba(0, 0, 0, 0.3);
}

.gong-pagination.hs span.swiper-pagination-bullet-active {
  background: #6DB030;
}

.gong-p {
  color: #7A7A7A;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75em;
  text-align: justify;
}

@media (max-width: 48rem) {
  .gong-p {
    font-size: 16px;
  }
}

.gong-p.bs {
  color: #fff;
}

.title1 {
  color: #6DB030;
  text-align: right;
}

.title1 .ftit {
  font-size: 34px;
  line-height: 1em;
}

.title1 .tit {
  font-size: 90px;
  line-height: 1em;
}

.title1 .pax {
  color: #414141;
  font-weight: 700;
  font-size: 44px;
  padding-right: 0.5em;
}

.iconfont1 {
  font-family: "iconfont" !important;
}

.all_more {
  display: inline-block;
  border: none;
  position: relative;
  width: 10.625rem;
  height: 3.75rem;
  line-height: 3.75rem;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 9;
  border-radius: 3.75rem;
}

.all_more::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 3.75rem;
  z-index: -1;
}

.all_more::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  border: .0625rem solid #1CA13A;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 60px;
}

.all_more:hover {
  cursor: pointer;
  color: #1CA13A;
}

.all_more:hover::before {
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.all_more:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.all_more:hover .i {
  border-color: #1CA13A;
}

.all_more:hover .i i {
  color: #1CA13A;
}

.all_morew {
  display: inline-block;
  border: none;
  position: relative;
  width: 10.625rem;
  height: 3.75rem;
  line-height: 3.75rem;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 9;
  border-radius: 3.75rem;
}

.all_morew::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 3.75rem;
  z-index: -1;
}

.all_morew::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  border: .0625rem solid #fff;
  -webkit-transform: scale(0.5, 0.5);
  transform: scale(0.5, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 3.75rem;
}

.all_morew:hover {
  cursor: pointer;
  color: #fff;
}

.all_morew:hover::before {
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.all_morew:hover::after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.all_morew:hover .i {
  border-color: #1CA13A;
}

.all_morew:hover .i i {
  color: #1CA13A;
}

@keyframes HintUpDown {
  0% {
    transform: translateY(-25%);
  }
  50% {
    transform: translateY(25%);
  }
  to {
    transform: translateY(-25%);
  }
}

.all_title.white p,
.all_title.white h3 {
  color: #fff;
}

.all_title p {
  color: #6DB030;
  text-align: justify;
  font-size: 5.25rem;
  font-weight: 600;
  line-height: 1;
}

.all_title h3 {
  color: #616663;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 4rem;
}

.nei_title p {
  color: #6DB030;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1;
}

.nei_title h3 {
  color: #616663;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 4rem;
}

.nei_title.white p,
.nei_title.white h3 {
  color: #fff;
}

.cont1 {
  background-size: cover;
  padding: 7.125rem 0 0;
  position: relative;
  z-index: 1;
}

.cont1 .a1v1 {
  display: block;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.79;
}

.cont1 .a1v1 img {
  width: 100%;
}

.cont1 .flex {
  align-items: unset;
}

.cont1 .left {
  width: 45.5%;
  position: relative;
  padding-bottom: 4.875rem;
}

.cont1 .left .bgimg {
  position: absolute;
  top: 6.25rem;
  left: -13.75rem;
  width: 12.5rem;
}

.cont1 .left .desc {
  margin-top: 1.5625rem;
  color: #727272;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.cont1 .right {
  width: 54.5%;
  position: relative;
}

.cont1 .right ul li {
  position: absolute;
  bottom: 0;
}

.cont1 .right ul li .text {
  position: absolute;
}

.cont1 .right ul li .text h3 {
  text-align: center;
}

.cont1 .right ul li .text h3 span {
  color: #FFF;
  font-size: 4.375rem;
  font-weight: 600;
}

.cont1 .right ul li .text h3 sub {
  color: #FFF;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 700;
}

.cont1 .right ul li .text p {
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 4rem;
}

.cont1 .right ul li:nth-child(1) {
  width: 35.125rem;
  left: 0;
}

.cont1 .right ul li:nth-child(1) .text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cont1 .right ul li:nth-child(1) .text h3 span {
  color: #6DB030;
}

.cont1 .right ul li:nth-child(1) .text p {
  color: #616663;
}

.cont1 .right ul li:nth-child(2) {
  width: 29.125rem;
  left: 40%;
  z-index: 2;
}

.cont1 .right ul li:nth-child(2) .text {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.cont1 .right ul li:nth-child(3) {
  width: 29.875rem;
  left: 70%;
}

.cont1 .right ul li:nth-child(3) .text {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer {
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%), #6DB030;
  position: relative;
}

footer .foota2 {
  display: block;
}

footer .panda2 {
  position: absolute;
  right: 10%;
  top: -15rem;
  width: 18%;
  z-index: 2;
}

footer .panda2 i {
  display: block;
  width: 1.6875rem;
  position: absolute;
  top: -10%;
  right: 53%;
}

footer .footer1 {
  padding-top: 7.1875rem;
  padding-bottom: 7.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}

footer .footer1::before {
  content: '';
  display: block;
  background-image: url(/slsw/uploads/rd/20250427152605.svg);
  width: 26.25rem;
  height: 23.75rem;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

footer .left {
  width: 19%;
}

footer .left .dlogo .logo1 {
  width: 10rem;
}

footer .left .dlogo .logo1 img {
  filter: brightness(0) invert(1);
}

footer .left .dlogo .logo2 {
  width: 15.9375rem;
}

footer .middle {
  width: 35%;
  display: flex;
  justify-content: end;
}

footer .middle .foot_nav {
  width: 50%;
  padding-right: 3.5rem;
  margin-right: 3.5rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

footer .middle .foot_nav .foot_nav_li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 3.125rem;
  text-align: right;
}

footer .middle .foot_nav .foot_nav_li.on a, footer .middle .foot_nav .foot_nav_li:hover a {
  color: #fff;
}

footer .middle .foot_con {
  width: 37%;
  padding-left: 2.5rem;
  display: none;
}

footer .middle .foot_con ul {
  display: none;
}

footer .middle .foot_con ul.on {
  display: block;
}

footer .middle .foot_con ul > li a {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 3.125rem;
}

footer .middle .foot_con ul > li:hover a {
  font-weight: 600;
}

footer .right {
  width: 51%;
}

footer .right .p1 p {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
}

footer .right .social-share {
  margin-top: 1rem;
}

footer .right .social-share a {
  color: #6DB030;
  background: #FFFFFF;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  line-height: 2.5rem;
  border: none;
  font-size: 1.25rem;
}

footer .right .fenxiang {
  margin-top: 1.125rem;
}

footer .right .fenxiang li {
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 50%;
  background-color: #fff;
  margin-right: .6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .3s;
}

footer .right .fenxiang li i {
  font-size: 1.5625rem;
  color: #6DB030;
}

footer .right .fenxiang li .ewm {
  width: 7.5rem;
  height: 7.5rem;
  position: absolute;
  top: -8.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  box-shadow: 0px 0px 40px 0px rgba(89, 172, 50, 0.15);
}

footer .right .fenxiang li .ewm::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

footer .right .fenxiang li .ewm img {
  width: 100%;
  height: 100%;
}

footer .right .fenxiang li:hover {
  cursor: pointer;
  background-color: var(--color-zt);
}

footer .right .fenxiang li:hover .ewm {
  display: block;
}

footer .right .fenxiang li:hover i {
  color: #fff;
}

footer .foota2 .foot-2vt {
  padding-bottom: 3.125rem;
}

footer .foota2 .foot-2vt p,
footer .foota2 .foot-2vt a {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
}

footer .foota2 .foot-2vt p span:nth-last-child(1) {
  display: none;
}

.foot-fot {
  background: #2d3333;
}

.foot-fot .foota2 p,
.foot-fot .foota2 a,
.foot-fot .foota2 span {
  color: #fff;
}

.foot-fot .foota2 span:nth-last-child(1) {
  display: none;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
  background: #2d3333;
}

.foota2 {
  display: none;
}

@media (max-width: 61.875rem) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}

/*手机底部*/
@media (max-width: 61.9375rem) {
  .foot1-m,
  .foota2 {
    display: block;
  }
  footer {
    display: none;
  }
}

.hidden {
  display: none;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}

@media (max-width: 48rem) {
  .zd_erha .aat_list {
    display: none;
  }
}

.zd_erha .aat_list li {
  position: relative;
}

.zd_erha .aat_list li + li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 70%;
  transform: translateX(-50%);
  height: .0625rem;
  background: rgba(63, 63, 63, 0.1);
}

.zd_erha .aat_list li > a {
  display: block;
  width: 100%;
  position: relative;
  background: #6DB030;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 2px 16px 2px rgba(0, 20, 60, 0.2);
}

.zd_erha .aat_list li > a i {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.zd_erha .aat_list li > a i img {
  height: 30px;
}

.zd_erha .aat_list li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1.5rem;
  width: auto;
  text-align: center;
  right: calc(110% + .3125rem);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition: all .7s;
  box-shadow: 0 0.25rem 1.25rem 0.25rem rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: .4rem;
  white-space: nowrap;
}

.zd_erha .aat_list li .erghgsb {
  width: 7rem;
  padding: .3rem;
}

.zd_erha .aat_list li .erghgsb img {
  width: 100%;
}

.zd_erha .aat_list li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*内页css*/
.loadmore-nodata {
  margin: 0 auto 9em;
}

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

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
  border-radius: .25rem;
}

@media (max-width: 48rem) {
  .pagination {
    margin: 0 0 0;
  }
}

.pagination > li {
  display: inline-block;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  margin-left: -0.0625rem;
  line-height: 2.25rem;
  color: #666666;
  text-decoration: none;
  background-color: #fff;
  border: .0625rem solid #ddd;
  margin: 0 3.2px;
  font-weight: 500;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  line-height: 2.25rem;
  background: #fff;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  line-height: 2.25rem;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  z-index: 2;
  color: #fff;
  background-color: var(--color-zt);
  border-color: var(--color-zt);
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: var(--color-zt);
  border-color: var(--color-zt);
  vertical-align: middle;
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: .625rem 1rem;
  font-size: 1.125rem;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: .375rem;
  border-bottom-left-radius: .375rem;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: .375rem;
  border-bottom-right-radius: .375rem;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: .3125rem .625rem;
  font-size: .75rem;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: .1875rem;
  border-bottom-left-radius: .1875rem;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: .1875rem;
  border-bottom-right-radius: .1875rem;
}

.pager {
  padding-left: 0;
  margin: 43px 0;
  text-align: center;
  list-style: none;
}

@media (max-width: 48rem) {
  .pager {
    margin: 24px 0;
  }
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  background-color: transparent;
  border: .0625rem solid #ddd;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background: #fff;
}

.pager li > a i,
.pager li > span i {
  line-height: 38px;
  font-weight: 700;
  font-size: 14px;
}

.pager li > a:focus,
.pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: transparent;
}

.ajhhsd {
  color: #A4A4A4;
  font: 400 16px/32px "Poppins";
  padding: 1.25em 0;
}

@media (max-width: 48rem) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 0.75em 0;
  }
}

.ajhhsd span {
  padding: 0 0.05em;
}

.ajhhsd span:last-child {
  display: none;
}

.ajhhsd a {
  color: #A4A4A4;
}

.ajhhsd a:hover {
  color: var(--color-zt);
}

.list_website {
  padding-bottom: 16.875rem;
}

.xw_ny_banner {
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%), #6DB030;
  background-size: cover;
  padding: 264px 0 116px;
}

@media (max-width: 61.875rem) {
  .xw_ny_banner {
    padding: 116px 0;
  }
}

@media (max-width: 48rem) {
  .xw_ny_banner {
    padding: 64px 0;
  }
}

.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 50px/1.2em "Poppins";
}

@media (max-width: 48rem) {
  .xw_ny_banner h2 {
    font-size: 28.8px;
  }
}

.nav-page li {
  padding-bottom: 1em;
}

.nav-page li + li {
  border-top: .0625rem solid #f0f0f0;
  padding-top: 1em;
}

.nav-page li > a {
  display: block;
  font: 600 21.6px/1.5em "Poppins";
  color: #333;
}

@media (max-width: 48rem) {
  .nav-page li > a {
    font-size: 20px;
  }
}

.nav-page li .sec {
  margin-top: 0.5em;
}

.nav-page li .sec a {
  display: inline-block;
  font: 500 16px/1.6em "Poppins";
  color: #777;
  margin-right: 1em;
}

.nav-page li .sec a:hover {
  color: var(--color-zt);
}

@media (max-width: 48rem) {
  .mt40 {
    margin-top: 16px;
  }
}

.ssy-sskaa {
  margin-bottom: 32px;
}

@media (max-width: 48rem) {
  .ssy-sskaa {
    margin-bottom: 24px;
  }
}

.ssy-sskaa .searchsa form {
  width: 50%;
  border: .0625rem solid #999;
  padding: 0 1.5em;
  border-radius: 32px;
  margin: 0 auto;
}

@media (max-width: 48rem) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}

.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 20px/64px "Poppins";
  background: transparent;
  color: #999;
}

@media (max-width: 48rem) {
  .ssy-sskaa .searchsa form input {
    font-size: 18px;
    line-height: 48px;
  }
}

.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}

.ssy-sskaa .searchsa form button i {
  font: 500 25.6px/64px "Poppins";
  color: #333;
}

@media (max-width: 48rem) {
  .ssy-sskaa .searchsa form button i {
    font-size: 21.6px;
    line-height: 48px;
  }
}

.ss-list li {
  padding: 16px 0;
}

.ss-list li + li {
  margin-top: 16px;
}

@media (max-width: 48rem) {
  .ss-list li + li {
    margin-top: 8px;
  }
}

.ss-list li div.img {
  width: 25%;
}

@media (max-width: 48rem) {
  .ss-list li div.img {
    width: 100%;
  }
}

.ss-list li div.img a.img {
  display: block;
  border: .0625rem solid #f2f2f2;
}

.ss-list li .xw-nycont {
  width: 72%;
}

.ss-list li .xw-nycont.w100 {
  width: 100%;
}

@media (max-width: 48rem) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}

.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 20px/1.35em "Poppins";
  overflow: hidden;
  margin-bottom: 0.2em;
}

.ss-list li .xw-nycont h2 a:hover {
  color: var(--color-zt);
}

@media (max-width: 48rem) {
  .ss-list li .xw-nycont h2 a {
    font-size: 18px;
  }
}

.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 15.2px/1.5em "Poppins";
}

.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 16px/1.5em "Poppins";
  margin-top: 0.5em;
}

.ss-list li .xw-nycont a.more-b {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 16px/2em "Poppins";
  padding: 16px 0 48px;
}

.shzr-content strong {
  color: #333;
}

.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
.nbanner {
  position: relative;
}

.nbanner .img {
  width: 100%;
  font-size: 0;
}

.nbanner .img img {
  width: 100%;
}

.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
  font-weight: 600;
}

.nbanner .nbanner-wen1 .banner-cont .p1 {
  font-size: 48px;
  line-height: 1.5em;
}

@media (max-width: 48rem) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 32px;
  }
}

.nbanner .nbanner-wen1 .banner-cont .p2 {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.5em;
}

@media (max-width: 48rem) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 20px;
  }
}

.nbanner .fldah {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.nbanner .fldah .ny-nav {
  gap: .0625rem;
}

.nbanner .fldah .ny-nav li {
  flex: 1;
  background: #fff;
  position: relative;
}

.nbanner .fldah .ny-nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: .1875rem;
  background: #6DB030;
  transition: all .4s;
}

.nbanner .fldah .ny-nav li a {
  display: block;
  color: #555555;
  font-size: 18px;
  line-height: 1.5em;
  padding: 24.8px 0.5em;
  text-align: center;
}

.nbanner .fldah .ny-nav li:hover, .nbanner .fldah .ny-nav li.on {
  background: rgba(255, 255, 255, 0.85);
}

.nbanner .fldah .ny-nav li:hover::after, .nbanner .fldah .ny-nav li.on::after {
  width: 100%;
}

.nbanner .fldah .ny-nav li:hover a, .nbanner .fldah .ny-nav li.on a {
  color: #6DB030;
}

.nbanner .fldah.sticky {
  background: #fff;
  position: fixed !important;
  bottom: auto;
  top: var(--head-height);
  z-index: 9;
}

.nbanner .fldah.sticky .ny-nav li a {
  padding: 16px 0.5em;
  font-size: 18px;
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
  left: 0;
  top: var(--head-height);
  width: 100%;
  z-index: 9;
}

@media (max-width: 61.875rem) {
  .n_mbx {
    top: 3.75rem;
  }
}

.n_mbx .tit {
  color: #575757;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  border-right: .0625rem solid #D8D8D8;
  padding-right: 36px;
  margin-right: 36px;
}

@media (max-width: 48rem) {
  .n_mbx .tit {
    display: none;
  }
}

.n_mbx .n_src {
  font-size: 0;
  overflow-y: hidden;
  overflow-x: auto;
}

@media (max-width: 48rem) {
  .n_mbx .n_src {
    white-space: nowrap;
    display: block;
  }
}

.n_mbx .n_src li {
  display: inline-block;
}

.n_mbx .n_src li + li {
  margin-left: .0625rem;
}

.n_mbx .n_src li a {
  display: block;
  color: #575757;
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 400;
  position: relative;
  padding: 20px 1.5em;
  transition: all .6s;
}

@media (max-width: 48rem) {
  .n_mbx .n_src li a {
    line-height: 41.6px;
    font-size: 17.6px;
    padding: 8px 1em;
  }
}

.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  background: var(--color-zt);
  color: #fff;
}

.list_content {
  padding: 64px 0;
}

@media (max-width: 48rem) {
  .list_content {
    padding: 32px 0;
  }
}

@-webkit-keyframes scale2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

#abt1,
#abt2,
#abt3,
#abt4,
#abt5,
#abt6 {
  height: var(--head-height);
  margin-top: calc(var(--head-height) * -1);
}

@media (max-width: 61.875rem) {
  #abt1,
  #abt2,
  #abt3,
  #abt4,
  #abt5,
  #abt6 {
    height: 3.75rem;
    margin-top: -3.75rem;
  }
}

.ny-title {
  color: #9F9E9F;
  font-weight: 700;
}

.ny-title .tit {
  color: #020202;
  font-size: 40px;
  line-height: 1.35em;
}

@media (max-width: 48rem) {
  .ny-title .tit {
    font-size: 29.6px;
  }
}

.ny-title .entit {
  font-size: 24px;
  line-height: 1.25em;
  text-transform: uppercase;
}

@media (max-width: 48rem) {
  .ny-title .entit {
    font-size: 20px;
  }
}

.ny-title.bs {
  color: #fff;
}

.ny-title.bs .tit {
  color: #fff;
}

@keyframes bannerLun {
  0% {
    opacity: 0;
    transform: translateY(6.25rem);
    filter: blur(0.625rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
    filter: blur(0rem);
  }
}

.cont2 {
  padding-top: 10.625rem;
  padding-bottom: 6.875rem;
  background-attachment: fixed;
  background-size: cover;
}

.cont2 .top_con {
  display: flex;
  justify-content: end;
}

.cont2 .top_con .text {
  color: #FFF;
  font-size: 5.25rem;
  font-weight: 350;
  line-height: 1.2;
}

.cont2 .content {
  margin-top: 10.9375rem;
 width: 85%;
}

.cont2 .content h3 {
  color: #FFF;
  text-align: justify;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 4rem;
}

.cont2 .content p {
  margin-top: .4375rem;
  color: #FFF;
  text-align: justify;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

@keyframes HintUpDown {
  0% {
    transform: rotate(-3deg);
    transform-origin: top left;
  }
  50% {
    transform: rotate(3deg);
    transform-origin: top left;
  }
  to {
    transform: rotate(-3deg);
    transform-origin: top left;
  }
}

@keyframes HintUpDown2 {
  0% {
    transform: rotate(-3deg);
    transform-origin: bottom left;
  }
  50% {
    transform: rotate(3deg);
    transform-origin: bottom left;
  }
  to {
    transform: rotate(-3deg);
    transform-origin: bottom left;
  }
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-moz-keyframes loop {
  0% {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-o-keyframes loop {
  0% {
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.cont3 {
  position: relative;
  padding-bottom: 6.875rem;
  background-size: cover;
  z-index: 1;
}

.cont3 .wh {
  padding: 0 8.125rem 0 var(--cbasta);
}

.cont3 .scroll_text {
  color: rgba(182 ,220 ,165, 0.2);
  text-align: center;
  font-size: 10.375rem;
  font-weight: 500;
}

.cont3 .cont3_box {
  display: flex;
  justify-content: space-between;
}

.cont3 .cont3_box .left {
  width: 26%;
}

.cont3 .cont3_box .left .desc {
  color: #727272;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.cont3 .cont3_box .left .desc ul > li {
  display: none;
  transition: all .6s;
}

.cont3 .cont3_box .left .desc ul > li.active {
  display: block;
}

.cont3 .cont3_box .middle {
  margin-top: -9rem;
  width: 44%;
  position: relative;
}

.cont3 .cont3_box .middle .panda {
  width: 20rem;
  position: absolute;
  right: -3.75rem;
  bottom: -10%;
  z-index: 2;
}

.cont3 .cont3_box .middle .i1 {
  width: 15rem;
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 2;
  transition: opacity 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965);
  animation: 3s ease-in-out infinite HintUpDown;
}

.cont3 .cont3_box .middle .i2 {
  width: 16rem;
  position: absolute;
  right: -3%;
  top: 20%;
  transition: opacity 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965);
  animation: 3s ease-in-out infinite HintUpDown2;
}

.cont3 .cont3_box .middle .swiper_indexpro {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.cont3 .cont3_box .middle .swiper_indexpro::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(109, 176, 48, 0.2) 0%, rgba(28, 161, 58, 0.2) 100%);
}

.cont3 .cont3_box .middle .swiper_indexpro .index_proimg {
  position: relative;
}

.cont3 .cont3_box .middle .swiper_indexpro .index_proimg img {
  transform: scale(0.7);
}

.cont3 .cont3_box .right {
  width: 20%;
  padding-left: 3.125rem;
}

.cont3 .cont3_box .right ul li {
  position: relative;
  color: #767676;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2rem;
  vertical-align: middle;
}

.cont3 .cont3_box .right ul li i {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 1.25rem;
  border: 0.25rem solid rgba(101, 177, 39, 0.4);
  vertical-align: middle;
  margin-right: .75rem;
}

.cont3 .cont3_box .right ul li:not(:last-child) {
  margin-bottom: 2.1875rem;
}

.cont3 .cont3_box .right ul li:not(:last-child)::before {
  content: '';
  display: block;
  width: .0625rem;
  height: 1.5rem;
  background-color: #65B127;
  position: absolute;
  top: 2.5rem;
  left: .625rem;
}

.cont3 .cont3_box .right ul li:hover, .cont3 .cont3_box .right ul li.active {
  color: #65B127;
  cursor: pointer;
}

.cont3 .cont3_box .right ul li:hover i, .cont3 .cont3_box .right ul li.active i {
  border-color: #65B127;
}

.cont4 {
  background-size: cover;
  padding-top: 17.3125rem;
  padding-bottom: 10rem;
}

.cont4 .top_con .p1 {
  color: #FFF;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 4rem;
}

.cont4 .content {
  margin-top: 11.25rem;
}

.cont4 .content .swiper_indexrd .indexrd_box {
  display: flex;
  align-items: center;
  border-top: .0625rem solid #fff;
  padding-top: 1.125rem;
}

.cont4 .content .swiper_indexrd .indexrd_box .icon {
  width: 3.375rem;
  height: 3.375rem;
  border: .0625rem solid #fff;
  border-radius: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.cont4 .content .swiper_indexrd .indexrd_box .icon img {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.cont4 .content .swiper_indexrd .indexrd_box .icon:hover img {
  transform: rotateY(-180deg);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.cont4 .content .swiper_indexrd .indexrd_box .text {
  flex: 1;
  padding-left: 1.0625rem;
}

.cont4 .content .swiper_indexrd .indexrd_box .text h3 {
  color: #FFF;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
}

.cont4 .content .swiper_indexrd .indexrd_box .text p {
  color: #FFF;
  text-align: justify;
  font-size: .875rem;
}

@keyframes line {
  10% {
    transform: translateX(-5%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-5%);
  }
}

.cont5 {
  background-size: cover;
  padding-top: 2rem;
  padding-bottom: 0rem;
  position: relative;
}

.cont5 .wave .wavel {
  position: absolute;
  opacity: .3;
  top: 20%;
  width: 150%;
  transform: translatex(-5%);
}

.cont5 .wave .l1 {
  animation: line 5s linear infinite;
}

.cont5 .wave .l2 {
  animation: line 3s linear infinite;
}

.cont5 .wave .l3 {
  animation: line 8s linear infinite;
}

.cont5 .content {

  position: relative;
  z-index: 2;
}

.cont5 .content .index_news_box {
  display: flex;
  justify-content: space-between;
}

.cont5 .content .index_news_box .left {
  width: 33%;
}

.cont5 .content .index_news_box .left .left_news {
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0rem 0rem 30px 0rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cont5 .content .index_news_box .left .left_news .text {
  padding: 1.5625rem 2.8125rem 2.125rem 2.375rem;
}

.cont5 .content .index_news_box .left .left_news .text p {
  color: #616663;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.cont5 .content .index_news_box .left .left_news .text p.p1 {
  margin-top: .625rem;
  color: #616161;
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
}

.cont5 .content .index_news_box .right {
  width: 64%;
  overflow: hidden;
  padding-right: var(--cbasta);
}

.cont5 .content .index_news_box .right .swiper_index_news {
  position: relative;
  overflow: unset;
  padding-bottom: 1.25rem;
}

.cont5 .content .index_news_box .right .swiper_index_news .swiper-scrollbar {
  width: 70%;
  height: .0625rem;
  background-color: rgba(0, 0, 0, 0.2);
}

.cont5 .content .index_news_box .right .swiper_index_news .swiper-scrollbar-drag {
  background-color: #6DB030;
  height: .125rem;
}

.cont5 .content .index_news_box .right .swiper_index_news .right_news .over {
  border-radius: 1.875rem;
  height: 16.875rem;
}
.cont5 .content .index_news_box .right .swiper_index_news .right_news .over img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cont5 .content .index_news_box .right .swiper_index_news .right_news .text {
  padding: .9375rem 0;
}

.cont5 .content .index_news_box .right .swiper_index_news .right_news .text p {
  color: #616663;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
}

.cont5 .content .index_news_box .right .swiper_index_news .right_news .text p.p1 {
  color: #616161;
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
}

.index_news .left {
  padding-right: 1.25rem;
}
.index_news .left .index_newsbox:hover .text h3,
.index_news .left .index_newsbox:hover .text p {
  color: #79c000;
}

.index_news .left .index_newsbox:hover{
    box-shadow: 0 0 30px 0 rgba(136, 185, 40,.2);
}
.index_news .left .index_newsbox{
        border-radius: 1.875rem;
        overflow: hidden;
          transition: all .4s;
    -webkit-transform: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.index_news .left .index_newsbox .text {
  background-color: #fff;
  padding: 1.25rem 1.875rem 1.875rem;
}
.index_news .left .index_newsbox .text .time {
     margin-top: .625rem;
    color: #616161;
    text-align: justify;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}
.index_news .left .index_newsbox .text h3 {
      color: #616663;
    text-align: justify;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
}
.index_news .left .index_newsbox .text p {
  color: #999;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}
.index_news .right {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}
.index_news .right .index_newsbox_item {
  flex: 1;
}
.index_news .right .index_newsbox_item:hover a .text h3 {
  color: #79C000;
}
.index_news .right .index_newsbox_item:hover a{
 
box-shadow: 0 0 30px 0 rgba(136, 185, 40,.2);
}
.index_news .right .index_newsbox_item a {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 1.25rem;
    transition: all .4s;
    -webkit-transform: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.index_news .right .index_newsbox_item a .text {
  padding: 1.25rem;
}
.index_news .right .index_newsbox_item a .text .time {
   margin-top: .625rem;
    color: #616161;
    text-align: justify;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
}
.index_news .right .index_newsbox_item a .text h3 {
    color: #616663;
    text-align: justify;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
}
.index_news .right .index_newsbox_item a .text p {
    margin-top: 1.25rem;
  color: #999;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}

.neibanner {
  position: relative;
  background: linear-gradient(90deg, rgba(109, 176, 48, 0.2) 0%, rgba(28, 161, 58, 0.2) 100%);
}

.neibanner .bimg {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 8;
}

.neibanner .bimg2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9;
  opacity: .8;
}

.neibanner .neibanner_txt {
  width: 100%;
  position: absolute;
  left: 0;
  top: 51%;
}

.neibanner .neibanner_txt p {
  color: #FFF;
  text-align: justify;
  font-size: 5.25rem;
  line-height: 1;
  font-weight: 600;
}

.neibanner .neibanner_txt h3 {
  color: #FFF;
  text-align: justify;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1;
  /* 118.519% */
}

.neibanner .scroll {
  position: absolute;
  bottom: 10.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.0625rem;
  animation: xiangxia 2s infinite;
  cursor: pointer;
}

.neibanner .video {
  position: absolute;
  top: 51%;
  right: var(--cbasta);
}

.neibanner .video a {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.neibanner .video a i {
  font-size: 2.125rem;
  color: #fff;
}

.neibanner .video a:hover {
  background-color: rgba(28, 161, 58, 0.4);
}

.neibanner .video a:hover i {
  color: var(--color-zt);
}

.neibanner .mbxdh {
  width: 100%;
  position: absolute;
  top: 6.25rem;
}

.neibanner .mbxdh .ajhhsd {
  color: #FFF;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  opacity: 0.8;
  padding: 1.6875rem 0;
}

.neibanner .mbxdh .ajhhsd a {
  color: #FFF;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  opacity: 0.8;
}

@keyframes xiangxia {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 1.25rem);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.pro_neibanner {
  height: 100vh;
  background: linear-gradient(90deg, rgba(109, 176, 48, 0.2) 0%, rgba(28, 161, 58, 0.2) 100%);
}

.pro_neibanner .mbxdh .ajhhsd {
  color: #727272;
}

.pro_neibanner .mbxdh .ajhhsd a {
  color: #727272;
}

.pro_neibanner .content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.pro_neibanner .content .row {
  align-items: center;
}

.pro_neibanner .content .scroll {
  z-index: 999;
  cursor: pointer;
}

.pro_neibanner .content .left {
  padding-right: 7.125rem;
}

.pro_neibanner .content .left .titen {
  color: #6DB030;
  font-size: 4.25rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
}
.one_block:nth-child(1){
    display: none;
}
.pro_neibanner .content .left .tit {
  color: #616663;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1.5;
  /* 118.519% */
}

.pro_neibanner .content .left .desc {
  color: #727272;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.pro_neibanner .content .left .tag {
  display: flex;
  align-items: center;
}

.pro_neibanner .content .left .tag .tag_li {
  width: 7.4375rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  margin-right: 1.0625rem;
  color: #6DB030;
  font-size: 1.25rem;
  font-weight: 500;
}

.pro_neibanner .content .right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro_neibanner .content .right .img {
  text-align: center;
  position: relative;
  z-index: 3;
}

.pro_neibanner .content .right .img img {
  margin: 0 auto;
}

.pro_neibanner .content .right .i1 {
  width: 15rem;
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: 4;
  transition: opacity 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965);
  animation: 3s ease-in-out infinite HintUpDown;
}

.pro_neibanner .content .right .i2 {
  width: 16rem;
  position: absolute;
  right: -6%;
  top: 10%;
  transition: opacity 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965);
  animation: 3s ease-in-out infinite HintUpDown2;
}

.pro_neibanner .content .right .ii1 {
  width: 4.25rem;
  position: absolute;
  right: 0;
  top: 50%;
}

.pro_neibanner .content .right .ii2 {
  width: 4.25rem;
  position: absolute;
  right: 0;
  top: calc(50% + 4rem);
}

.pro_neibanner .panda {
  width: 22.9375rem;
  position: absolute;
  bottom: 0%;
  right: var(--cbasta);
  transition: all .6s;
}

.pro_neibanner .panda.on {
  bottom: 13%;
}

.list_about_one {
  padding-top: 6.875rem;
  background-size: cover;
}

.list_about_one .left .text {
  color: #727272;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_about_one .right {
  padding-left: 7.1875rem;
}

.list_about_one .about_num {
  display: flex;
  flex-wrap: wrap;
}

.list_about_one .about_num .about_numitem {
  width: 50%;
}

.list_about_one .about_num .about_numitem:nth-child(1), .list_about_one .about_num .about_numitem:nth-child(2) {
  margin-bottom: 4.8125rem;
}

.list_about_one .about_num .about_numitem .icon {
  width: 2.9375rem;
  height: 2.9375rem;
}

.list_about_one .about_num .about_numitem .text {
  margin-top: 1.375rem;
}

.list_about_one .about_num .about_numitem .text p {
  color: #616663;
  font-size: 1.25rem;
  font-weight: 700;
}

.list_about_one .about_num .about_numitem .text h3 {
  color: #6DB030;
  font-size: 4.375rem;
  font-weight: 700;
}

.list_about_one .about_num .about_numitem .text h3 span {
  color: #6DB030;
  font-size: 4.375rem;
  font-weight: 700;
}

.list_about_one .about_num .about_numitem .text h3 sub {
  color: #616663;
  font-size: 1.25rem;
  font-weight: 700;
}

.list_about_three {
  background-size: cover;
}

.list_about_three .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}

.list_about_three .grid_box .grid_item {
  border-radius: .4375rem;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  padding: 2.625rem 2.1875rem 2.75rem 2.1875rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_about_three .grid_box .grid_item .over {
  width: 11.625rem;
  border-radius: 1.25rem;
}

.list_about_three .grid_box .grid_item .text {
  flex: 1;
  padding-left: 2.5rem;
}

.list_about_three .grid_box .grid_item .text h3 {
  color: #616663;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.list_about_three .grid_box .grid_item .text h3 span {
  color: #616663;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2rem;
  margin-left: .875rem;
}

.list_about_three .grid_box .grid_item .text p {
  margin-top: .6875rem;
  color: #616663;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

.list_about_three .grid_box .grid_item:hover {
  border-radius: 1.25rem;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
}

.list_about_three .grid_box .grid_item:hover .text h3 {
  color: #fff;
}

.list_about_three .grid_box .grid_item:hover .text h3 span {
  color: #fff;
}

.list_about_three .grid_box .grid_item:hover .text p {
  color: #fff;
}

.list_about_four {
  padding-bottom: 8.75rem;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-50px);
  }
  /* 根据项目数量调整 */
  50% {
    transform: translateY(-150px);
  }
  /* 根据项目数量调整 */
  75% {
    transform: translateY(-250px);
  }
  /* 根据项目数量调整 */
  100% {
    transform: translateY(-320px);
  }
  /* 根据项目数量调整 */
}

.list_about_six .bgimg .m_show {
  display: none;
}

.list_about_six .content {
  width: 100%;
  position: absolute;
  top: 6.875rem;
}

.list_about_six .content .ul {
  overflow: hidden;
  height: 10rem;
  /* 根据需要设置 */
  position: relative;
}

.list_about_six .content .ul-container {
  position: absolute;
  width: 100%;
  animation: slideUp 20s linear infinite;
}

.list_about_six .content .ul-item {
  width: 100%;
  height: 2.5rem;
  /* 与carousel高度相同 */
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.25rem;
  font-weight: 400;
  opacity: .3;
}

.list_about_six .content .ul-item.active {
  opacity: 1;
}

.pc_show_767 {
  display: block;
}

.phone_show_767 {
  display: none;
}

@media (max-width: 767px) {
  .pc_show_767 {
    display: none;
  }
  .phone_show_767 {
    display: block;
  }
}

.list_about_two .bgimg {
  position: absolute;
  top: 45%;
  z-index: 9;
}

.list_about_two .content {
  margin-top: 3.75rem;
  overflow: hidden;
}

.list_about_two .content .swiper_btn {
  position: relative;
  overflow: hidden;
  padding-top: 1.25rem;
}

.list_about_two .content .swiper_btn .swiper_btn_li {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}

.list_about_two .content .swiper_btn .swiper_btn_li .xian {
  width: 1px;
  height: 9.9375rem;
  background-color: #AEACAC;
}

.list_about_two .content .swiper_btn .swiper_btn_li .text {
  color: #AEACAC;
  text-align: justify;
  font-size: 2rem;
  font-weight: 500;
  padding-left: 1rem;
}

.list_about_two .content .swiper_btn .swiper-slide-thumb-active .text {
  color: var(--color-zt);
}

.list_about_two .content .swiper_btn .swiper-slide-thumb-active .xian {
  background-color: var(--color-zt);
}

.list_about_two .content .swiper_history {
  width: 70%;
  margin: 14.375rem auto 0;
}

.list_about_two .content .swiper_history .history_box {
  display: flex;
  justify-content: center;
}

.list_about_two .content .swiper_history .history_box .left {
  width: 25%;
}

.list_about_two .content .swiper_history .history_box .left h3 {
  color: rgba(65, 65, 65, 0.2);
  font-size: 5rem;
  font-weight: 600;
  text-transform: capitalize;
  text-align: right;
}

.list_about_two .content .swiper_history .history_box .right {
  width: 75%;
  padding-left: 3.4375rem;
}

.list_about_two .content .swiper_history .history_box .right h3 {
  color: #414141;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.125rem;
}

.list_about_two .content .swiper_history .history_box .right p {
  color: #787878;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.list_about_two .content .swiper_history .swiper-slide-active .history_box .left h3 {
  color: var(--color-zt);
}

.list_about_two .content .swiper-button-next,
.list_about_two .content .swiper-button-prev {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: unset;
  background-color: #fff;
  text-align: center;
  z-index: 99;
  background-image: unset;
  margin-top: -2.5rem;
}

.list_about_two .content .swiper-button-next i,
.list_about_two .content .swiper-button-prev i {
  font-weight: 400;
  font-size: 1.25rem;
  color: #717171;
  line-height: 3.125rem;
}

.list_about_two .content .swiper-button-next::before,
.list_about_two .content .swiper-button-prev::before {
  content: '';
  display: block;
  width: .625rem;
  height: 1.25rem;
  position: absolute;
  top: -1px;
  right: -1px;
  border-top: 1.5px solid var(--color-zt);
  border-right: 1.5px solid var(--color-zt);
}

.list_about_two .content .swiper-button-next::after,
.list_about_two .content .swiper-button-prev::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1.25rem;
  position: absolute;
  bottom: -1px;
  left: -1px;
  border-left: 1.5px solid var(--color-zt);
  border-bottom: 1.5px solid var(--color-zt);
}

.list_about_two .content .swiper-button-next:hover::before, .list_about_two .content .swiper-button-next:hover::after,
.list_about_two .content .swiper-button-prev:hover::before,
.list_about_two .content .swiper-button-prev:hover::after {
  width: 100%;
  height: 100%;
}

.list_about_two .content .swiper-button-prev,
.list_about_two .content .swiper-container-rtl .swiper-button-next {
  left: calc(var(--container) - 3.125rem);
  right: auto;
  top: 76%;
}

.list_about_two .content .swiper-button-next,
.list_about_two .content .swiper-container-rtl .swiper-button-prev {
  left: auto;
  right: calc(var(--container) - 3.125rem);
  top: 76%;
}

.list_about_two .content .history_ul .history_li {
  margin-top: 15px;
}

.list_about_two .content .history_ul .history_li h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-zt);
}

.list_about_two .content .history_ul .history_li p {
  font-size: 14px;
}

#ryzz {
  display: none;
  width: -webkit-calc(100% - var(--pandrd) * 2);
  width: -moz-calc(100% - var(--pandrd) * 2);
  width: calc(100% - var(--pandrd) * 2);
  padding: 0;
  border-radius: 1.875rem;
  box-shadow: 0px 0px 1.9375rem 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  #ryzz {
    border-radius: 1.25rem;
    width: -webkit-calc(100% - var(--pandrd));
    width: -moz-calc(100% - var(--pandrd));
    width: calc(100% - var(--pandrd));
  }
}

#ryzz .carousel__button.is-close {
  top: 2.5rem;
  right: 2.5rem;
  color: #000;
}

@media (max-width: 768px) {
  #ryzz .carousel__button.is-close {
    top: 1rem;
    right: 1rem;
  }
}

#ryzz .ryzz-cont1 {
  position: relative;
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
  overflow: hidden;
}

#ryzz .ryzz-cont1 u {
  display: block;
  font-size: 0;
}

#ryzz .ryzz-cont1 u img {
  width: 100%;
}

#ryzz .ryzz-cont1 .cont-p {
  position: absolute;
  left: 3%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 33%;
  top: 50%;
}

@media (max-width: 768px) {
  #ryzz .ryzz-cont1 .cont-p {
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    padding: 0 5%;
    width: 100%;
    margin-top: 1rem;
  }
}

#ryzz .ryzz-cont1 .cont-p .tit {
  color: #555555;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  #ryzz .ryzz-cont1 .cont-p .tit {
    font-size: 1.35rem;
  }
}

#ryzz .ryzz-cont1 .cont-p .txt {
  color: #555555;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-top: 0.65rem;
}

#ryzz .ryzz-cont2 {
  padding: 2rem 5% var(--pandrd);
}

#ryzz .ryzz-cont2 .asx-asxrt1 {
  margin-bottom: 2.5rem;
  border-radius: 5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .asx-asxrt1 {
    border-top-left-radius: 2.6rem;
    border-bottom-right-radius: 2.6rem;
  }
}

#ryzz .ryzz-cont2 .asx-asxrt1 li {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

#ryzz .ryzz-cont2 .asx-asxrt1 li a {
  display: block;
  background: var(--color-zt);
  color: #fff;
  font-size: 1.125rem;
  line-height: 2em;
  padding: 1em 0;
}

@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .asx-asxrt1 li a {
    padding: 0.5em 0;
  }
}

#ryzz .ryzz-cont2 .asx-asxrt1 li a:focus {
  outline: none;
}

#ryzz .ryzz-cont2 .asx-asxrt1 li.on a {
  background: #046e38;
}

#ryzz .ryzz-cont2 .ryzz_list1 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem 2rem;
}

@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .ryzz_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 450px) {
  #ryzz .ryzz-cont2 .ryzz_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem 1rem;
  }
}

#ryzz .ryzz-cont2 .ryzz_list1 li {
  text-align: center;
  border-bottom: 1px solid #D9D9D9;
}

#ryzz .ryzz-cont2 .ryzz_list1 li .img {
  border-radius: 0px 0px 2.25rem 0px;
  background: #FFF;
  box-shadow: 0px 0px 1.9375rem 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 21.875rem;
}

#ryzz .ryzz-cont2 .ryzz_list1 li .img img {
  width: auto;
  height: 100%;
}

#ryzz .ryzz-cont2 .ryzz_list1 li .tit {
  color: #555555;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1em 0 1.5em;
}

@media (max-width: 768px) {
  #ryzz .ryzz-cont2 .ryzz_list1 li .tit {
    padding: 0.75em 0 0.5em;
  }
}

.list_about_seven {
  padding-top: 6.0625rem;
  background-size: cover;
  background-attachment: fixed;
}

.list_about_seven .content {
  color: #FFF;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

@keyframes moveAnimation {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-10%, -30%);
  }
  50% {
    transform: translate(-15%);
  }
  75% {
    top: 1.25rem;
    left: 3.4375rem;
    transform: translate(-10%, 10%);
  }
  to {
    transform: translate(0);
  }
}

@keyframes clipP {
  0% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
    clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
    clip-path: polygon(50% 50%, 100% 0, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
    clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 100%, 0 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0, 0 0);
    clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0, 100% 0);
    clip-path: polygon(50% 50%, 100% 0, 100% 100%, 0 100%, 0 0, 100% 0);
  }
}

.list_about_eight {
  padding-bottom: 11.25rem;
}

.list_about_eight .content {
  position: relative;
  height: 120vh;
}

.list_about_eight .content .step_02 .img1 {
  width: 50.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_about_eight .content .step_02 .img2 {
  width: 65.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_about_eight .content .step_02 .dot_quan {
  width: 32.5rem;
  height: 32.5rem;
  z-index: 4;
  -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
  clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
  border: 7px solid #9cd325;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_about_eight .content .step_02 .dot_quan {
  animation: 12s infinite forwards clipP;
}

.list_about_eight .content .step_02_con {
  width: 32.5rem;
  height: 32.5rem;
  z-index: 3;
  border: 7px solid #D9D9D9;
  border-radius: 100%;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: .72rem;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_about_eight .content .step_02_con h2 {
  color: var(--color-zt);
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 4rem;
}

.list_about_eight .content .step_02_con p {
  color: #727272;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_about_eight .content .step_con_case .step_block {
  position: absolute;
  z-index: 9 !important;
}

.list_about_eight .content .step_con_case .step_block .dot_txt {
  width: 6.125rem;
  height: 6.125rem;
  line-height: 6.125rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  z-index: 9 !important;
}

.list_about_eight .content .step_con_case .step_block i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #6DB030;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
}

.list_about_eight .content .step_con_case .step_block:nth-child(1) {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.list_about_eight .content .step_con_case .step_block:nth-child(1) .dot_txt {
  background-color: #1CA13A;
}

.list_about_eight .content .step_con_case .step_block:nth-child(3) {
  top: 65%;
  right: -5%;
}

.list_about_eight .content .step_con_case .step_block:nth-child(3) .dot_txt {
  background-color: #AED9E9;
}

.list_about_eight .content .step_con_case .step_block:nth-child(5) {
  top: 65%;
  left: -5%;
}

.list_about_eight .content .step_con_case .step_block:nth-child(5) .dot_txt {
  background-color: #94C040;
}

.list_about_eight .content .step_con_case .step_block:nth-child(2) {
  top: 30%;
  right: -2%;
}

.list_about_eight .content .step_con_case .step_block:nth-child(2) i {
  transform: rotate(70deg);
}

.list_about_eight .content .step_con_case .step_block:nth-child(4) {
  bottom: -4%;
}

.list_about_eight .content .step_con_case .step_block:nth-child(4) i {
  transform: rotate(170deg);
}

.list_about_eight .content .step_con_case .step_block:nth-child(6) {
  top: 30%;
  left: -2%;
}

.list_about_eight .content .step_con_case .step_block:nth-child(6) i {
  transform: rotate(300deg);
}

.list_about_eight .content .rift_case .fir_cae {
  display: inline-block;
  position: absolute;
}

.list_about_eight .content .rift_case .fir_cae .fir_sty {
  color: #6DB030;
  font-size: 1.25rem;
  font-weight: 400;
  padding: .9375rem 1.375rem;
  border-radius: 3.75rem;
  background: #F0F7EA;
  display: -ms-flexbox;
  display: flex;
  animation-name: moveAnimation;
  animation-duration: 10s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(1) .fir_sty, .list_about_eight .content .rift_case .fir_cae:nth-child(2) .fir_sty, .list_about_eight .content .rift_case .fir_cae:nth-child(3) .fir_sty, .list_about_eight .content .rift_case .fir_cae:nth-child(4) .fir_sty {
  color: #6DB030;
  font-size: 1.5rem;
  font-weight: 600;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(1) {
  top: 25%;
  left: 22%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(2) {
  top: 50%;
  left: 15%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(2) .fir_sty {
  animation-delay: .8s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(3) {
  top: 70%;
  left: 20%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(3) .fir_sty {
  animation-delay: 1.6s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(4) {
  top: 40%;
  right: 13%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(4) .fir_sty {
  animation-delay: 5.2s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(5) {
  top: 35%;
  left: 0%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(5) .fir_sty {
  animation-delay: 4s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(6) {
  top: 80%;
  left: 15%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(6) .fir_sty {
  animation-delay: 6s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(7) {
  top: 80%;
  right: 10%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(7) .fir_sty {
  animation-delay: 8s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(8) {
  top: 55%;
  right: 10%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(8) .fir_sty {
  animation-delay: 7s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(9) {
  top: 25%;
  right: 5%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(9) .fir_sty {
  animation-delay: 2.5s;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(10) {
  top: 15%;
  right: 25%;
}

.list_about_eight .content .rift_case .fir_cae:nth-child(10) .fir_sty {
  animation-delay: 5.8s;
}

.list_culture_one {
  position: relative;
  overflow: hidden;
}

.list_culture_one .mask_img {
 width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0px, 0px, 0px) scale(10, 10);
  transform-origin: 70% 50%;
  transition: all .8s;
  -webkit-transform: all .8s;
  -moz-transition: all .8s;
  -o-transition: all .8s;
   
}

.list_culture_one .mask_img.on {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px) scale(1, 1);
}

.list_culture_one .nei_title {
  position: absolute;
  top: 8rem;
}

.list_culture_one .desc {
  color: #616663;
  text-align: justify;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 3.125rem;
  position: absolute;
    bottom: 40%;
    right: 1%;
}

.list_culture_two {
  margin-top: -29.25rem;
}

.list_culture_two .bimg {
    width: 100%;
  position: absolute;
  bottom: -3.125rem;
}

.list_culture_two .content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
}

.list_culture_two .content .desc {
  color: #FFF;
  text-align: justify;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 3.125rem;
}

.list_culture_three {
  background: #EFF7EA;
  position: relative;
  z-index: 9;
}

.list_culture_three .desc {
  color: #616663;
  text-align: justify;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 3.125rem;
}

.list_culture_three .right {
  margin-left: -15.25rem;
  flex: 1;
  position: relative;
}

.list_culture_three .right .line_img {
  position: absolute;
  top: 20%;
  left: 10%;
}

.list_culture_three .bgimg {
  -webkit-mask-image: url("https://s-files.bcdn8.com/senlong0513/uploads/20250514/eaca149b951763e7c1f219ba4aca5081.png");
  mask-image: url("https://s-files.bcdn8.com/senlong0513/uploads/20250514/eaca149b951763e7c1f219ba4aca5081.png");
  -webkit-mask-position: 100% 100%;
  mask-position: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: 1.2s cubic-bezier(0.435, 0.25, 0.15, 0.965) forwards maskA;
}

.list_culture_three .content {
  position: relative;
}

.list_culture_three .content .line_img2 {
  width: 100%;
  position: absolute;
  top: 1.875rem;
  left: 0;
}

.list_culture_three .content .bgimg2 {
  -webkit-mask-image: url("https://s-files.bcdn8.com/senlong0513/uploads/20250514/4717e01c5e5bb9e4b36b191a90e9b866.png");
  mask-image: url("https://s-files.bcdn8.com/senlong0513/uploads/20250514/4717e01c5e5bb9e4b36b191a90e9b866.png");
  -webkit-mask-position: 0 100%;
  mask-position: 0 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: 100%;
  transition: all .8s;
  -webkit-transform: all .8s;
  -moz-transition: all .8s;
  -o-transition: all .8s;
}

.list_culture_three .content .bgimg2.on {
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: 320% 320%;
  mask-size: 320% 320%;
}

.list_culture_three .content .text {
  width: 100%;
  position: absolute;
  top: 50%;
}

.list_culture_three .content .text .desc {
  color: #FFF;
  text-align: justify;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.5;
}

@keyframes maskA {
  0% {
    -webkit-mask-size: 0 0;
    mask-size: 0 0;
  }
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

@keyframes maskYe3 {
  0% {
    -webkit-mask-position: 68% 0;
    mask-position: 68% 0;
    -webkit-mask-size: 9.94rem;
    mask-size: 9.94rem;
  }
  30% {
    -webkit-mask-position: 50%;
    mask-position: 50%;
    -webkit-mask-size: 100%;
    mask-size: 100%;
  }
  to {
    -webkit-mask-position: 50%;
    mask-position: 50%;
    -webkit-mask-size: 300%;
    mask-size: 300%;
  }
}

.list_culture_four {
  padding-top: 11.25rem;
  padding-bottom: 15rem;
  position: relative;
}

.list_culture_four ul.pc_show {
  display: block;
}

.list_culture_four ul.m_show {
  display: none;
}

.list_culture_four ul li {
  position: absolute;
  z-index: 9;
}

.list_culture_four ul li .box {
  width: 32.8125rem;
  border-radius: 1.25rem;
  background: #F0F7EA;
  padding: 2.5625rem 3.25rem;
  display: inline-block;
}

.list_culture_four ul li h3 {
  color: #6DB030;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.125rem;
}

.list_culture_four ul li p {
  color: #616663;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

.list_culture_four ul li:nth-child(1) {
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
}

.list_culture_four ul li:nth-child(2) {
  top: 55%;
  left: 13%;
}

.list_culture_four ul li:nth-child(3) {
  top: 55%;
  right: 13%;
}

.list_culture_four .yuan {
  margin: 0 auto;
  width: 41.625rem;
  height: 41.625rem;
  border-radius: 41.625rem;
  border: 1px solid #6DB030;
  position: relative;
}

.list_culture_four .yuan .title {
  color: #FFF;
  text-align: justify;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 4rem;
  width: 19.25rem;
  height: 19.25rem;
  border-radius: 19.25rem;
  border: 1px solid #6DB030;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_culture_four .yuan .title::before {
  content: '';
  display: block;
  width: calc(100% + 5rem);
  height: calc(100% + 5rem);
  border: .0625rem solid #6DB030;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_culture_four .yuan .title::after {
  content: '';
  display: block;
  width: calc(100% + 9.375rem);
  height: calc(100% + 9.375rem);
  border: .0625rem solid #6DB030;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_culture_four .yuan::before {
  content: '';
  display: block;
  width: calc(100% - 5rem);
  height: calc(100% - 5rem);
  border: .0625rem solid #6DB030;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_culture_four .yuan::after {
  content: '';
  display: block;
  width: calc(100% - 9.125rem);
  height: calc(100% - 9.125rem);
  border: .0625rem solid #6DB030;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_news_one .row {
  align-items: center;
  border-bottom: 1px solid #CFCFCF;
}

.list_news_one .left .over {
  border-radius: 1.875rem;
}

.list_news_one .right {
  padding-left: 4.375rem;
}

.list_news_one .right .tit {
  color: #616663;
  text-align: justify;
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.list_news_one .right .time {
  color: #616161;
  font-size: 1rem;
  font-weight: 500;
}

.list_news_one .right .desc {
  color: #727272;
  text-align: justify;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.bg_img {
  background-image: url(../images/news_bg.png);
  background-size: 100% auto;
}

.index_news_two {
  padding-bottom: 7.8125rem;
}

.index_news_two .top_flex {
  display: flex;
  align-items: center;
}

.index_news_two .top_flex form {
  width: 24.75rem;
  height: 4rem;
  border-radius: 3.75rem;
  background: #FFF;
}

.index_news_two .top_flex form .conx {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.375rem;
}

.index_news_two .top_flex form .conx input {
  text-align: center;
  flex: 1;
}

.index_news_two .top_flex form .conx button {
  background-color: unset;
  border: none;
}

.index_news_two .top_flex form .conx button i {
  font-size: 1.25rem;
  color: #79C000;
}

.index_news_two .news_tab {
  display: flex;
  align-items: center;
}

.index_news_two .news_tab .news_li {
  width: 10.5rem;
  height: 4rem;
  border-radius: 3.75rem;
  background: #FFF;
  margin-right: 1.25rem;
  text-align: center;
  transition: all .4s;
}

.index_news_two .news_tab .news_li a {
  color: #727272;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 4rem;
}

.index_news_two .news_tab .news_li.active, .index_news_two .news_tab .news_li:hover {
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%), #79C000;
}

.index_news_two .news_tab .news_li.active a, .index_news_two .news_tab .news_li:hover a {
  color: #fff;
}

.index_news_two .list_news_box {
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  /*gap: 2.5rem;*/
}.index_news_two .list_news_box .list_news_item{
      padding:2.5rem 0;
    border-bottom: 1px dashed #B2B2B2;
}
  .index_news_two .list_news_box .list_news_item  i{
      font-size: 1.15rem;
      margin-right: .5rem;
  }

.index_news_two .list_news_box .list_news_item .over {
  border-radius: 1.875rem;
   height: 18.75rem;
}
.index_news_two .list_news_box .list_news_item .over img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*.index_news_two .list_news_box .list_news_item .text {*/
/*  padding-top: .9375rem;*/
/*  padding-bottom: 1.0625rem;*/
/*}*/

.index_news_two .list_news_box .list_news_item .text h3 {
  color: #616663;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
}

.index_news_two .list_news_box .list_news_item .text p {
  color: #616161;
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
}

.show_news_top {
  padding-top: 6.25rem;
  height: 40rem;
  background: linear-gradient(90deg, rgba(109, 176, 48, 0.2) 0%, rgba(28, 161, 58, 0.2) 100%);
}

.show_news_top .bimg {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 8;
}

.show_news_top .news_text {
  width: 55%;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translateX(-50%);
}

.show_news_top .news_text .left {
  width: 85%;
}

.show_news_top .news_text .left .fx_box {
  display: flex;
  align-items: center;
}

.show_news_top .news_text .left .fx_box .time {
  color: #616663;
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
}

.show_news_top .news_text .left .fx_box .fenxiang {
  padding-left: 1.5625rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.show_news_top .news_text .left .fx_box .fenxiang > p {
  color: #616663;
  font-size: 1rem;
  font-weight: 400;
}

.show_news_top .news_text .left .fx_box .fenxiang .social-share .social-share-icon {
  width: 2.125rem;
  height: 2.125rem;
  line-height: 2.125rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%), #6DB030;
  border: none;
  color: #fff;
  font-size: 1.125rem;
}

.show_news_top .news_text .right {
  flex: 1;
  padding-left: 7.8125rem;
}

.show_news_top .news_text .right i {
  width: .8125rem;
  display: inline-block;
}

.show_news_top .news_text h3 {
  color: #616663;
  text-align: justify;
  font-size: 2.75rem;
  font-weight: 500;
}

.show_news_top .bimg2 {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9;
  opacity: .8;
}

.show_news_top .mbxdh {
  width: 100%;
  position: absolute;
  top: 7.9375rem;
}

.show_news_top .mbxdh .ajhhsd {
  color: #616663;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  opacity: 0.8;
}

.show_news_top .mbxdh .ajhhsd a {
  color: #616663;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  opacity: 0.8;
}

.show_news_content {
  padding-bottom: 15.625rem;
  position: relative;
}

.show_news_content .back_btn {
  width: 5.5rem;
  position: sticky;
  top: 80%;
  left: 15%;
  transition: all .4s;
}

.show_news_content .back_btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: .875rem;
}

.show_news_content .back_btn a {
  color: #727272;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.875rem;
}

.show_news_content .content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 72%;
  margin: 0 auto;
  color: #727272;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_news_content .content a{
      color: #727272;
}.show_news_content .content a:hover{
    color: #000;
}
.show_news_content .content p {
  color: #727272;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.show_news_content .shangxia_p {
  width: 72%;
  margin: 0 auto;
}

.show_news_content .shangxia_p .checkbtn {
  width: 10.5rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: 3.75rem;
  color: #727272;
  font-size: 1rem;
  font-weight: 500;
  background: #F1F5F5;
  text-align: center;
  transition: all .4s;
}

.show_news_content .shangxia_p .checkbtn a {
  color: #727272;
  font-size: 1rem;
  font-weight: 500;
  line-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show_news_content .shangxia_p .checkbtn a i {
  color: #6DB030;
  font-size: 1.625rem;
}

.show_news_content .shangxia_p .checkbtn:nth-child(1) i {
  margin-right: .875rem;
}

.show_news_content .shangxia_p .checkbtn:nth-child(2) i {
  margin-left: .875rem;
}

.show_news_content .shangxia_p .checkbtn:hover {
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%), #6DB030;
}

.show_news_content .shangxia_p .checkbtn:hover a {
  color: #fff;
}

.show_news_content .shangxia_p .checkbtn:hover a i {
  color: #fff;
}

.list_product {
  background-image: url(../images/pro_bg.png);
  background-size: 100% auto;
  padding-top: 10rem;
  padding-bottom: 3.75rem;
}

.list_product .product_box .product_item .row {
  align-items: center;
  margin-bottom: 12.125rem;
}

.list_product .product_box .product_item .row .left {
  padding-left: 0;
  padding-right: 1.875rem;
}

.list_product .product_box .product_item .row .left .txt .titen {
  color: #6DB030;
  font-size: 3.375rem;
  font-weight: 500;
  text-transform: capitalize;
}

.list_product .product_box .product_item .row .left .txt .tit {
  color: #616663;
  text-align: justify;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1;
}

.list_product .product_box .product_item .row .left .txt .desc {
  color: #727272;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
  padding-right: 3.75rem;
}

.list_product .product_box .product_item .row .right {
  position: relative;
}

.list_product .product_box .product_item .row .right .i1 {
  width: 15rem;
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 3;
  transition: opacity 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965);
  animation: 3s ease-in-out infinite HintUpDown;
}

.list_product .product_box .product_item .row .right .i2 {
  width: 16rem;
  position: absolute;
  right: -3%;
  top: 20%;
  transition: opacity 0.8s cubic-bezier(0.435, 0.25, 0.15, 0.965);
  animation: 3s ease-in-out infinite HintUpDown2;
}

.list_product .product_box .product_item .row .right .img {
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_product .product_box .product_item .row .right .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.list_product .product_box .product_item .row .right .img img {
  margin: 0 auto;
  opacity: 1;
  position: relative;
  z-index: 2;
  transform: scale(0.7);
}

.show_product_one .content {
  padding-top: 6.5rem;
  padding-bottom: 6.25rem;
  background-size: cover;
  background-position: center;
  border-radius: 1.875rem;
}

.show_product_one .content .tit {
  color: #FFF;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 4rem;
}

.show_product_one .content .desc {
  width: 46%;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.show_product_one .content2 .row {
  align-items: center;
  margin-bottom: 3.75rem;
}

.show_product_one .content2 .row .left {
  padding-right: 2.6875rem;
}

.show_product_one .content2 .row .left .over {
  border-radius: 1.875rem;
}

.show_product_one .content2 .row .right {
  padding: 0;
}

.show_product_one .content2 .row .right .text h3 {
  color: #727272;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.75rem;
}

.show_product_one .content2 .row .right .text p {

  color: #727272;
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}



.show_product_one .content2 .row .right .text{
     overflow-y: auto;
overflow-X:hidden;
    height: 29rem;
    padding-right: 1rem;
}


  .show_product_one .content2 .row .right .text::-webkit-scrollbar {
    width: 5px; border-radius: 10px;
    height: 5px;
    background-color: #F0F7EA;
    }
    .show_product_one .content2 .row .right .text::-webkit-scrollbar-track {
 border-radius: 10px;
    }
.show_product_one .content2 .row .right .text::-webkit-scrollbar-thumb {

border-radius: 10px;
    background-color: var(--color-zt);
    }
.show_product_one .content2 .row:nth-child(even) .left {
  order: 2;
  padding-right: 0;
  padding-left: 2.6875rem;
}

@keyframes xiangxia2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 0.3125rem);
  }
  100% {
    transform: translate(0, 0);
  }
}

.show_product_one .content2 .row:nth-child(1) .left .over {
  position: relative;
}

.show_product_one .content2 .row:nth-child(1) .left .over::before {
  content: '';
  display: block;
  width: 3.375rem;
  height: 5.0625rem;
  background-image: url("https://s-files.bcdn8.com/senlong0513/uploads/20250522/30d8997a28a8f57d561ea07f9f03d284.svg");
  background-size: 100% 100%;
  position: absolute;
  top: 32%;
  left: 45.5%;
  z-index: 9;
  animation: xiangxia2 2s infinite;
}
.show_product_one .content2 .row.two_block:nth-child(1) .left .over::before{
    display: none;
}

.show_product_two {
  position: relative;
}

.show_product_two .b_img {
    width: 100%;
  position: absolute;
  bottom: -2.8125rem;
}

.show_product_two ul li {
  color: var(--color-zt);
  background-image: url(../images/yuan.png);
  background-size: 100% 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 50%;
}

.show_product_two ul li:nth-child(1) {
  font-size: 3.1473rem;
  width: 10.625rem;
  height: 10.625rem;
  top: 50%;
  left: var(--cbasta);
}

.show_product_two ul li:nth-child(2) {
  width: 5.8125rem;
  height: 5.8125rem;
  font-size: 2.125rem;
  top: 35%;
  left: 20%;
}

.show_product_two ul li:nth-child(3) {
  width: 7.3294rem;
  height: 7.3294rem;
  font-size: 2.625rem;
  top: 50%;
  left: 30%;
}

.show_product_two ul li:nth-child(4) {
  width: 8.75rem;
  height: 8.75rem;
  font-size: 2.5rem;
  top: 20%;
  left: 30%;
}

.show_product_two ul li:nth-child(5) {
  width: 11.6706rem;
  height: 11.6706rem;
  font-size: 3.125rem;
  top: 35%;
  left: 40%;
}

.show_product_two ul li:nth-child(6) {
  width: 13.0456rem;
  height: 13.0456rem;
  font-size: 2.75rem;
  top: 55%;
  left: 44%;
}

.show_product_two ul li:nth-child(7) {
  width: 6.875rem;
  height: 6.875rem;
  font-size: 1.625rem;
  top: 15%;
  left: 44%;
}

.show_product_two ul li:nth-child(8) {
  width: 6.875rem;
  height: 6.875rem;
  font-size: 2.5rem;
  top: 20%;
  left: 54%;
}

.show_product_two ul li:nth-child(9) {
  width: 11.6706rem;
  height: 11.6706rem;
  font-size: 2.125rem;
  top: 35%;
  left: 57%;
}

.show_product_two ul li:nth-child(10) {
  width: 7.3294rem;
  height: 7.3294rem;
  font-size: 2.625rem;
  top: 55%;
  left: 60%;
}

.show_product_two ul li:nth-child(11) {
  width: 7.875rem;
  height: 7.875rem;
  font-size: 1.75rem;
  top: 20%;
  left: 70%;
}

.show_product_two ul li:nth-child(12) {
  width: 11.6706rem;
  height: 11.6706rem;
  font-size: 1.75rem;
  top: 40%;
  left: 75%;
}

.show_product_two ul li:hover {
  color: #fff;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
}

.show_product_three {
  background-color: #EFF7EA;
  z-index: 9;
  padding-bottom: 12rem;
}

.show_product_three .content {
  position: relative;
}

.show_product_three .content .over {
  border-radius: 1.875rem;
  overflow: hidden;
}

.show_product_three .content .text {
  color: #FFF;
  text-align: center;
  font-size: 3.375rem;
  font-weight: 600;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.show_product_three .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem 2.5rem;
}

.show_product_three .grid_box .gird_item {
  border-radius: 1.875rem;
  border: 1px solid #DEDEDE;
  background: #FFF;
  padding: 2.625rem 3.75rem;
  transition: all .6s;
}

.show_product_three .grid_box .gird_item .top_tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show_product_three .grid_box .gird_item .top_tit .icon {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  border: 1px solid var(--color-zt);
  display: flex;
  justify-content: center;
  align-items: center;
}

.show_product_three .grid_box .gird_item .top_tit .icon img {
  width: 2rem;
  height: 2rem;
}

.show_product_three .grid_box .gird_item .top_tit .txt {
  flex: 1;
  padding-left: 1.8125rem;
}

.show_product_three .grid_box .gird_item .top_tit .txt h3 {
  color: var(--color-zt);
  font-size: 1.5rem;
  font-weight: 700;
}

.show_product_three .grid_box .gird_item .top_tit .txt p {
  color: var(--color-zt);
  font-size: .875rem;
  font-weight: 700;
}

.show_product_three .grid_box .gird_item .desc {
  color: #727272;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.show_product_three .grid_box .gird_item:hover {
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%), #FFF;
}

.show_product_three .grid_box .gird_item:hover .desc {
  color: #fff;
}

.show_product_three .grid_box .gird_item:hover .top_tit .icon {
  border-color: #fff;
}

.show_product_three .grid_box .gird_item:hover .top_tit .icon img {
  filter: brightness(0) invert(1);
}

.show_product_three .grid_box .gird_item:hover .top_tit .txt h3,
.show_product_three .grid_box .gird_item:hover .top_tit .txt p {
  color: #fff;
}

.pro_bg {
  background-image: url(../images/showpro.png);
  background-size: cover;
}

.show_product_four {
  padding-top: 8.125rem;
  padding-bottom: 9.375rem;
}

.show_product_four .content {
  position: relative;
}

.show_product_four .content .wh {
  padding: 0 5.625rem;
}

.show_product_four .content::before {
  content: '';
  display: block;
  width: 100%;
  height: .25rem;
  background-color: var(--color-zt);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.show_product_four .content .swiper_scgy {
  position: relative;
}

.show_product_four .content .swiper_scgy .scgy_box .text {
  padding-top: .625rem;
}

.show_product_four .content .swiper_scgy .scgy_box .text h3 {
  color: #616663;
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.show_product_four .content .swiper_scgy .scgy_box .text p {
  margin-top: .25rem;
  color: #727272;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.show_product_four .content .swiper_scgy .swiper-slide {
  position: relative;
}

.show_product_four .content .swiper_scgy .swiper-slide::before {
  content: '';
  display: block;
  width: 4.6875rem;
  height: 2.125rem;
  position: absolute;
  background-image: url("../images/scgy11.png");
  top: -3.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.show_product_four .content .swiper_scgy .swiper-slide-active {
  margin-top: 28.75rem;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide {
  margin-top: 0;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide::before {
  content: '';
  background-image: url("../images/scgy22.png");
  top: unset;
  bottom: -3.75rem;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide + .swiper-slide {
  margin-top: 28.75rem;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
  margin-top: 0;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide::before {
  content: '';
  background-image: url("../images/scgy22.png");
  top: unset;
  bottom: -3.75rem;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide {
  margin-top: 28.75rem;
}

.show_product_four .content .swiper_scgy .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide {
  margin-top: 0;
}

.show_product_four .content .swiper-button-next,
.show_product_four .content .swiper-button-prev {
  background-image: unset;
  display: flex;
  justify-content: center;
  align-items: center;
}

.show_product_four .content .swiper-button-next i,
.show_product_four .content .swiper-button-prev i {
  font-size: 3.125rem;
  color: var(--color-zt);
  line-height: 1;
}

.show_product_six {
  padding-top: 9.375rem;
  padding-bottom:3.25rem;
}

.show_product_six .content .table {
  overflow-x: auto;
}

.show_product_six .content .table .tit {
  padding: .75rem 8.125rem .875rem 1.875rem;
  background: linear-gradient(90deg, #74B82E 51%, rgba(119, 185, 50, 0.98) 58%, rgba(128, 190, 64, 0.91) 65%, rgba(144, 198, 88, 0.8) 72%, rgba(166, 209, 121, 0.64) 80%, rgba(194, 224, 164, 0.43) 87%, rgba(228, 241, 215, 0.19) 95%, rgba(255, 255, 255, 0) 100%);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.show_product_six .content .table .tit span {
  font-size: 2rem;
}

.show_product_six .content .table table {
  width: 100%;
}

.show_product_six .content .table table tr {
  border: none;
}

.show_product_six .content .table table tr td {
  border: none;
  border-bottom: 1px solid #ABAAAA;
  font-size: 1.5rem;
  color: #3E3A39;
  line-height: 1;
  padding-left: 6.25rem !important;
}

.show_product_six .content .table table tr td span {
  font-size: .875rem;
}

.show_product_six .content .table table tr td:nth-child(1) {
  border-right: 1px solid #ABAAAA;
  font-size: 1.5rem;
  color: #3E3A39;
  font-weight: 700;
  line-height: 1;
  padding-left: 1.875rem !important;
}

.show_product_six .content .table table tr td:nth-child(1) span {
  font-size: 1rem;
  color: #3E3A39;
  font-weight: 400;
}

.show_product_six .content .table table tr:nth-child(even) {
  background-color: rgba(150, 197, 54, 0.16);
}

.show_product_six .content .table1 {
  overflow-x: auto;
}

.show_product_six .content .table1 .tit {
  padding: .75rem 8.125rem .875rem 1.875rem;
  background: linear-gradient(90deg, #74B82E 51%, rgba(119, 185, 50, 0.98) 58%, rgba(128, 190, 64, 0.91) 65%, rgba(144, 198, 88, 0.8) 72%, rgba(166, 209, 121, 0.64) 80%, rgba(194, 224, 164, 0.43) 87%, rgba(228, 241, 215, 0.19) 95%, rgba(255, 255, 255, 0) 100%);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.show_product_six .content .table1 .tit span {
  font-size: 2rem;
}

.show_product_six .content .table1 table {
  width: 100%;
}

.show_product_six .content .table1 table tr {
  border: none;
}

.show_product_six .content .table1 table tr td {
  border: none;
  border-bottom: 1px solid #ABAAAA;
  font-size: 1.5rem;
  color: #3E3A39;
  line-height: 1.2;
  text-align: center;
}

.show_product_six .content .table1 table tr td span {
  font-size: .875rem;
  line-height: 1;
}

.show_product_six .content .table1 table tr td.left {
  border-right: 1px solid #ABAAAA;
  font-size: 1.5rem;
  color: #3E3A39;
  font-weight: 700;
}

.show_product_six .content .table1 table tr td.left span {
  font-size: 1rem;
  color: #3E3A39;
  font-weight: 400;
  line-height: 1 !important;
}

.show_product_seven .content .swiper_application {
  position: relative;
  margin: 0 -2.5rem;
  padding-bottom: 3.75rem;
}

.show_product_seven .content .swiper_application .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  background-color: var(--color-zt);
}

.show_product_seven .content .swiper_application .swiper-pagination-bullet-active {
  background-color: var(--color-zt);
}

.show_product_seven .content .swiper_application .swiper-slide {
  padding: 0 1.25rem;
}

.show_product_seven .content .swiper_application .swiper-slide .appli_box {
  position: relative;
}

.show_product_seven .content .swiper_application .swiper-slide .appli_box .over {
  border-radius: 1.875rem;
}

.show_product_seven .content .swiper_application .swiper-slide .appli_box .txt {
  color: #FFF;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  position: absolute;
  bottom: 1.875rem;
}

.show_product_eight {
  padding-bottom: 14rem;
}

.show_product_eight .content .msg-a1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6875rem 2.5rem;
}

.show_product_eight .content .msg-a1 .inpt input {
  width: 100%;
  height: 4rem;
  border-radius: 3.75rem;
  background: #F1F5F5;
  padding-left: 2.5rem;
}

.show_product_eight .content .msg-a3 {
  margin-top: 1.6875rem;
}

.show_product_eight .content .msg-a3 .inpt textarea {
  width: 100%;
  border-radius: 1.875rem;
  background: #F1F5F5;
  border: none;
  padding: 1rem 2.5rem;
}

.show_product_eight .content .all_more button {
  width: 100%;
  height: 100%;
  background-color: unset;
  border: none;
  color: #FFF;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  z-index: 99;
}

.show_product_eight .content .all_more:hover button {
  color: #1fa23a;
}

.bottom_fixd {
  display: none;
}
.list_about_sbzl .tabul li{
        color: #727272;
    text-align: justify;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.875rem;
    padding: 1rem;
    position: relative;
}
  
  .list_about_sbzl .tabul li::before{
      content:'';
      display: block;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: all .6s;
  }
.list_about_sbzl .tabul li.active,
.list_about_sbzl .tabul li:hover{
    color: #1fa23a;
    
}
.list_about_sbzl .tabul li.active::before,
.list_about_sbzl .tabul li:hover::before{
    width: 100%;
}
.list_about_sbzl .content{
    position: relative;
}


/*.list_about_sbzl .swiper_box{*/
/*    width: 100%;*/
/*   position: absolute;*/
/*   top: 0;*/
/*   opacity: 0;*/

/*}*/

.list_about_sbzl .swiper_box.active{
    width: 100%;
    position: relative;
    opacity: 1;
  
}
.list_about_sbzl .swiper_sbzl,
.list_about_sbzl .swiper_hangye{
  position: relative;
  margin: 0 -1.25rem;
  padding-bottom: 3.125rem;
}

.list_about_sbzl .swiper_sbzl .swiper-slide,
.list_about_sbzl .swiper_hangye .swiper-slide{
  padding: 1.25rem;
}

.list_about_sbzl .swiper_sbzl .swiper-slide .sbzl_box ,
.list_about_sbzl .swiper_hangye .swiper-slide .sbzl_box{
  background-image: url(../images/kuang.png);
  background-size: 100% 100%;
  padding: 1.4375rem;
}

.list_about_sbzl .swiper_sbzl .swiper-pagination-bullet,
.list_about_sbzl .swiper_hangye .swiper-pagination-bullet{
  width: .875rem;
  height: .875rem;
}

.list_about_sbzl .swiper_sbzl .swiper-pagination-bullet-active ,
.list_about_sbzl .swiper_hangye .swiper-pagination-bullet-active{
  background-color: var(--color-zt);
}

.list_sbproject {
  padding-bottom: 15.3125rem;
  background-image: url(../images/project_bg.jpg);
  background-size: cover;
}

.list_sbproject .content .table {
  overflow: auto;
}

.list_sbproject .content .table table {
  width: 100%;
}

.list_sbproject .content .table table tr td {
  color: #000;
  text-align: center;
  font-size: 1rem;
  padding: 1.5625rem !important;
}

.list_sbproject .content .table table tr td:not(:nth-last-child(1)) {
  border-right: none;
}

.list_sbproject .content .table table tr td:not(:nth-child(1)) {
  border-left: none;
}

.list_sbproject .content .table table tr:nth-child(odd) {
  background-color: #fff;
}

.list_sbproject .content .table table tr:nth-child(1) td {
  background-color: rgba(109, 176, 48, 0.5);
  color: #fff;
  font-size: 1.125rem;
}

#mozhu {
  display: none;
  width: 90%;
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.05);
}

#mozhu > .carousel__button.is-close {
  color: #D8D8D8;
  top: 2.5rem;
  right: 2.5rem;
}

.mozhu_box {
  width: 100%;
  padding: 6.25rem 4.0625rem;
}

.mozhu_box .content {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mozhu_box .content .tit {
  color: var(--color-zt);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.mozhu_box .content .desc {
  color: #636161;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.mozhu_box .content2 {
  position: relative;
  padding-bottom: 12.5rem;
}

.mozhu_box .content2 .con {
  position: relative;
}

.mozhu_box .content2 ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 9;
}

.mozhu_box .content2 ul li .tit {
  width: 6.125rem;
  height: 6.125rem;
  border-radius: 50%;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mozhu_box .content2 ul li .desc {
  color: #636161;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  flex: 1;
}

.mozhu_box .content2 ul li:nth-child(1) {
  width: 40%;
  top: 10%;
}

.mozhu_box .content2 ul li:nth-child(1) .tit {
  background-color: #1CA13A;
  order: 2;
}

.mozhu_box .content2 ul li:nth-child(1) .desc {
  padding-right: 3.125rem;
  order: 1;
  text-align: right;
}

.mozhu_box .content2 ul li:nth-child(2) {
  width: 40%;
  bottom: 10%;
  left: -2%;
}

.mozhu_box .content2 ul li:nth-child(2) .tit {
  background-color: #94C040;
  order: 2;
}

.mozhu_box .content2 ul li:nth-child(2) .desc {
  padding-right: 3.125rem;
  order: 1;
  text-align: right;
}

.mozhu_box .content2 ul li:nth-child(3) {
  width: 40%;
  top: 10%;
  left: 60%;
}

.mozhu_box .content2 ul li:nth-child(3) .tit {
  background-color: #1CA13A;
}

.mozhu_box .content2 ul li:nth-child(3) .desc {
  padding-left: 3.125rem;
}

.mozhu_box .content2 ul li:nth-child(4) {
  width: 40%;
  bottom: 10%;
  left: 60%;
}

.mozhu_box .content2 ul li:nth-child(4) .tit {
  background-color: #1CA13A;
}

.mozhu_box .content2 ul li:nth-child(4) .desc {
  padding-left: 3.125rem;
}

.mozhu_box .content2 .i1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2);
}

.mozhu_box .content2 .i2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
}

.mozhu_box .content2 .yuan {
  margin: 0 auto;
  width: 32.5rem;
  height: 32.5rem;
  border-radius: 50%;
  border: .4375rem solid #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mozhu_box .content2 .dot_quan {
  width: 32.5rem;
  height: 32.5rem;
  z-index: 4;
  -webkit-clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
  clip-path: polygon(50% 50%, 100% 0, 100% 0, 100% 0, 100% 0, 100% 0);
  border: 7px solid #9cd325;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mozhu_box .content2 .dot_quan {
  animation: 12s infinite forwards clipP;
}

.mozhu_box .content2 .img {
  width: 14.125rem;
}

.list_join_one {
  padding-top: 8.125rem;
  padding-bottom: 7.1875rem;
}

.list_join_one .desc {
  color: #737373;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_join_one .left {
  padding-right: 1.875rem;
}

.list_join_one .left .over {
  border-radius: 1.875rem;
}

.list_join_one .right {
  padding-left: 3.75rem;
}

.list_join_one .right .tit {
  color: #555;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}

.list_join_one .right .text {
  margin-top: .9375rem;
  color: #555;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_join_one .join_box1 {
  padding-top: 6.875rem;
  align-items: center;
}

.list_join_one .join_box1:nth-child(even) .right {
  order: 1;
  padding-right: 1.875rem;
  padding-left: 0;
}

.list_join_one .join_box1:nth-child(even) .left {
  order: 2;
  padding-left: 1.875rem;
  padding-right: 0;
}

.list_join_two {
  padding-bottom: 10rem;
  background: linear-gradient(180deg, #EFF7EA 0%, #FFF 100%);
}

.list_join_two .content ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.75rem 5rem;
}

.list_join_two .content ul li .icon {
  width: 6.0625rem;
  height: 6.0625rem;
  margin: 0 auto;
  transition: all .3s;
}

.list_join_two .content ul li .text {
  color: #323232;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75rem;
  text-align: center;
}

.list_join_two .content ul li:hover .icon {
  transform: rotateY(180deg);
}

.list_join_three {
  padding-bottom: 18.125rem;
  background-image: url(../images/gw_bg.jpg);
  background-size: cover;
}

.list_join_three .content .swiper_join {
  position: relative;
  overflow: hidden;
  margin: 0 -0.9375rem;
}

.list_join_three .content .swiper_join .swiper-slide {
  padding: .9375rem;
}

.list_join_three .content .swiper_join .swiper-slide .join_li {
  border-radius: 1.875rem;
  border: 1px solid #DBDBDB;
  background: #FFF;
  padding: 2.75rem 3.75rem 2.5rem 4rem;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .tit {
  color: #000;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #E3E1E1;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .text {
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .text span {
  color: #949494;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .text span:nth-child(3) {
  width: 30%;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .more_btn {
  display: flex;
  align-items: center;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .more_btn span {
  color: var(--color-zt);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-right: .625rem;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .more_btn i {
  display: inline-block;
  width: 2.4375rem;
  position: relative;
  transition: all .4s;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .more_btn i::before {
  content: '';
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--color-zt);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
  transition: all .4s;
}

.list_join_three .content .swiper_join .swiper-slide .join_li .more_btn:hover i {
  transform: translateX(0.625rem);
}

.list_join_three .content .swiper_join .swiper_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_join_three .content .swiper_join .swiper-pagination {
  position: relative;
}

.list_join_three .content .swiper_join .swiper-pagination-bullet {
  position: relative;
  margin-left: -0.0625rem;
  line-height: 2.25rem;
  color: #666666;
  text-decoration: none;
  background-color: #fff;
  border: .0625rem solid #ddd;
  margin: 0 3.2px;
  font-weight: 500;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  opacity: 1;
  position: relative;
}

.list_join_three .content .swiper_join .swiper-button-next,
.list_join_three .content .swiper_join .swiper-button-prev {
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #D8D8D8;
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  margin-top: 0;
  background: unset;
  margin: 0 3.2px;
  background-color: #fff;
}

.list_join_three .content .swiper_join .swiper-pagination-bullet-active {
  background-color: var(--color-zt);
  color: #fff;
}

.list_join_three .content .ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}

.list_join_three .content .ul li {
  border-radius: 1.875rem;
  border: 1px solid #DBDBDB;
  background: #FFF;
  padding: 2.75rem 3.75rem 2.5rem 4rem;
}

.list_join_three .content .ul li .tit {
  color: #000;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #E3E1E1;
}

.list_join_three .content .ul li .text {
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list_join_three .content .ul li .text span {
  color: #949494;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_join_three .content .ul li .text span:nth-child(3) {
  width: 30%;
}

.list_join_three .content .ul li .more_btn {
  display: flex;
  align-items: center;
}

.list_join_three .content .ul li .more_btn span {
  color: var(--color-zt);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-right: .625rem;
}

.list_join_three .content .ul li .more_btn i {
  display: inline-block;
  width: 2.4375rem;
  position: relative;
  transition: all .4s;
}

.list_join_three .content .ul li .more_btn i::before {
  content: '';
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--color-zt);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
  transition: all .4s;
}

.list_join_three .content .ul li .more_btn:hover i {
  transform: translateX(0.625rem);
}

.join_pop {
  display: none;
  width: 90%;
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.05);
}

.join_pop > .carousel__button.is-close {
  color: #D8D8D8;
  top: 2.5rem;
  right: 2.5rem;
}

.join_pop .content {
  width: 100%;
  padding: 7.5rem 4rem 4.75rem 4.3125rem;
}

.join_pop .content .title {
  padding-bottom: 2.1875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.join_pop .content .title .le {
  color: var(--color-zt);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.join_pop .content .title .ri {
  color: var(--color-zt);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.join_pop .content .title .ri span {
  margin-left: 2.875rem;
}

.join_pop .con .text {
  color: #636161;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.join_pop .con .text span {
  font-weight: 700;
  color: var(--color-zt);
}

.join_pop .con .text p {
  margin-top: .3125rem;
  color: #9E9E9E;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.join_pop .con .text_con h3 {
  position: relative;
  color: #636161;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875rem;
  padding-left: .9375rem;
  margin-bottom: 1.5rem;
}

.join_pop .con .text_con h3::before {
  content: '';
  display: inline-block;
  width: .375rem;
  height: 1.4375rem;
  background-color: var(--color-zt);
  position: absolute;
  left: 0;
  top: 2px;
}

.join_pop .con .text_con p {
  color: #636161;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_contact .content ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.0625rem;
}

.list_contact .content ul li i {
  font-size: 1.375rem;
  color: var(--color-zt);
}

.list_contact .content ul .ri {
  flex: 1;
  padding-left: 1.25rem;
}

.list_contact .content ul .ri p {
  color: #616663;
  font-size: 1.25rem;
  font-weight: 500;
}

.list_contact .content ul .ri .p1 {
  margin-top: .8125rem;
  font-size: 2.5rem;
  font-weight: 500;
  background: linear-gradient(90deg, #6DB030 0%, #1CA13A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_contact .content ul:nth-child(1) .ri .p1 {
  font-weight: 600;
}

.list_contact .content .social-share .social-share-icon {
  width: 3.5625rem;
  height: 3.5625rem;
  line-height: 3.5625rem;
  font-size: 1.5rem;
  background: #DEEBDB;
  border: none;
  color: var(--color-zt);
}

.list_contact .content .fenxiang li {
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 50%;
  background: #DEEBDB;
  margin-right: .6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .3s;
}

.list_contact .content .fenxiang li i {
  font-size: 1.5625rem;
  color: var(--color-zt);
}

.list_contact .content .fenxiang li .ewm {
  width: 7.5rem;
  height: 7.5rem;
  position: absolute;
  top: -8.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  box-shadow: 0px 0px 40px 0px rgba(89, 172, 50, 0.15);
}

.list_contact .content .fenxiang li .ewm::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.list_contact .content .fenxiang li .ewm img {
  width: 100%;
  height: 100%;
}

.list_contact .content .fenxiang li:hover {
  cursor: pointer;
  background-color: var(--color-zt);
}

.list_contact .content .fenxiang li:hover .ewm {
  display: block;
}

.list_contact .content .fenxiang li:hover i {
  color: #fff;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 {
  position: absolute;
  z-index: 9998;
  right: 2.5rem;
  bottom: 2.5rem;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 dl {
  color: #323232;
  font: 500 1rem/4rem "sourcehansans";
  background-color: #fff;
  border-radius: 2rem;
  width: 10.5rem;
  height: 4rem;
  text-align: center;
  cursor: pointer;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 dl + dl {
  margin-top: 1.5625rem;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 dl.on {
  color: var(--color-zt);
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 {
  width: 20.48611%;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl {
  padding-left: 12%;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a {
  display: block;
  color: #323232;
  font: 500 1rem/1.5em "sourcehansans";
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a + a {
  margin-top: 1.25em;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a:hover,
.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a.active {
  color: #02489D;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b3 {
  width: 100%;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b3 #map {
  width: 100%;
  height: 37.5rem;
  border-radius: 1.875rem;
  overflow: hidden;
}

.list_layout {
  padding-top: 10.625rem;
  padding-bottom: 11.875rem;
  overflow: hidden;
}

.list_layout .content {
  margin:0 auto;
  position: relative;
}
#chart-container{
    width: 100%;
    height: 80vh;
}

.list_layout .content .img {
  padding-right: 3.125rem;
}

.list_layout .content .a7_list1 li {
  position: absolute;
}

.a7_list1 li {
  position: absolute;
}

.a7_list1 li.ask-a117 {
  left: 76%;
  top: 48%;
}

@media (max-width: 768px) {
  .a7_list1 li.ask-a117 {
    left: 75%;
    top: 42%;
  }
}

.a7_list1 li .tit {
  cursor: pointer;
}

.a7_list1 li .tit .din {
  width: 0.75rem;
}

.a7_list1 li .tit .din i {
  display: block;
  position: relative;
  z-index: 1;
}

.a7_list1 li .tit .din i span {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  display: block;
  background: rgba(4, 103, 172, 0.1);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
}

.a7_list1 li .tit .din i span.span2 {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  z-index: 6;
}

.a7_list1 li .tit .din i span.span3 {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  z-index: 5;
}

.a7_list1 li .tit .din i span.span4 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  z-index: 4;
}

.a7_list1 li .tit .din i span.span5 {
  width: 640px;
  height: 640px;
  margin: -320px 0 0 -320px;
  z-index: 3;
}

.a7_list1 li .tit .din i span.span6 {
  width: 1280px;
  height: 1280px;
  margin: -640px 0 0 -640px;
  z-index: 2;
}

.a7_list1 li .tit .din i span.span7 {
  width: 2560px;
  height: 2560px;
  margin: -1280px 0 0 -1280px;
  z-index: 1;
}

.a7_list1 li .tit .din img {
  width: 100%;
}

@media (max-width: 768px) {
  .a7_list1 li .tit .din img {
    opacity: 0;
  }
}

.a7_list1 li .tit p {
  color: #13315B;
  font-size: 0.875rem;
  line-height: 1em;
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .a7_list1 li .tit p {
    opacity: 0;
  }
}

.a7_list1 li .cont-p {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 400%;
  border-radius: 0.9375rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1.25rem 0px #C9C9C9;
  padding: 1.325rem 1.5rem;
  width: 22rem;
  z-index: 2;
  border: 1px solid #C9C9C9;
  color: #484848;
}

@media (max-width: 768px) {
  .a7_list1 li .cont-p {
    display: none !important;
  }
}

.a7_list1 li .cont-p .p1 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5em;
}

.a7_list1 li .cont-p .p2 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 0.25rem;
}

.a7_list1 li.active .cont-p {
  display: block;
}

@-webkit-keyframes FpulseSlow2 {
  0% {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes FpulseSlow2 {
  0% {
    -moz-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes FpulseSlow2 {
  0% {
    -o-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes FpulseSlow2 {
  0% {
    -webkit-transform: scale(0.25);
    -moz-transform: scale(0.25);
    -o-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.FpulseSlow2 {
  -webkit-animation: FpulseSlow2 infinite 3s linear;
  -moz-animation: FpulseSlow2 infinite 3s linear;
  -o-animation: FpulseSlow2 infinite 3s linear;
  animation: FpulseSlow2 infinite 3s linear;
  opacity: 0;
}

.search-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  top: 0;
  left: 0;
  display: none;
}

.search-box {
  display: none;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: .625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.search-box input[type="text"] {
  padding: 1.5625rem;
  border: unset;
  border-radius: 1.25rem;
  width: 100%;
  outline: none;
}

.search-box button {
  background: unset;
  color: #999;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.875rem;
  top: 1.4375rem;
}

.search-box button i {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.index_two {
  position: relative;
  width: 100%;
  height: 100vh;
}

.index_two .parallel {
  width: 100%;
  height: 100%;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  z-index: 50;
  box-sizing: border-box;
}

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

.index_two .top .m_show{
    display: none;
}

.index_two .top .p1 {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #000;
  font-weight: bold;
  font-size: 4.25rem;
  line-height: 4.375rem;
}

.index_two .top video {
  width: 100%;
  position: absolute;
  left: 0;
  height: 100vh;
  object-fit: cover;
}

.top-video-overlay {
  position: absolute;
  height: 100px;
  width: 100vw;
  top: 0;
  /*background-image: url(../images/gradient.png);*/
  z-index: 10;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  z-index: 2;
}

.index_two .top .p1 {
  z-index: 4;
  font-family: "Inter";
  line-height: 5rem;
  color: #DF1523;
}
.guolei{
    color: #fff;
    position: relative;
    z-index: 33;
}
.guolei .left {
    width: 49%;
}
.guolei .left .img img{
    height: 8rem;
}
.guolei .re .img img{
    height: 10rem;
}
.guolei .re {
    width: 49%;
}.guolei >div{
    padding: 7rem 2rem 9rem;
    overflow: hidden;
        background: #F0F7EA;
}.guolei .left .img{
    left: 0;
    bottom: 0;
}.guolei  .title{
    font-size: 2rem;
    font-weight: bold;
    color: #6DB030;
}

.guolei .des{
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #616663;
}.guolei .title i img{
    width: 2rem;
    position: relative;
    top: -1.5rem;
}.guolei .re .img{
right: 0;
   top: 0;
}.jzg{
    right: 8%;
    top: -9%;
}
.list_about_sbzl2{
    background: #F0F7EA;
}
.list_about_sbzl  .desc{
        color: #727272;
    text-align: justify;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.875rem;
    padding-right: 3.75rem;
}
.list_about_sbzl .title{
    font-size: 1.125rem;
    margin-top: 1rem;
}
.video-ban{
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    overflow: hidden;
}
.video-ban .m_show{
    display: none;
}
.xinag-div{
    right: 0;
top: 0;    width: 20%;
    
}.xinag-div img{
 width: 100%;
}
@media (max-width: 500px) {
    
    .xinag-div{
   
top: 80%;   
    
}
.video-ban .m_hide{
    display: none;
}
.video-ban .m_show{
    display:block;
}
}


.desc-text {
    color: #737373;
 
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}
.desc-text span{
    color: #6DB030;
    font-weight: bold;    font-size: 1.35rem;
    
}

 .desc-text  p{
margin-top: .3125rem;
    color: #9E9E9E;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.875rem;
}