@charset "UTF-8";
body, html {
  font-size: 0.8333333333vw;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  body, html {
    font-size: 1vw;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  body, html {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 767px) {
  body, html {
    font-size: 14px;
  }
}
body {
  outline: none;
  font-family: "Poppins", "Noto Sans SC", sans-serif !important;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #868686;
  --color-zt: #0ACB74;
  --head-height: 6.25rem;
  --cbasta: 13.5416666667%;
  --pandrd: 5.375rem 0;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.78125%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
    --pantop: 0;
  }
}

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

.wh1 {
  padding: 0 5.1041666667%;
}
@media (max-width: 768px) {
  .wh1 {
    padding: 0 4%;
  }
}

.flex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-z {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_left {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_left1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex2 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex3 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex21 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          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 1rem/3.125rem "Poppins";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: 0.875rem;
  }
}
.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);
  -moz-transform: scale(0);
   -ms-transform: scale(0);
    -o-transform: scale(0);
       transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
       transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}
.more-msl:hover {
  color: #fff;
}
.more-msl:hover::before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
   -ms-transform: scale(2);
    -o-transform: scale(2);
       transform: scale(2);
}
.more-msl.bs {
  color: #fff;
  background: transparent;
  border: 1px 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 {
  padding: 0.8rem 1.75rem;
  border-radius: 3.125rem;
  background-color: #2B2D2D;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.65rem 1.4rem;
  }
}
.more-b p {
  font-size: 1rem;
  line-height: 1.5em;
}
.more-b i {
  display: block;
  font-size: 1rem;
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 3.125rem;
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.more-b:hover {
  color: #fff;
}
.more-b:hover::after {
  -webkit-transform-origin: center left;
     -moz-transform-origin: center left;
      -ms-transform-origin: center left;
       -o-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.more-b.ls {
  background: var(--color-zt);
  border: 1px solid transparent;
}
.more-b.ls::after {
  background: #fff;
}
.more-b.ls:hover {
  color: var(--color-zt);
  border: 1px solid var(--color-zt);
}
.more-b.bs {
  background: #fff;
  color: #2B2D2D;
}
.more-b.bs::after {
  background: #2B2D2D;
}
.more-b.bs:hover {
  color: #fff;
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
}
.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
@media (max-width: 990px) {
  .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: -webkit-calc(70vh - 60px);
    padding-bottom: -moz-calc(70vh - 60px);
    padding-bottom: calc(70vh - 60px);
    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.202764977%;
    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;
  }
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head2 {
  line-height: var(--head-height);
  position: relative;
  --as-calore: #fff;
  border-bottom: 1px solid transparent;
}
.head .head2 .logo a {
  display: block;
}
.head .head2 .logo a img {
  height: 2rem;
}
.head .head2 .logo a img.b {
  display: none;
}
.head .head2 .zywena {
  padding: 0 2rem;
  position: relative;
  border-left: 1px solid #D0D0D0;
  margin-left: 2rem;
}
.head .head2 .zywena a.rhgxt {
  color: var(--as-calore);
  font: 400 1.125rem/1em "Poppins";
  display: block;
}
.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 600;
}
.head .head2 .zywena .yy-sec {
  position: absolute;
  left: 0;
  width: 100%;
  top: 3.7rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  row-gap: 9px;
  white-space: nowrap;
  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: 1px solid #333;
}
.head .head2 .zywena .yy-sec a:hover {
  color: var(--color-zt);
}
.head .head2 .sska {
  line-height: 1em;
  margin-left: 0.65rem;
}
.head .head2 .sska a {
  color: var(--as-calore);
  display: block;
}
.head .head2 .sska a i {
  font-size: 1.25rem;
}

.head.sticky .head2, .head:hover .head2 {
  backdrop-filter: blur(14px);
  background-color: #fff;
  --as-calore: #2B2D2D;
  border-color: rgba(0, 0, 0, 0.1);
}
.head.sticky .head2 .logo a img.a, .head:hover .head2 .logo a img.a {
  display: none;
}
.head.sticky .head2 .logo a img.b, .head:hover .head2 .logo a img.b {
  display: inline-block;
}
.head.sticky .head2 #menu .nav_a1 li:hover > a span, .head.sticky .head2 #menu .nav_a1 li.active > a span, .head:hover .head2 #menu .nav_a1 li:hover > a span, .head:hover .head2 #menu .nav_a1 li.active > a span {
  color: var(--color-zt);
}
.head.sticky .head2 #menu .nav_a1 li:hover > a span::after, .head.sticky .head2 #menu .nav_a1 li.active > a span::after, .head:hover .head2 #menu .nav_a1 li:hover > a span::after, .head:hover .head2 #menu .nav_a1 li.active > a span::after {
  -webkit-filter: inherit;
          filter: inherit;
}

#menu {
  margin-right: 1vw;
}
#menu .nav_a1 li {
  float: left;
  position: relative;
}
#menu .nav_a1 li a {
  display: block;
  color: var(--as-calore);
  font-family: "Poppins";
}
#menu .nav_a1 li > a {
  font-size: 1.125rem;
  padding: 0 1.5625rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1680px) {
  #menu .nav_a1 li > a {
    padding: 0 1.35em;
  }
}
@media (max-width: 1366px) {
  #menu .nav_a1 li > a {
    padding: 0 0.8em;
  }
}
@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.5em;
  }
}
#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
}
#menu .nav_a1 li .sec {
  position: absolute;
  top: -webkit-calc(100% + 1px);
  top: -moz-calc(100% + 1px);
  top: calc(100% + 1px);
  width: 52.375rem;
  left: 50%;
  background: white;
  z-index: 9;
  text-align: center;
  border-bottom-left-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
  padding: 3.25rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(20px);
     -moz-transform: translateX(-50%) translateY(20px);
      -ms-transform: translateX(-50%) translateY(20px);
       -o-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  line-height: 1em;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 {
  width: 32.6666666667%;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D5D5D5;
  padding: 0 1rem;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 a p {
      color: #2B2D2D;
    font-size: 1rem;
    line-height: 1.35em;
    text-align: left;
    padding: 1.35rem 0;
    width: calc(96% - 1rem);
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 a i {
  color: #D5D5D5;
  font-size: 1.25rem;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 a:hover {
  background: var(--color-zt);
  border-radius: 4.375rem;
  border-color: transparent;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 a:hover p {
  color: #fff;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a1 a:hover i {
  color: #fff;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 {
  width: 59.3333333333%;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 u {
  display: block;
  font-size: 0;
  overflow: hidden;
  border-radius: 1.5625rem;
  position: relative;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 u::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -moz-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -o-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: linear-gradient(180deg, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 u img {
  width: 100%;
  aspect-ratio: 445/274;
  -o-object-fit: cover;
     object-fit: cover;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 .more-axa {
  gap: 1.5rem;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1.5rem;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 .more-axa a {
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 .more-axa a.bs {
  color: #0ACB74;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 .more-axa a.bs::after {
  background-color: #0ACB74;
}
#menu .nav_a1 li .sec .sec-v1 .sec-a2 .more-axa a.bs:hover {
  color: #fff;
}
#menu .nav_a1 li .sec1 {
  position: absolute;
  top: -webkit-calc(100% + 1px);
  top: -moz-calc(100% + 1px);
  top: calc(100% + 1px);
  width: 88rem;
  left: 100%;
  background: white;
  z-index: 9;
  text-align: center;
  border-bottom-left-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(20px);
     -moz-transform: translateX(-50%) translateY(20px);
      -ms-transform: translateX(-50%) translateY(20px);
       -o-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  line-height: 1em;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 {
  width: 28.1275551922%;
  padding: 2.5rem 2.25rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D5D5D5;
  padding: 0 1.5rem;
  width: 100%;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 a p {
  color: #2B2D2D;
  font-size: 1rem;
     line-height: 1.35em;
    text-align: left;
    padding: 1.35rem 0;
    width: calc(96% - 1rem);
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 a i {
  color: #D5D5D5;
  font-size: 1.25rem;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 a.on {
  background: var(--color-zt);
  border-radius: 4.375rem;
  border-color: transparent;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 a.on p {
  color: #fff;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a1 a.on i {
  color: #fff;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 {
  width: 26.4922322159%;
  padding: 1.5rem 2.875rem;
  background: rgba(243, 245, 246, 0.4);
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz {
  display: none;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(43, 45, 45, 0.7);
  font-size: 1rem;
  line-height: 1.25em;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a p{
    text-align: left;
    padding: 0.75rem 0;
    width: calc(96% - 1rem);
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a i {
  color: #D5D5D5;
  font-size: 1.35rem;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a:hover, #menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a.on {
  color: var(--color-zt);
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a:hover i, #menu .nav_a1 li .sec1 .sec-v2 .sec-a2 .ttz a.on i {
  color: var(--color-zt);
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 {
  width: 45.1349141455%;
  padding: 2.5rem 3.5rem;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz {
  display: none;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz .ase-asx1 dl {
  display: none;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz u {
  display: block;
  font-size: 0;
  overflow: hidden;
  border-radius: 1.5625rem;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz u img {
  width: 100%;
  aspect-ratio: 445/274;
  -o-object-fit: cover;
     object-fit: cover;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz .more-axa {
  gap: 1.5rem;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1.5rem;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz .more-axa a {
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz .more-axa a.bs {
  color: #0ACB74;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz .more-axa a.bs::after {
  background-color: #0ACB74;
}
#menu .nav_a1 li .sec1 .sec-v2 .sec-a3 .ttz .more-axa a.bs:hover {
  color: #fff;
}
#menu .nav_a1 li.icax1 .sec {
  left: -150%;
}
#menu .nav_a1 li.icax2 .sec, #menu .nav_a1 li.icax5 .sec {
  width: 70.1875rem;
  left: -150%;
}
#menu .nav_a1 li.icax2 .sec .sec-v1 .sec-a1, #menu .nav_a1 li.icax5 .sec .sec-v1 .sec-a1 {
  width: 51.4146341463%;
}
#menu .nav_a1 li.icax2 .sec .sec-v1 .sec-a1 .weja, #menu .nav_a1 li.icax5 .sec .sec-v1 .sec-a1 .weja {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#menu .nav_a1 li.icax2 .sec .sec-v1 .sec-a1 a, #menu .nav_a1 li.icax5 .sec .sec-v1 .sec-a1 a {
  width: 46.4895635674%;
}
#menu .nav_a1 li.icax2 .sec .sec-v1 .sec-a2, #menu .nav_a1 li.icax5 .sec .sec-v1 .sec-a2 {
  width: 43.4146341463%;
}
#menu .nav_a1 li.icax5 .sec {
  left: -40%;
}
#menu .nav_a1 li:hover .sec,
#menu .nav_a1 li:hover .sec1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(-50%) translateY(0);
     -moz-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
       -o-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  opacity: 1;
}

.nav-img {
  padding-bottom: 65%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 0.9375rem;
}
.nav-img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 搜索 */
.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: 40px 10.4%;
  height: 472px;
  background-color: #fff;
  text-align: right;
  display: none;
}
.sskbj .searchbox1 .searchs {
  width: 80%;
  max-width: 800px;
  margin-top: 2vw;
}
.sskbj .searchbox1 .searchs dt {
  font-size: 2rem;
  line-height: 1.5em;
  text-align: left;
  margin-bottom: 1em;
}
.sskbj .searchbox1 .searchs .sertext {
  width: 75%;
  border-radius: 1.875rem;
  font-size: 1rem;
  text-indent: 1em;
}
.sskbj .searchbox1 .searchs .serbtn {
  border-radius: 1.875rem;
}
.sskbj .search-close-btn {
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.sskbj .search-close-btn:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sskbj .search-close-btn i {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
}
.sskbj .serbtn {
  background: var(--color-zt);
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
     -moz-animation: sticky 1s;
       -o-animation: sticky 1s;
          animation: sticky 1s;
}

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

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

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

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.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: 34px;
}
.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: 38px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #333;
  font-family: "Poppins";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}
.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: 20px;
  height: 15px;
}
.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: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 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: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px 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: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.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: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  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;
}

@media (max-width: 990px) {
  body {
    padding: 60px 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%;
  height: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}
.pc-banner .mySwipera .swiper-slide .img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.pc-banner .mySwipera .swiper-slide .img img.aimg {
  visibility: hidden;
}
@media (max-width: 990px) {
  .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;
}
.pc-banner .mySwipera .banwez1 {
  position: absolute;
  width: 100%;
  z-index: 99;
  color: #FFFFFF;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pc-banner .mySwipera .banwez1 .tit {
  font-size: 4rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
  }
}
.pc-banner .mySwipera .banwez1 .p1 {
  font-size: 4rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .p1 {
    font-size: 2rem;
  }
}
.pc-banner .mySwipera .banwez1 .more-axa {
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pc-banner .mySwipera .er-gat {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 100%;
  z-index: 9;
  text-align: left;
}
.pc-banner .mySwipera .er-gat .pagination .list {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  width: auto;
  height: 2rem;
  background: transparent;
  border-radius: 0;
  outline: 0;
}
.pc-banner .mySwipera .er-gat .pagination button {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.pc-banner .mySwipera .er-gat .pagination .list + .list {
  margin-left: 2.5rem !important;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .er-gat .pagination .list + .list {
    margin-left: 1.5rem !important;
  }
}
.pc-banner .mySwipera .er-gat .pagination button svg {
  position: absolute;
  width: 2rem;
  height: 2rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  left: 72%;
  top: 72%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pc-banner .mySwipera .er-gat .pagination .swiper-pagination-bullet-active button svg {
  -webkit-animation-name: circ;
     -moz-animation-name: circ;
       -o-animation-name: circ;
          animation-name: circ;
  -webkit-animation-duration: 6.5s;
     -moz-animation-duration: 6.5s;
       -o-animation-duration: 6.5s;
          animation-duration: 6.5s;
  stroke-dashoffset: 0\0 ;
  stroke-dasharray: 0\0 ;
}
.pc-banner a.mouse {
  position: absolute;
  left: 0;
  bottom: 4%;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}
.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 500 0.875rem/1.5em "Poppins";
  margin-top: 0.5rem;
}
.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: 2px;
  height: 2rem;
  margin: 0 auto;
  position: relative;
  overflow-y: hidden;
}
.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 50%;
  background: #0ACB74;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
}

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

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

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

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
.label_el {
  color: rgba(26, 26, 26, 0);
  text-shadow: none;
  -webkit-text-stroke-width: 0.47px;
  -webkit-text-stroke-color: #fff;
}
@media (max-width: 768px) {
  .label_el {
    -webkit-text-stroke-width: 0.3px;
  }
}

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

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

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

@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes boderM {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  75% {
    -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes boderM {
  0% {
    -moz-transform: translate(-50%, -50%) scale(1);
         transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  75% {
    -moz-transform: translate(-50%, -50%) scale(2);
         transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes boderM {
  0% {
    -o-transform: translate(-50%, -50%) scale(1);
       transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  75% {
    -o-transform: translate(-50%, -50%) scale(2);
       transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes boderM {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
         -o-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  75% {
    -webkit-transform: translate(-50%, -50%) scale(2);
       -moz-transform: translate(-50%, -50%) scale(2);
         -o-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes bordershow {
  50% {
    box-shadow: 0px 0px 0.625rem 0 var(--color-zt);
  }
}
@-moz-keyframes bordershow {
  50% {
    box-shadow: 0px 0px 0.625rem 0 var(--color-zt);
  }
}
@-o-keyframes bordershow {
  50% {
    box-shadow: 0px 0px 0.625rem 0 var(--color-zt);
  }
}
@keyframes bordershow {
  50% {
    box-shadow: 0px 0px 0.625rem 0 var(--color-zt);
  }
}
.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

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

.fang img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.fang:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.xz img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.xz:hover img {
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.top {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.top:hover {
  -webkit-transform: translateY(-1rem);
     -moz-transform: translateY(-1rem);
      -ms-transform: translateY(-1rem);
       -o-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.gong-p {
  color: #868686;
  font-size: 1.125rem;
  line-height: 1.85em;
  font-weight: 400;
  /*text-align: justify;*/
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}
.gong-p.bs {
  color: #FFF;
}

.title1 .entit {
  color: #0ACB74;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.125em;
}
.title1 .entit:not(.text-anime) {
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .title1 .entit {
    font-size: 2rem;
  }
}
.title1 .tit {
  color: #2B2D2D;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-top: 0.35rem;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.8rem;
  }
}
.title1 .txt {
  color: #777777;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  .title1 .txt {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}
.title1.bs .entit {
  color: #FFF;
  background: none;
  -webkit-text-fill-color: inherit;
}
.title1.bs .tit {
  color: #FFF;
}
.title1.ta .entit {
  margin: 0 auto;
}

@-webkit-keyframes rotatedHalf1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-moz-keyframes rotatedHalf1 {
  0% {
    -moz-transform: rotate(0);
         transform: rotate(0);
  }
  50% {
    -moz-transform: rotate(180deg);
         transform: rotate(180deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@-o-keyframes rotatedHalf1 {
  0% {
    -o-transform: rotate(0);
       transform: rotate(0);
  }
  50% {
    -o-transform: rotate(180deg);
       transform: rotate(180deg);
  }
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes rotatedHalf1 {
  0% {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.layer-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.layer-btn .mask {
  position: absolute;
  left: -1.875rem;
  top: -1.875rem;
  width: -webkit-calc(100% + 3.75rem);
  width: -moz-calc(100% + 3.75rem);
  width: calc(100% + 3.75rem);
  pointer-events: none;
  height: -webkit-calc(100% + 3.75rem);
  height: -moz-calc(100% + 3.75rem);
  height: calc(100% + 3.75rem);
  -o-background-size: cover;
     background-size: cover;
}
.layer-btn .mask > .lazy {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-background-size: cover;
     background-size: cover;
  -webkit-animation-name: spin;
  -moz-animation-name: spin;
    -o-animation-name: spin;
       animation-name: spin;
  -webkit-animation-duration: 4s;
  -moz-animation-duration: 4s;
    -o-animation-duration: 4s;
       animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
       animation-timing-function: linear;
}

.layer-btn .mask > svg {
  width: -webkit-calc(100% - 3rem);
  width: -moz-calc(100% - 3rem);
  width: calc(100% - 3rem);
  height: -webkit-calc(100% - 3rem);
  height: -moz-calc(100% - 3rem);
  height: calc(100% - 3rem);
}

.layer-btn .mask > svg path {
  -webkit-transform-origin: 50% 50%;
     -moz-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.layer-btn .mask > svg .p1 {
  -webkit-animation: circleRotate 4s linear infinite;
     -moz-animation: circleRotate 4s linear infinite;
       -o-animation: circleRotate 4s linear infinite;
          animation: circleRotate 4s linear infinite;
}

.layer-btn .mask > svg .p2 {
  -webkit-animation: circleRotateReverse 4s linear infinite;
     -moz-animation: circleRotateReverse 4s linear infinite;
       -o-animation: circleRotateReverse 4s linear infinite;
          animation: circleRotateReverse 4s linear infinite;
}

.layer-btn .mask > svg.cm {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.layer-btn .mask > svg.cr {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.layer-btn .mask:after {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #0ACB74;
  border-right: 1px solid #0ACB74;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
       transform: rotate(45deg);
}

.layer-btn .mask.noArrow:after {
  opacity: 0;
}

.layer-btn i {
  color: #fff;
}

.layer-btn > svg {
  width: 8px;
  display: block;
  margin-top: 5px;
}

.layer-btn:hover .mask > svg.cm {
  opacity: 0;
}

.layer-btn:hover .mask > svg.cr {
  opacity: 1;
}

.layer-btn .mask > svg, .layer-col:before, .layout-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}

@-o-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    -o-transform: rotate(1turn);
       transform: rotate(1turn);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
      -o-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}
@-webkit-keyframes circleRotateReverse {
  0% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-moz-keyframes circleRotateReverse {
  0% {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
  to {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
  }
}
@-o-keyframes circleRotateReverse {
  0% {
    -webkit-transform: rotate(1turn);
    -o-transform: rotate(1turn);
       transform: rotate(1turn);
  }
  to {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
  }
}
@keyframes circleRotateReverse {
  0% {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
      -o-transform: rotate(1turn);
         transform: rotate(1turn);
  }
  to {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
  }
}
@-webkit-keyframes circleRotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-moz-keyframes circleRotate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
         transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}
@-o-keyframes circleRotate {
  0% {
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
       transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    -o-transform: rotate(1turn);
       transform: rotate(1turn);
  }
}
@keyframes circleRotate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
      -o-transform: rotate(0);
         transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
      -o-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}
a.more-a {
  margin: 1rem;
  display: block;
}
a.more-a:before {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #0ACB74;
}
@media (max-width: 768px) {
  a.more-a {
    margin: 0;
    -webkit-transform: scale(0.7);
       -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
         -o-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.cont1 {
  padding: 10.3125rem 0 5rem;
  position: relative;
}
@media (max-width: 768px) {
  .cont1 {
    padding: 2.5rem 0;
  }
}
.cont1::after {
  content: "";
  position: absolute;
  left: -12%;
  top: -22rem;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.14);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.cont1 .a1v1 .ashx1 {
  margin-bottom: 0.65rem;
  width: 100%;
  margin-top: 1rem;
  gap: 0.65rem 0;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .ashx1 {
    width: 100%;
    margin-top: 1rem;
  }
}
.cont1 .a1v1 .ashx1 li + li {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(43, 45, 45, 0.2);
}
@media (max-width: 768px) {
    .cont1 .a1v1 .ashx1 li{
        width: 100%;
    }
  .cont1 .a1v1 .ashx1 li + li {
    padding-left: 0;
    margin-left: 0; border-left: none;
  }
}
.cont1 .a1v1 .ashx1 li a {
  display: block;
  color: #2B2D2D;
  font-size: 1.45rem;
  line-height: 1em;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .ashx1 li a {
    font-size: 1.125rem;
    line-height: 2em;
  }
}
.cont1 .a1v1 .ashx1 li:hover a, .cont1 .a1v1 .ashx1 li.on a {
  font-weight: 700;
  color: var(--color-zt);
}
.cont1 .a1v2 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 {
    margin-top: 1.25rem;
  }
}
.cont1 .a1v2 .tta .mySwiper1 {
  padding: 0 var(--cbasta);
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa {
  position: relative;
  z-index: 1;
  padding: 2.75rem 9% 3rem;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #F3F5F6;
  border-radius: 1.875rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .ftoita {
  font-size: 1rem;
  color: var(--color-zt);
  line-height: 1.5em;
  margin-bottom: 0.5rem;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .tit {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .tit {
    font-size: 1.35rem;
  }
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .ftit {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
  height: 3em;
  overflow: hidden;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .img {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  -webkit-transform: translate(-50%, -50%) scale(0);
     -moz-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
       -o-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 60%;
  aspect-ratio: 1/1;
  background: var(--color-zt);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .img img {
  width: 100%;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .nmasxa {
  gap: 1.25rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa .nmasxa .ls {
  opacity: 0;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover::after {
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  top: 57%;
  transform: translateY(-50%);
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover .img::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
     -moz-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
       -o-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover .nmasxa {
  right: 0;
  width: 100%;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover .nmasxa .ls {
  opacity: 1;
  border: 1px solid var(--color-zt);
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover .nmasxa .bs {
  background: #2B2D2D;
  color: #fff;
}
.cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover .nmasxa .bs::after {
  background: var(--color-zt);
}

.cont2 {
  padding: 5rem 0 7.25rem;
  position: relative;
}
@media (max-width: 768px) {
    .cont1 .a1v2 .tta .mySwiper1 .swiper-slide .cont-pa:hover::after{
         top: 50%;
    }
  .cont2 {
    padding: 1rem 0 2.5rem;
  }
  .cont2 a.more-a {
    margin-right: 1rem;
  }
}
.cont2::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 20%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.14);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.cont2 .a2v2 {
  margin-top: 4.375rem;
  padding-left: var(--cbasta);
}
@media (max-width: 768px) {
  .cont2 .a2v2 {
    margin-top: 2rem;
  }
}
.cont2 .a2v2 .mySwiper2 {
  padding-right: var(--cbasta);
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa {
  position: relative;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .bj-img {
  font-size: 0;
  border-radius: 1.875rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .bj-img {
    border-radius: 1rem;
  }
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .bj-img img {
  width: 100%;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .bj-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -moz-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -o-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: linear-gradient(180deg, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax1 {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 100%;
  padding: 0 8.5%;
  z-index: 1;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax1 .img {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: #fff;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax1 .img img {
  width: 68%;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax1 p {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.25em;
  margin-left: 1rem;
  width: calc(100% - 4.375rem);
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 {
  position: absolute;
  left: 0;
  bottom: 3rem;
  width: 100%;
  padding: 0 8.5%;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(1rem);
     -moz-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
       -o-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 .txt {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5em;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 .nmasxa {
  margin-top: 1.5rem;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 .nmasxa a.more-b {
  padding: 1rem 2.25rem;
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 .nmasxa a.more-b {
    padding: 0.85rem 1.75rem;
  }
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa .con-ax2 .nmasxa a.more-b.bs {
  color: #0ACB74;
  border: 1px solid #fff;
}
.cont2 .a2v2 .mySwiper2 .swiper-slide .cont-paxa:hover .con-ax2 {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.cont2 .a2v2 .mySwiper2 .jata-a {
  margin-top: 3rem;
  gap: 1.35rem;
}
@media (max-width: 768px) {
  .cont2 .a2v2 .mySwiper2 .jata-a {
    margin-top: 1.5rem;
  }
}
.cont2 .a2v2 .mySwiper2 .jata-a .swiper-pagination {
  background: #E8E8E8;
  width: 100%;
  top: auto;
  height: 3px;
  bottom: 0;
  position: static;
  border-radius: 0.2rem;
}
.cont2 .a2v2 .mySwiper2 .jata-a .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-zt);
}
.cont2 .a2v2 .mySwiper2 .jata-a .swiper-pagination {
  width: auto;
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.cont2 .a2v2 .mySwiper2 .jata-a .jtas-b {
  width: auto;
  gap: 1rem;
}
.cont2 .a2v2 .mySwiper2 .jata-a .jtas-b > div {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #2B2D2D;
}
.cont2 .a2v2 .mySwiper2 .jata-a .jtas-b > div i {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1em;
}
.cont2 .a2v2 .mySwiper2 .jata-a .jtas-b > div:hover {
  background: var(--color-zt);
}

.sy-body {
  overflow: visible;
}

.cont3 {
  background-repeat: no-repeat;
  background-position: center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 20.25rem 0 9.125rem;
  position: relative;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 6rem 0 2.5rem;
  }
}
.cont3 > u {
  display: block;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.cont3 > u img {
  width: 100%;
}
.cont3 .title1 {
  text-align: center;
}
.cont3 .title1 .entit {
  color: #2B2D2D;
  margin: 0 auto;
}
.cont3 .title1 .tit span {
  color: var(--color-zt);
}
.cont3 .a3v1 {
  gap: 1.5rem;
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}
.cont3 .a3_list1 {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 {
    margin-top: 2rem;
    gap: 1.5rem 0;
  }
}
.cont3 .a3_list1 li {
  width: 20%;
  text-align: center;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li {
    width: 50%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.cont3 .a3_list1 li .data {
  color: #0ACB74;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1em;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .data {
    font-size: 3rem;
  }
}
.cont3 .a3_list1 li .data sup {
  font-size: 2rem;
  line-height: 1em;
  vertical-align: top;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li .data sup {
    font-size: 1.5rem;
  }
}
.cont3 .a3_list1 li p {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li p {
    font-size: 1.125rem;
  }
}

.cont5-b {
  padding: 10.625rem 0 5.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .cont5-b {
    display: none;
  }
}
.cont5-b::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -20rem;
  width: 35rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.14);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.cont5-b .cont5-b-v1 {
  position: relative;
}
.cont5-b .cont5-b-v1 .logo-aa {
  width: 53.9285714286%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cont5-b .cont5-b-v1 .logo-aa img {
  width: 100%;
}
.cont5-b .cont5-b-v1 .dig_stm_vertical_bar {
  position: absolute;
  width: 1rem;
  background: url(../images/asta.gif) no-repeat 54% center;
  /* animation-duration: 2000ms; */
  /* animation-delay: 200ms; */
  -webkit-animation-fill-mode: forwards;
     -moz-animation-fill-mode: forwards;
       -o-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  box-shadow: rgba(6, 194, 172, 0.2) 0px 0px 3px inset;
  left: 50%;
  bottom: -80%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation-name: vertical_bar;
     -moz-animation-name: vertical_bar;
       -o-animation-name: vertical_bar;
          animation-name: vertical_bar;
}

.cont5 {
  background-repeat: no-repeat;
  -o-background-size: cover;
     background-size: cover;
  padding: 11.5rem 0 15rem;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .cont5 {
    padding: 3.5rem 0;
  }
}
.cont5 .a5_b1 {
  color: #fff;
  position: relative;
  z-index: 1;
}
.cont5 .a5_b1 .weha1 {
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.cont5 .a5_b1 .weha1 img.a {
  height: 7.5625rem;
}
@media (max-width: 768px) {
  .cont5 .a5_b1 .weha1 img.a {
    height: 2.75rem;
  }
}
.cont5 .a5_b1 .weha1 img.b {
  height: 9.1875rem;
  opacity: 0;
}
@media (max-width: 768px) {
  .cont5 .a5_b1 .weha1 img.b {
    opacity: 1;
    height: 2.75rem;
  }
}
.cont5 .a5_b1 .tit1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .cont5 .a5_b1 .tit1 {
    font-size: 1.75rem;
    line-height: 1.35em;
  }
}
.cont5 .a5_b1 .p1 {
  color: #fff;
  margin-top: 0.65rem;
  text-align: center;
}
.cont5 .a5_b1 a.more-a {
  display: block;
  margin: 0 auto;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .cont5 .a5_b1 a.more-a {
    margin-top: 2rem;
  }
}
.cont6 {
  padding: 7.375rem 0 6.75rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont6 {
    padding: 2.5rem 0;
  }
  .cont6 a.more-a {
    margin-right: 1rem;
  }
}
.cont6::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -20rem;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.14);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.cont6 > u {
  display: block;
  font-size: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 43.5416666667%;
  z-index: -1;
}
.cont6 > u img {
  width: 100%;
}
.cont6 .xw-list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cont6 .xw-list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.35rem;
  }
}
.cont6 .xw-list1 li a.imgz {
  display: block;
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.cont6 .xw-list1 li a.imgz u {
  display: block;
  font-size: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}
.cont6 .xw-list1 li a.imgz u img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont6 .xw-list1 li a.imgz .data {
  color: rgba(39, 39, 39, 0.3);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
  font-weight: 500;
}
.cont6 .xw-list1 li a.imgz .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.cont6 .xw-list1 li a.imgz .name {
  color: #444444;
  font-size: 1.375rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
  height: 3em;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont6 .xw-list1 li a.imgz .name {
    font-size: 1.25rem;
    height: auto;
  }
}
.cont6 .xw-list1 li a.imgz .p1 {
  color: #969696;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.cont6 .xw-list1 li a.imgz .xw-more {
  color: #7F8384;
  font-size: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cont6 .xw-list1 li a.imgz .xw-more {
    margin-top: 1rem;
  }
}
.cont6 .xw-list1 li a.imgz:hover {
  background: -webkit-linear-gradient(top, #0ACB74 0%, #FFF 47.72%);
  background: -moz-linear-gradient(top, #0ACB74 0%, #FFF 47.72%);
  background: -o-linear-gradient(top, #0ACB74 0%, #FFF 47.72%);
  background: linear-gradient(180deg, #0ACB74 0%, #FFF 47.72%);
}
.cont6 .xw-list1 li a.imgz:hover u img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.cont6 .xw-list1 li a.imgz:hover .name {
  color: var(--color-zt);
}
.cont6 .xw-list1 li a.imgz:hover .xw-more {
  color: var(--color-zt);
}

.cont7 {
  padding: 2.125rem 0;
}
.cont7 .picMarquee-left {
  overflow: hidden;
  -webkit-mask: -webkit-linear-gradient(left, transparent, #000 25%, #000 75%, transparent);
          mask: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.cont7 .picMarquee-left .picList li {
  width: 13.125rem;
  margin-right: 1.5rem;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .cont7 .picMarquee-left .picList li {
    width: 12rem;
    margin-right: 1rem;
  }
}
.cont7 .picMarquee-left .picList li img {
  width: 100%;
}
.cont7 .picMarquee-left .picList li:hover {
  border-color: rgba(10, 203, 116, 0.51);
}

.foot-fot {
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid #D6D6D6;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 5rem 0 9rem;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foot-tit {
  color: #2B2D2D;
  font: 600 1rem/1.5em "Poppins";
}
.foot-fot .foota1 .foot-tit a {
  color: #2B2D2D;
  display: block;
}
.foot-fot .foota1 .dseca {
  margin-top: 0.8em;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: #808080;
  font: 400 0.875rem/2em "Poppins";
}
.foot-fot .foota1 .dseca > a:hover {
  color: var(--color-zt);
}
.foot-fot .foota1 .dseca p {
  color: #808080;
  font: 400 1rem/1.8em "Poppins";
}
.foot-fot .foota1 .fo-a2{
    width: 26%;
}
.foot-fot .foota1 .fo-a2 .dlogo img {
  height: 2rem;
}
.foot-fot .foota1 .fo-a2 .pas-as1 {
  margin-top: 2rem;
}
.foot-fot .foota1 .fo-a2 .pas-as1 p {
  color: #2B2D2D;
  font-size: 1rem;
  font-weight: 600;
}
.foot-fot .foota1 .fo-a2 .pas-as1 b {
  color: #0ACB74;
  font-size: 2.25rem;
  line-height: 1.25em;
  font-weight: 700;
}
.foot-fot .foota1 .fo-a2 .d_laxi {
  color: #808080;
  font-size: 0.875rem;
  line-height: 1.5em;
  margin-top: 0.75rem;
}
.foot-fot .foota1 .fo-a2 .d_laxi p+p{
     margin-top: 0.3rem;
}
.foot-fot .foota1 .fo-a2 .smdza {
  margin-top: 0.8rem;
  gap: 0.5rem;
}
.foot-fot .foota1 .fo-a2 .smdza li {
  position: relative;
}
.foot-fot .foota1 .fo-a2 .smdza li a.img {
  color: #fff;
  border: none;
  background: #808080;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  border-radius: 50%;
}
.foot-fot .foota1 .fo-a2 .smdza li a.img img {
  width: 56%;
}
.foot-fot .foota1 .fo-a2 .smdza li a.img:hover {
  background: var(--color-zt);
}
.foot-fot .foota1 .fo-a2 .smdza li .secazx {
  position: absolute;
  left: 50%;
  bottom: 110%;
  width: 7rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 0.35rem;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
  display: none;
}
.foot-fot .foota1 .fo-a2 .smdza li .secazx img {
  width: 100%;
}
.foot-fot .foota1 .fo-a2 .smdza li:hover .secazx {
  display: block;
}
.foot-fot .foota1 .fo-a2 .social-share {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .social-share a {
  color: #fff;
  border: none;
  background: #808080;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  font-size: 1.125rem;
}
.foot-fot .foota1 .fo-a2 .social-share a:hover {
  background: var(--color-zt);
}
.foot-fot .foota1 .fo-a2 .social-share a.iconfont {
  font-family: "iconfont" !important;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: background 0.6s ease-out 0s;
  -o-transition: background 0.6s ease-out 0s;
  -moz-transition: background 0.6s ease-out 0s;
  transition: background 0.6s ease-out 0s;
  color: #fff;
  border: none;
  background: #808080;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  font-size: 1.125rem;
}
.foot-fot .foota1 .fo-a2 .social-share dl {
  position: relative;
}
.foot-fot .foota1 .fo-a2 .social-share dl .secazx {
  position: absolute;
  left: 50%;
  bottom: 110%;
  width: 7rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 0.35rem;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
  display: none;
}
.foot-fot .foota1 .fo-a2 .social-share dl .secazx img {
  width: 100%;
}
.foot-fot .foota1 .fo-a2 .social-share dl:hover .secazx {
  display: block;
}
.foot-fot .foota2 {
  color: #fff;
  font: 400 0.875rem/1.65em "Poppins";
  padding: 1em 0;
  background: #2B2D2D;
}
.foot-fot .foota2 a {
  color: white;
}
.foot-fot .foota2 a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.foot-fot .foota2 p + p {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span {
  color: rgba(255, 255, 255, 0.2);
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
.foot1-m .m-bm-head-box .m-bm-navbtn span, .foot1-m .m-bm-head-box .m-bm-navbtn:after, .foot1-m .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.foot1-m .m-bm-menu {
  background: #fff;
}
.foot1-m .m-bm-nav > li, .foot1-m .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.foot1-m .m-bm-nav > li > a, .foot1-m .m-bm-nav .aniut i, .foot1-m .m-bm-nav > li .sec a, .foot1-m .mrhgxt {
  color: #000;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}
/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}
.hidden {
  display: none;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}
@media (max-width: 768px) {
  .zd_erha {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li {
  margin-top: 1.25rem;
}
.zd_erha li > a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: var(--color-zt);
  border-radius: 50%;
  line-height: 3.5rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
}
.zd_erha li > a i {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.zd_erha li > a i img {
  height: 1.75rem;
}
.zd_erha li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1.5rem;
  width: auto;
  text-align: center;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
     -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
       -o-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 0.4rem;
  white-space: nowrap;
}
.zd_erha li .erghgsb {
  width: 7rem;
  padding: 0.3rem;
}
.zd_erha li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.zd_erha li:hover .erghgsa::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 10%;
  height: 100%;
}

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

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

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .pagination {
    margin: 0 0 0;
  }
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  margin-left: -1px;
  line-height: 2.375rem;
  color: #333333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 0 0.2rem;
  font-weight: 500;
}

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

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

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

.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: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

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

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

.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

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

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

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
}
@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

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

.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: #A7A5A5;
  font-size: 1rem;
  line-height: 2em;
  padding: 1.3em 0;
}
@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 1em 0;
  }
}
.ajhhsd span {
  padding: 0 0.05em;
}
.ajhhsd span:last-child {
  display: none;
}
.ajhhsd a {
  color: #A7A5A5;
}
.ajhhsd a:hover {
  color: var(--color-zt);
}

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "Poppins";
}
@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.nav-page li {
  padding-bottom: 1em;
}
.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}
.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "Poppins";
  color: #333;
}
@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}
.nav-page li .sec {
  margin-top: 0.5em;
}
.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "Poppins";
  color: #777;
  margin-right: 1em;
}
.nav-page li .sec a:hover {
  color: var(--color-zt);
}

@media (max-width: 768px) {
  .mt40 {
    margin-top: 1rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "Poppins";
  background: transparent;
  color: #999;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "Poppins";
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.ss-list li {
  padding: 1rem 0;
}
.ss-list li + li {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 0.5rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "Poppins";
  overflow: hidden;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: var(--color-zt);
  font: 500 1rem/1.5em "Poppins";
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "Poppins";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Poppins";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Poppins";
  padding: 1rem 0 3rem;
}
.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 {
  width: 100%;
  z-index: 9;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font-size: 4rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p2 {
  font-size: 2.75rem;
  line-height: 1.25em;
  margin: 0.75rem 0 1.5rem;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1.25rem;
    margin: 0.65rem 0 1.125rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .more-axa {
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.5rem;
}
.nbanner .mbx-cont {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1rem;
}
.nbanner .mbx-cont .ajhhsd {
  padding: 0.45rem 0;
  color: #FFFFFF;
  gap: 0.5rem;
}
.nbanner .mbx-cont .ajhhsd i {
  font-size: 1.25rem;
}
.nbanner .mbx-cont .ajhhsd a {
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  left: 0;
  top: var(--head-height);
  width: 100%;
  z-index: 9;
}
@media (max-width: 990px) {
  .n_mbx {
    top: 60px;
  }
}
.n_mbx .n_src {
  font-size: 0;
  text-align: center;
  overflow-x: auto;
    white-space: nowrap;
    display: block;
}
.n_mbx .n_src::-webkit-scrollbar {
  width:8px;
  height:8px;
  background-color: #F5F5F5;
  }
  .n_mbx .n_src::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
  }
  .n_mbx .n_src::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  }
@media (max-width: 768px) {
  .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: 1rem;
}
@media (max-width: 768px) {
  .n_mbx .n_src li + li {
    margin-left: 0.75rem;
  }
}
.n_mbx .n_src li a {
  display: block;
  color: #2B2D2D;
  font-size: 1.125rem;
  line-height: 3em;
  position: relative;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.n_mbx .n_src li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-zt);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
}
@media (max-width: 768px) {
  .n_mbx .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}
.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  color: var(--color-zt);
}
.n_mbx .n_src li:hover a::after, .n_mbx .n_src li.active a::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.list_content {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .list_content {
    padding: 2rem 0;
  }
}

@-webkit-keyframes scale2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            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: -webkit-calc(var(--head-height) * -1);
  margin-top: -moz-calc(var(--head-height) * -1);
  margin-top: calc(var(--head-height) * -1);
}
@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.abt-cont1 {
  padding: 6.375rem 0 5.3125rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 2.5rem 0;
  }
}
.abt-cont1::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.14);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.abt-cont1 .abt-v1 .abt-b1 {
  width: 47.1428571429%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b1 {
    width: 100%;
  }
}
.abt-cont1 .abt-v1 .abt-b1 .p1 {
  color: #2B2D2D;
  font-size: 1rem;
  line-height: 1.75em;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b1 .p1 {
    margin-top: 1rem;
  }
}
.abt-cont1 .abt-v1 .abt-b2 {
  width: 48.7857142857%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.abt-cont1 .abt-v1 .abt-b2 .mySwiper3 {
  border-radius: 1.5625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b2 .mySwiper3 {
    border-radius: 1rem;
  }
}
.abt-cont1 .abt-v1 .abt-b2 .mySwiper3 .swiper-slide i {
  display: block;
  font-size: 0;
}
.abt-cont1 .abt-v1 .abt-b2 .mySwiper3 .swiper-slide i img {
  width: 100%;
}
.abt-cont1 .abt-v1 .abt-b2 .swiper-pagination1 {
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b2 .swiper-pagination1 {
    margin-top: 0.75rem;
  }
}
.abt-cont1 .abt-v1 .abt-b2 .swiper-pagination1 span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 1.125rem;
  opacity: 1;
}
.abt-cont1 .abt-v1 .abt-b2 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0ACB74;
}
.abt-cont1 .a3_list1 {
  margin-top: 5.25rem;
}
@media (max-width: 768px) {
  .abt-cont1 .a3_list1 {
    margin-top: 1.65rem;
    gap: 1.5rem 0;
  }
}
.abt-cont1 .a3_list1 li {
  width: 20%;
  text-align: center;
}
@media (max-width: 768px) {
  .abt-cont1 .a3_list1 li {
    width: 50%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.abt-cont1 .a3_list1 li u {
  display: block;
  font-size: 0;
  width: 4.375rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .abt-cont1 .a3_list1 li u {
    width: 3.75rem;
  }
}
.abt-cont1 .a3_list1 li u img {
  width: 100%;
}
.abt-cont1 .a3_list1 li .data {
  color: #0ACB74;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1em;
  margin: 0.5rem 0 0.25rem;
}
@media (max-width: 768px) {
  .abt-cont1 .a3_list1 li .data {
    font-size: 3rem;
  }
}
.abt-cont1 .a3_list1 li .data sup {
  font-size: 2rem;
  line-height: 1em;
  vertical-align: top;
  top: 0;
}
@media (max-width: 768px) {
  .abt-cont1 .a3_list1 li .data sup {
    font-size: 1.5rem;
  }
}
.abt-cont1 .a3_list1 li p {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .abt-cont1 .a3_list1 li p {
    font-size: 1.125rem;
  }
}

.abt-cont2 {
  position: relative;
  padding: 5.625rem 0;
}
@media (max-width: 768px) {
  .abt-cont2 {
    padding: 2.5rem 0;
  }
}
.abt-cont2::before {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 0;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.14);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.abt-cont2 > u {
  display: block;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.abt-cont2 > u img {
  width: 100%;
}
@media (max-width: 768px) {
  .abt-cont2 > u img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.abt-cont2 .title1 .tit {
  color: #fff;
}
.abt-cont2 .abt-a2v1 {
  margin-top: 3.375rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 {
    margin-top: 1.5rem;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 {
  position: relative;
  background: #2B2D2D;
  border-radius: 1.5625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .mySwiper4 {
    border-radius: 1.25rem;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .img {
  width: 53.5714285714%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .img {
    width: 100%;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .img img {
  width: 100%;
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p {
  width: 46.4285714286%;
  padding: 1.5rem 8%;
  color: #fff;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p {
    width: 100%;
    padding: 2rem 8%;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .imgax {
  width: 6.875rem;
  position: relative;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .imgax {
    width: 5rem;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .imgax img {
  width: 100%;
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .imgax u {
  display: block;
  font-size: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48.1818181818%;
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .imgax u img {
  width: 100%;
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .tit {
  font-size: 2rem;
  line-height: 1.25em;
  font-weight: 600;
  margin: 1.35rem 0 0.75rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .tit {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .p1 {
  font-size: 1.5rem;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .mySwiper4 .swiper-slide .cont-p .p1 {
    font-size: 1.125rem;
  }
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-pagination1 {
  position: absolute;
  left: auto;
  bottom: auto;
  right: 5%;
  top: 50%;
  width: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-pagination1 span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  margin: 1.75rem 0;
  opacity: 1;
  display: block;
}
.abt-cont2 .abt-a2v1 .mySwiper4 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0ACB74;
}

.abt-cont3 {
  padding: 1rem 0 9.375rem;
  position: relative;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 0.5rem 0 2.5rem;
  }
}
.abt-cont3::after {
  content: "";
  position: absolute;
  right: 0%;
  bottom: -35%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.2);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.abt-cont3 .abt-a3_list1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.0625rem 1rem;
  margin-top: 5.5rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
}
.abt-cont3 .abt-a3_list1 li {
  text-align: center;
}
.abt-cont3 .abt-a3_list1 li i {
  display: block;
  font-size: 0;
  width: 7.5rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 li i {
    width: 6rem;
  }
}
.abt-cont3 .abt-a3_list1 li i img {
  width: 100%;
}
.abt-cont3 .abt-a3_list1 li u {
  display: block;
  font-size: 0;
  margin: 0.25rem auto 0;
}
.abt-cont3 .abt-a3_list1 li u img {
  height: 0.5rem;
}
.abt-cont3 .abt-a3_list1 li .cont-p {
  text-align: center;
}
.abt-cont3 .abt-a3_list1 li .cont-p .tit {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25em;
  padding: 1rem 0 0.25rem;
}
.abt-cont3 .abt-a3_list1 li .cont-p .p {
  font-size: 0.875rem;
  line-height: 1.65em;
}

.abt-cont4 {
  padding: 5.625rem 0;
  background: #F6F7FC;
}
@media (max-width: 768px) {
  .abt-cont4 {
    padding: 2.5rem 0;
  }
}
.abt-cont4 .picMarquee-left1, .abt-cont4 .picMarquee-left2 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .abt-cont4 .picMarquee-left1, .abt-cont4 .picMarquee-left2 {
    margin-top: 1.25rem;
  }
}
.abt-cont4 .picList li {
  width: 15rem;
  margin-right: 1.8125rem;
  border: 1px solid #D9D9D9;
  background: #fff;
}
@media (max-width: 768px) {
  .abt-cont4 .picList li {
    width: 10rem;
    margin-right: 0.75rem;
  }
}
.abt-cont4 .picList li img {
  width: 100%;
}
.abt-cont4 .picList li:hover {
  border-color: rgba(10, 203, 116, 0.51);
}

.abt-cont5 {
  background: url(../images/asgh1.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  position: relative;
  padding: 6.625rem 0 5.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .abt-cont5 {
    padding: 4.625rem 0 3.5rem;
  }
}
.abt-cont5 u {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
  width: 100%;
  display: none;
}
.abt-cont5 u img {
  width: 100%;
}
@media (max-width: 768px) {
  .abt-cont5 u img {
    width: 300%;
    max-width: none;
  }
}
.abt-cont5 .abt-a5v1 .tit {
  color: #fff;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .abt-cont5 .abt-a5v1 .tit {
    font-size: 1.75rem;
  }
}
.abt-cont5 .abt-a5v1 a.more-b {
  margin: 1.25rem auto 0;
  border: 1px solid #2B2D2D;
}

.fzlc-cont1 {
  padding: 6.6875rem 0 11.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .fzlc-cont1 {
    padding: 2.5rem 0;
  }
}
.fzlc-cont1::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -15%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.fzlc-cont1::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -35%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.fzlc-cont1 .flzc-v1 {
  position: relative;
}
@media (max-width: 768px) {
  .fzlc-cont1 .flzc-v1 {
    padding: 0 13%;
  }
}
.fzlc-cont1 .flzc-v1 .more-sxa {
  width: 2.875rem;
  height: 2.875rem;
  background: #2B2D2D;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .fzlc-cont1 .flzc-v1 .more-sxa {
    left: -webkit-calc(5.2% + 1rem);
    left: -moz-calc(5.2% + 1rem);
    left: calc(5.2% + 1rem);
  }
}
.fzlc-cont1 .flzc-v1 .more-sxa i {
  color: #FFFFFF;
  font-size: 1rem;
}
.fzlc-cont1 .fzlc_list1 {
  width: 77.5714285714%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 8.5rem;
  margin-top: 5.65rem;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 {
    padding-bottom: 4.5rem;
    margin-top: 2rem;
    padding-left: 1.25rem;
    width: 100%;
  }
}
.fzlc-cont1 .fzlc_list1::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.5rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: -webkit-calc(100% - 1.5rem);
  height: -moz-calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  background: rgba(43, 45, 45, 0.4);
  z-index: -1;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1::after {
    left: -1rem;
  }
}
.fzlc-cont1 .fzlc_list1 li {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #2B2D2D;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li {
    display: block;
  }
}
.fzlc-cont1 .fzlc_list1 li + li {
  margin-top: 6.1875rem;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li + li {
    margin-top: 2.25rem;
  }
}
.fzlc-cont1 .fzlc_list1 li .tit {
  width: 44.7513812155%;
  font-size: 2.75rem;
  line-height: 1em;
  font-weight: 600;
  text-align: right;
  position: relative;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li .tit {
    width: 100%;
    text-align: left;
    font-size: 2rem;
  }
}
.fzlc-cont1 .fzlc_list1 li .tit::after {
  content: "";
  position: absolute;
  right: -4.125rem;
  top: 1rem;
  width: 1.1875rem;
  height: 1.1875rem;
  border-radius: 50%;
  background: #2B2D2D;
}
@media (max-width: 1024px) {
  .fzlc-cont1 .fzlc_list1 li .tit::after {
    right: -3.75rem;
  }
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li .tit::after {
    right: auto;
    left: -2.75rem;
    width: 1rem;
    height: 1rem;
  }
}
.fzlc-cont1 .fzlc_list1 li .p {
  width: 44.7513812155%;
  font-size: 1.125rem;
  line-height: 1.65em;
  margin-top: 0.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li .p {
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }
}
.fzlc-cont1 .fzlc_list1 li:nth-child(2n) .p {
  text-align: right;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li:nth-child(2n) .p {
    text-align: left;
  }
}
.fzlc-cont1 .fzlc_list1 li:nth-child(2n) .tit {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li:nth-child(2n) .tit {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.fzlc-cont1 .fzlc_list1 li:nth-child(2n) .tit::after {
  right: auto;
  left: -4.125rem;
}
@media (max-width: 1024px) {
  .fzlc-cont1 .fzlc_list1 li:nth-child(2n) .tit::after {
    left: -3.75rem;
  }
}
@media (max-width: 768px) {
  .fzlc-cont1 .fzlc_list1 li:nth-child(2n) .tit::after {
    left: -2.75rem;
  }
}
.fzlc-cont1 .fzlc_list1 li:hover {
  color: var(--color-zt);
}
.fzlc-cont1 .fzlc_list1 li:hover .tit::after {
  background: var(--color-zt);
}
.job-cont1 {
  padding: 6.1875rem 0 5.625rem;
}
@media (max-width: 768px) {
  .job-cont1 {
    padding: 2.25rem 0;
  }
}
.job-cont1 .job-a1-tit {
  color: rgba(43, 45, 45, 0.7);
  font-size: 2.125rem;
  line-height: 1.35em;
  font-weight: 500;
  margin-top: 1.35rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1-tit {
    font-size: 1.35rem;
    margin-top: 1rem;
    line-height: 1.5em;
  }
}
.job-cont1 .job-a1v1 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 {
    margin-top: 1.25rem;
  }
}
.job-cont1 .job-a1v1 .job-a1b1 {
  width: 62.7142857143%;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1b1 {
    width: 100%;
  }
}
.job-cont1 .job-a1v1 .job-a1b1 .img {
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1b1 .img {
    border-radius: 1rem;
  }
}
.job-cont1 .job-a1v1 .job-a1b1 .img img {
  width: 100%;
}
.job-cont1 .job-a1v1 .job-a1b2 {
  width: 30.6428571429%;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.job-cont1 .job-a1v1 .job-a1b2 dl {
  color: rgba(43, 45, 45, 0.7);
}
.job-cont1 .job-a1v1 .job-a1b2 dl + dl {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1b2 dl + dl {
    margin-top: 1.25rem;
  }
}
.job-cont1 .job-a1v1 .job-a1b2 dl dt {
  font-size: 2.125rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1b2 dl dt {
    font-size: 1.4rem;
  }
}
.job-cont1 .job-a1v1 .job-a1b2 dl dd {
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 0.5rem;
}

.job-cont2 {
  background: #2B2D2D;
}
.job-cont2 .job-a2b1 {
  width: 54.2708333333%;
  padding: 0 5% 0 var(--cbasta);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  color: #fff;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 {
    width: 100%;
    padding: 2rem var(--cbasta);
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.job-cont2 .job-a2b1 .tit {
  font-size: 2.125rem;
  line-height: 1.25em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .tit {
    font-size: 1.5rem;
  }
}
.job-cont2 .job-a2b1 .p1 {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.85rem;
  width: 100%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .p1 {
    font-size: 1rem;
  }
}
.job-cont2 .job-a2b1 .cz-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list {
    margin-top: 1.5rem;
  }
}
.job-cont2 .job-a2b1 .cz-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0.5rem 1.5rem 2.5rem;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list li {
    padding: 1.25rem 0.5rem 1.25rem 1.5rem;
  }
}
.job-cont2 .job-a2b1 .cz-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25rem;
  height: 100%;
  background: var(--color-zt);
  opacity: 0;
}
.job-cont2 .job-a2b1 .cz-list li .dt {
  cursor: pointer;
}
.job-cont2 .job-a2b1 .cz-list li .dt p {
  font-size: 1.6875rem;
  line-height: 1.25em;
  width: 70%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list li .dt p {
    font-size: 1.35rem;
  }
}
.job-cont2 .job-a2b1 .cz-list li .dt i {
  font-size: 0.825rem;
  line-height: 1.25em;
  font-weight: 700;
}
.job-cont2 .job-a2b1 .cz-list li .wehha-job {
  font-size: 1rem;
  line-height: 1.5em;
  display: none;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list li .wehha-job {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.job-cont2 .job-a2b1 .cz-list li.active::after {
  opacity: 1;
}
.job-cont2 .job-a2b2 {
  width: 45.7291666667%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2b2 {
    width: 100%;
  }
}
.job-cont2 .job-a2b2 img {
  width: 100%;
}

.job-cont3 {
  padding: 8.0625rem 0;
}
@media (max-width: 768px) {
  .job-cont3 {
    padding: 2.5rem 0;
  }
}
.job-cont3 .job-a3_list1 li:nth-child(2n) .img {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li:nth-child(2n) .img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.job-cont3 .job-a3_list1 li + li {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li + li {
    margin-top: 1.25rem;
  }
}
.job-cont3 .job-a3_list1 li .img {
  width: 62.7142857143%;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .img {
    width: 100%;
    border-radius: 1rem;
  }
}
.job-cont3 .job-a3_list1 li .img img {
  width: 100%;
}
.job-cont3 .job-a3_list1 li .cont-p {
  width: 32.2857142857%;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}
.job-cont3 .job-a3_list1 li .cont-p .tit {
  color: rgba(43, 45, 45, 0.7);
  font-size: 2.125rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .tit {
    font-size: 1.5rem;
  }
}
.job-cont3 .job-a3_list1 li .cont-p .p3 {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
}
.job-cont3 .job-a3_list1 li .cont-p .p3 .p1 {
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .p3 .p1 {
    margin-top: 0.35rem;
  }
}
.job-cont3 .job-a3_list1 li .cont-p .p3 dl {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .p3 dl {
    margin-top: 0.65rem;
  }
}
.job-cont3 .job-a3_list1 li .cont-p .p3 dl dt {
  font-size: 1.6875rem;
  line-height: 2em;
  font-weight: 500;
  color: rgba(43, 45, 45, 0.4);
}
@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .p3 dl dt {
    font-size: 1.25rem;
  }
}
.job-cont3 .job-a3_list1 li .cont-p .p3 dl dd {
  display: none;
}
.job-cont3 .job-a3_list1 li .cont-p .p3 dl.on dt {
  color: #2B2D2D;
}
.job-cont3 .job-a3_list1 li .cont-p .p3 dl.on dd {
  display: block;
}

.case-content {
  position: relative;
  padding: 4.125rem 0 1rem;
}
@media (max-width: 768px) {
  .case-content {
    padding: 2rem 0 0.5rem;
  }
}
.case-content::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -15%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.case-content::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -35%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.case-content .case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem;
}
@media (max-width: 768px) {
  .case-content .case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .case-content .case-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
  }
}
.case-content .case-list li a.img {
  display: block;
}
.case-content .case-list li a.img i {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .case-content .case-list li a.img i {
    border-radius: 1rem;
  }
}
.case-content .case-list li a.img i img {
  width: 100%;
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-content .case-list li a.img .tit {
  text-align: center;
  color: #2B2D2D;
  font-size: 1.5rem;
  line-height: 1.5em;
  padding: 0.75em 0;
}
@media (max-width: 768px) {
  .case-content .case-list li a.img .tit {
    font-size: 1.25rem;
  }
}
.case-content .case-list li a.img:hover .tit {
  color: #0ACB74;
}

.ny-show_body {
  padding-top: var(--head-height);
}
.ny-show_body .head .head2 {
  backdrop-filter: blur(14px);
  background-color: #fff;
  --as-calore: #2B2D2D;
}
.ny-show_body .head .head2 .logo a img.a {
  display: none;
}
.ny-show_body .head .head2 .logo a img.b {
  display: inline-block;
}
.ny-show_body .head .head2 #menu .nav_a1 li:hover > a span, .ny-show_body .head .head2 #menu .nav_a1 li.active > a span {
  color: var(--color-zt);
}
.ny-show_body .head .head2 #menu .nav_a1 li:hover > a span::after, .ny-show_body .head .head2 #menu .nav_a1 li.active > a span::after {
  -webkit-filter: inherit;
          filter: inherit;
}

.mbx-cont1 {
  background: #F3F5F6;
  padding: 1.3em 0;
}
@media (max-width: 768px) {
  .mbx-cont1 {
    padding: 1em 0;
  }
}
.mbx-cont1 .wh {
  gap: 0.65rem;
}
.mbx-cont1 .mbx {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1rem;
  line-height: 2em;
}
@media (max-width: 768px) {
  .mbx-cont1 .mbx {
    line-height: 1.5em;
  }
}
.mbx-cont1 .mbx span {
  padding: 0 0.05em;
}
.mbx-cont1 .mbx a {
  color: rgba(43, 45, 45, 0.7);
}
.mbx-cont1 .mbx a:hover {
  color: var(--color-zt);
}
.mbx-cont1 a.more-btn {
  background: #0ACB74;
  color: #fff;
  font-size: 1rem;
  line-height: 1.75em;
  padding: 0.18rem 1.25rem;
  border-radius: 2rem;
  border: 1px solid #0ACB74;
}
.mbx-cont1 a.more-btn:hover {
  background: #fff;
  color: var(--color-zt);
}

.heng1 img {
  width: 100%;
}

.show-case-content .show-case-cont1 {
  padding: 4rem 0 0;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 {
    padding-top: 2rem;
  }
}
.show-case-content .show-case-cont1 .tit {
  color: #2B2D2D;
  font-weight: 700;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 .tit {
    font-size: 1.5rem;
  }
}
.show-case-content .show-case-cont1 .heng1 {
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 .heng1 {
    margin-top: 1.25rem;
  }
}
.show-case-content .show-case-cont1 .heng1 img {
  width: 100%;
  border-radius: 1.5rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 .heng1 img {
    border-radius: 1rem;
  }
}
.show-case-content .show-case-cont1 .case-sdhew1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
  padding: 5.375rem 0;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 .case-sdhew1 {
    padding: 1.5rem 0;
  }
}
.show-case-content .show-case-cont1 .case-sdhew1 li {
  text-align: center;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.show-case-content .show-case-cont1 .case-sdhew1 li .img {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 .case-sdhew1 li .img {
    width: 5rem;
    height: 5rem;
  }
}
.show-case-content .show-case-cont1 .case-sdhew1 li .img img {
  width: 50%;
}
.show-case-content .show-case-cont1 .case-sdhew1 li .cont-p {
  text-align: center;
}
.show-case-content .show-case-cont1 .case-sdhew1 li .cont-p .tit {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.35em;
  color: #2B2D2D;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont1 .case-sdhew1 li .cont-p .tit {
    font-size: 1.75rem;
  }
}
.show-case-content .show-case-cont1 .case-sdhew1 li .cont-p .text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.25em;
}
.show-case-content .show-case-cont2 {
  background: #F6F6F6;
  padding: 4.0625rem 0 5.625rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 {
    padding: 2rem 0;
  }
}
.show-case-content .show-case-cont2 .tit {
  color: #2B2D2D;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .tit {
    font-size: 1.5rem;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.show-case-content .show-case-cont2 .show-case-a2v1 .tit {
  width: 26.4285714286%;
  margin-top: 1.65rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v1 .tit {
    width: 100%;
    margin-top: 0;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v1 .ashd_sdkt1 {
  width: 70.1428571429%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v1 .ashd_sdkt1 {
    width: 100%;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v1 .ashd_sdkt1 li {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
  width: 46.8431771894%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.65rem 0;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v1 .ashd_sdkt1 li {
    padding: 1.25rem 0;
    font-size: 1.125rem;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v1 .ashd_sdkt1 li b {
  font-weight: 700;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v1 .ashd_sdkt1 li b {
    width: 100%;
    margin-right: 0;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v2 {
  margin-top: 4.6875rem;
  color: rgba(43, 45, 45, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v2 {
    margin-top: 2rem;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v2 .p1 {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v2 .p1 {
    margin-top: 0.65rem;
  }
}
.show-case-content .show-case-cont2 .show-case-a2v2 .p1 b {
  display: block;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .show-case-content .show-case-cont2 .show-case-a2v2 .p1 b {
    padding: 0.5rem 0;
  }
}

.lx-cont1 {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding: 2.5rem 0;
  }
}
.lx-cont1 .title1 .txt {
  color: #444444;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .lx-cont1 .title1 .txt {
    margin: 0.5rem auto;
    padding: 0 0 1.25rem;
  }
}
.lx-cont1 .lx-a1v1 {
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 {
    margin-top: 1.35rem;
  }
}
.lx-cont1 .lx-a1v1 .tit {
  color: #444444;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .tit {
    font-size: 1.5rem;
  }
}
.lx-cont1 .lx-a1v1 .asht_list1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.5rem 4%;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .asht_list1 {
    gap: 0.75rem 4%;
    margin-top: 1.25rem;
  }
}
.lx-cont1 .lx-a1v1 .asht_list1 > li {
  color: rgba(43, 45, 45, 0.7);
  width: 20%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .asht_list1 > li {
    width: 100%;
  }
}
.lx-cont1 .lx-a1v1 .asht_list1 > li:nth-child(3), .lx-cont1 .lx-a1v1 .asht_list1 > li:nth-child(7) {
  width: 28%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .asht_list1 > li:nth-child(3), .lx-cont1 .lx-a1v1 .asht_list1 > li:nth-child(7) {
    width: 100%;
  }
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .tit1 {
  font-size: 1.125rem;
  line-height: 1.35em;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .p1 {
  font-size: 1.375rem;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .asht_list1 > li .p1 {
    font-size: 1.25rem;
  }
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza {
  margin-top: 0.25rem;
  gap: 0.5rem;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li {
  position: relative;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li a.img {
  color: #fff;
  border: none;
  background: #808080;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  border-radius: 50%;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li a.img img {
  width: 56%;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li a.img:hover {
  background: var(--color-zt);
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li .secazx {
  position: absolute;
  left: 50%;
  bottom: 110%;
  width: 7rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  padding: 0.35rem;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
  display: none;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li .secazx img {
  width: 100%;
}
.lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li:hover .secazx {
  display: block;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .asht_list1 > li .smdza li:nth-child(1) .secazx {
    left: 0;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
}
.lx-cont1 .lx-a1v2 {
  margin-top: 5.375rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 {
    margin-top: 2rem;
  }
}
.lx-cont1 .lx-a1v2 form .inpt {
  position: relative;
}
.lx-cont1 .lx-a1v2 form .inpt .m_label {
  position: absolute;
  left: 2rem;
  top: 0;
  color: #444444;
  font-size: 1rem;
  line-height: 3.75rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .inpt .m_label {
    line-height: 3.25rem;
    left: 1.5rem;
  }
}
.lx-cont1 .lx-a1v2 form .inpt .m_label span {
  color: #0ACB74;
}
.lx-cont1 .lx-a1v2 form .msg-a1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .msg-a1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.lx-cont1 .lx-a1v2 form .msg-a1 .inpt select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 1rem;
  line-height: 3.75rem;
  height: 3.75rem;
  border-radius: 3.75rem;
  padding: 0 2rem;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 93% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .msg-a1 .inpt select {
    line-height: 3.25rem;
    height: 3.25rem;
    padding: 0 1.5rem;
  }
}
.lx-cont1 .lx-a1v2 form .msg-a1 .inpt input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 1rem;
  line-height: 3.75rem;
  border-radius: 3.75rem;
  padding: 0 2rem;
  color: #333;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .msg-a1 .inpt input {
    line-height: 3.25rem;
    padding: 0 1.5rem;
  }
}
.lx-cont1 .lx-a1v2 form .msg-a3 {
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .msg-a3 {
    margin-top: 1.25rem;
  }
}
.lx-cont1 .lx-a1v2 form .msg-a3 .m_label {
  line-height: 1.5rem;
  top: 0.75rem;
}
.lx-cont1 .lx-a1v2 form .msg-a3 textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  font-size: 1rem;
  line-height: 1.5em;
  border-radius: 1.25rem;
  padding: 0.75em 2rem;
  color: #333;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .msg-a3 textarea {
    padding: 0.75em 1.5rem;
  }
}
.lx-cont1 .lx-a1v2 form .div_aghgha {
  margin-top: 2rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .div_aghgha {
    margin-top: 1rem;
  }
}
.lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont input[type=checkbox] {
  border: none;
  outline: none;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.125rem;
  position: relative;
  margin-right: 0.5rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont label {
  color: #444444;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont label {
    width: -webkit-calc(100% - 1.625rem);
    width: -moz-calc(100% - 1.625rem);
    width: calc(100% - 1.625rem);
  }
}
.lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont label a {
  color: #444444;
}
.lx-cont1 .lx-a1v2 form .div_aghgha .yszc-cont label a:hover {
  color: var(--color-zt);
}
.lx-cont1 .lx-a1v2 form .div_aghgha button {
  border: none;
  margin-left: auto;
}

.news-content .news-cont1 {
  padding-top: 5.625rem;
}
@media (max-width: 768px) {
  .news-content .news-cont1 {
    padding-top: 2rem;
  }
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 {
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.875rem;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .news-a1v1 .mySwiper5 {
    border-radius: 1rem;
  }
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa {
  background: #F3F5F6;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa a.img {
  width: 50%;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa a.img {
    width: 100%;
  }
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa a.img img {
  width: 100%;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p {
  width: 50%;
  padding: 1.5rem 3.5%;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p {
    width: 100%;
    padding: 1.25rem 6%;
  }
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .data {
  color: rgba(39, 39, 39, 0.3);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 400;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .name {
  color: #444444;
  font-size: 1.375rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
  display: block;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .name:hover {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .name {
    font-size: 1.25rem;
  }
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .p1 {
  color: #969696;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.75rem;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .xw-more {
  display: block;
  color: #7F8384;
  font-size: 1rem;
  margin-top: 1.5rem;
}
.news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .xw-more:hover {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .news-content .news-cont1 .news-a1v1 .mySwiper5 .swiper-slide .imagsxa .cont-p .xw-more {
    margin-top: 1rem;
  }
}
.news-content .news-cont1 .news-a1v1 .swiper-pagination1 {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .news-a1v1 .swiper-pagination1 {
    margin-top: 0.75rem;
  }
}
.news-content .news-cont1 .news-a1v1 .swiper-pagination1 span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 1.125rem;
  opacity: 1;
}
.news-content .news-cont1 .news-a1v1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0ACB74;
}

.news-cont2 {
  padding: 5.625rem 0 1rem;
}
@media (max-width: 768px) {
  .news-cont2 {
    padding: 1.5rem 0 0.5rem;
  }
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}
@media (max-width: 768px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.35rem;
  }
}
.news-list li a.imgz {
  display: block;
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.news-list li a.imgz u {
  display: block;
  font-size: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}
.news-list li a.imgz u img {
  width: 100%;
  aspect-ratio: 16 / 10;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.news-list li a.imgz .data {
  color: rgba(39, 39, 39, 0.3);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
  font-weight: 500;
}
.news-list li a.imgz .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.news-list li a.imgz .name {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .news-list li a.imgz .name {
    font-size: 1.25rem;
  }
}
.news-list li a.imgz .p1 {
  color: #969696;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.news-list li a.imgz .xw-more {
  color: #7F8384;
  font-size: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-list li a.imgz .xw-more {
    margin-top: 1rem;
  }
}
.news-list li a.imgz:hover {
  background: -webkit-linear-gradient(top, #0ACB74 0%, #FFF 47.72%);
  background: -moz-linear-gradient(top, #0ACB74 0%, #FFF 47.72%);
  background: -o-linear-gradient(top, #0ACB74 0%, #FFF 47.72%);
  background: linear-gradient(180deg, #0ACB74 0%, #FFF 47.72%);
}
.news-list li a.imgz:hover u img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.news-list li a.imgz:hover .name {
  color: var(--color-zt);
}
.news-list li a.imgz:hover .xw-more {
  color: var(--color-zt);
}

.show-news-content {
  padding: 3.125rem 0 2rem;
}
@media (max-width: 768px) {
  .show-news-content {
    padding: 2rem 0;
  }
}
.show-news-content .show-news-a1_v1 .content {
  width: 67.8571428571%;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content {
    width: 100%;
  }
}
.show-news-content .show-news-a1_v1 .content .title-a {
  color: #2B2D2D;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .title-a {
    font-size: 1.8rem;
  }
}
.show-news-content .show-news-a1_v1 .content .data {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.75rem;
  font-weight: 500;
}
.show-news-content .show-news-a1_v1 .content .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss {
  color: #969696;
  font-size: 1rem;
  line-height: 1.65em;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.625rem 0;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .xinwn-consss {
    padding: 1.5rem 0;
    margin-top: 1.25rem;
  }
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss img {
  width: 100%;
  border-radius: 1.875rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .xinwn-consss img {
    border-radius: 1rem;
  }
}
.show-news-content .show-news-a1_v1 .content .shanys {
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .shanys {
    padding: 1rem 0;
  }
}
.show-news-content .show-news-a1_v1 .content .shanys > div {
  color: #444444;
  font-size: 1rem;
  line-height: 2em;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .shanys > div {
    line-height: 1.5em;
    padding: 0.25rem 0;
  }
}
.show-news-content .show-news-a1_v1 .content .shanys > div a {
  color: #969696;
}
.show-news-content .show-news-a1_v1 .content .shanys > div a:hover {
  color: var(--color-zt);
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 {
  width: 23.4285714286%;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .show-news-a1_b1 {
    display: none;
  }
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 {
  background: #F6F6F6;
  padding: 2rem;
  border-radius: 1.25rem;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tit-gfax {
  color: #2B2D2D;
  font-size: 1.875rem;
  font-weight: 700;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li {
  margin-top: 1.5rem;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz {
  display: block;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz u {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz u img {
  width: 100%;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz .data {
  color: rgba(39, 39, 39, 0.3);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
  font-weight: 500;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz .name {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.35rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz .name {
    font-size: 1.125rem;
  }
}
.show-news-content .show-news-a1_v1 .show-news-a1_b1 .ciobtx1 .tjxw_liust1 li a.imgz:hover .name {
  color: var(--color-zt);
}

.cpbanner .mbx-cont {
  z-index: 9;
}
.cpbanner .er-gat {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 100%;
  z-index: 9;
  text-align: right;
}
.cpbanner .er-gat .pagination .list {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  width: auto;
  height: 2rem;
  background: transparent;
  border-radius: 0;
  outline: 0;
}
.cpbanner .er-gat .pagination button {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.cpbanner .er-gat .pagination .list + .list {
  margin-left: 2.5rem !important;
}
@media (max-width: 768px) {
  .cpbanner .er-gat .pagination .list + .list {
    margin-left: 1.5rem !important;
  }
}
.cpbanner .er-gat .pagination button svg {
  position: absolute;
  width: 2rem;
  height: 2rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  left: 72%;
  top: 72%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cpbanner .er-gat .pagination .swiper-pagination-bullet-active button svg {
  -webkit-animation-name: circ;
     -moz-animation-name: circ;
       -o-animation-name: circ;
          animation-name: circ;
  -webkit-animation-duration: 6.5s;
     -moz-animation-duration: 6.5s;
       -o-animation-duration: 6.5s;
          animation-duration: 6.5s;
  stroke-dashoffset: 0\0 ;
  stroke-dasharray: 0\0 ;
}

.product-content {
  padding: 4.5rem 0 1rem;
  background: #F6F6F6;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-content {
    padding: 2rem 0 0.5rem;
  }
}
.product-content .product-list li {
  background: #fff;
  border-radius: 1.875rem;
  padding: 4.375rem 6.5%;
}
@media (max-width: 768px) {
  .product-content .product-list li {
    padding: 1.5rem 7%;
    border-radius: 1rem;
  }
}
.product-content .product-list li + li {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .product-content .product-list li + li {
    margin-top: 1.5rem;
  }
}
.product-content .product-list li .cont-p {
  width: 53.7288135593%;
}
@media (max-width: 768px) {
  .product-content .product-list li .cont-p {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.product-content .product-list li .cont-p .ftoita {
  color: var(--color-zt);
  font-size: 1rem;
  line-height: 1.5em;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .product-content .product-list li .cont-p .ftoita {
    margin-bottom: 0.5rem;
  }
}
.product-content .product-list li .cont-p .zs {
  font-size: 5rem;
  line-height: 1em;
  font-weight: 700;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .product-content .product-list li .cont-p .zs {
    font-size: 3rem;
  }
}
.product-content .product-list li .cont-p .tit {
  color: #2B2D2D;
  font-size: 2rem;
  line-height: 1.125em;
  margin-top: -2rem;
}
.product-content .product-list li .cont-p .tit span {
  font-weight: 600;
  color: var(--color-zt);
  font-size: 2.5rem;
  display: block;
}
@media (max-width: 768px) {
  .product-content .product-list li .cont-p .tit {
    font-size: 1.35rem;
    margin-top: -1rem;
  }
  .product-content .product-list li .cont-p .tit span {
    font-size: 1.5rem;
  }
}
.product-content .product-list li .cont-p .p1 {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1rem;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .product-content .product-list li .cont-p .p1 {
    margin-top: 0.5rem;
  }
}
.product-content .product-list li .cont-p a.more-b {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .product-content .product-list li .cont-p a.more-b {
    margin-top: 1rem;
  }
}
.product-content .product-list li a.img {
  width: 44.0677966102%;
  display: block;
  padding: 1rem;
}
@media (max-width: 768px) {
  .product-content .product-list li a.img {
    width: 100%;
    padding: 1rem;
  }
}
.product-content .product-list li a.img img {
  width: 100%;
}

.cp-show-banner {
  position: relative;
}
.cp-show-banner .top-mbx {
  position: absolute;
  left: 0;
  top: var(--head-height);
  width: 100%;
}
@media (max-width: 990px) {
  .cp-show-banner .top-mbx {
    top: 1rem;
  }
}
.cp-show-banner .top-mbx .ajhhsd {
  padding: 0.45rem 0;
  color: rgba(43, 45, 45, 0.65);
  gap: 0.5rem;
}
.cp-show-banner .top-mbx .ajhhsd i {
  font-size: 1.25rem;
}
.cp-show-banner .top-mbx .ajhhsd a {
  color: rgba(43, 45, 45, 0.65);
}
.cp-show-banner .top-mbx .ajhhsd a:hover {
  color: var(--color-zt);
}
.cp-show-banner .imgx {
  width: 100%;
  font-size: 0;
}
.cp-show-banner .imgx img {
  width: 100%;
}
@media (max-width: 768px) {
  .cp-show-banner .imgx img {
    aspect-ratio: 9/11;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cp-show-banner .cp-show-wen1 {
  width: 100%;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 {
    margin-top: 2rem;
  }
}
.cp-show-banner .cp-show-wen1 .cont-p {
  width: 45%;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 .cont-p {
    width: 100%;
  }
}
.cp-show-banner .cp-show-wen1 .cont-p .ftoita {
  color: var(--color-zt);
  font-size: 1rem;
  line-height: 1.5em;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 .cont-p .ftoita {
    margin-bottom: 0.5rem;
  }
}
.cp-show-banner .cp-show-wen1 .cont-p .zs {
  font-size: 5rem;
  line-height: 1em;
  font-weight: 700;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 .cont-p .zs {
    font-size: 3rem;
  }
}
.cp-show-banner .cp-show-wen1 .cont-p .tit {
  color: #2B2D2D;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-top: -2rem;
}
.cp-show-banner .cp-show-wen1 .cont-p .tit span {
  color: var(--color-zt);
  font-size: 3.125rem;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 .cont-p .tit {
    font-size: 1.8rem;
    margin-top: -1rem;
  }
  .cp-show-banner .cp-show-wen1 .cont-p .tit span {
    font-size: 2rem;
  }
}
.cp-show-banner .cp-show-wen1 .cont-p .more-axa {
  margin-top: 3.25rem;
  gap: 1.625rem;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 .cont-p .more-axa {
    margin-top: 2rem;
    gap: 1rem;
  }
}
.cp-show-banner .cp-show-wen1 .img {
  width: 52.5%;
}
@media (max-width: 768px) {
  .cp-show-banner .cp-show-wen1 .img {
    width: 100%;
    margin-top: 1rem;
  }
}
.cp-show-banner .cp-show-wen1 .img img {
  width: 100%;
  -webkit-filter: drop-shadow(0.5rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.125));
          filter: drop-shadow(0.5rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.125));
}

.pro-show-cont1 {
  padding: 5.625rem 0;
}
@media (max-width: 768px) {
  .pro-show-cont1 {
    padding: 2.5rem 0;
  }
}
.pro-show-cont1 .p1 {
  /*text-align: justify;*/
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.5rem;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .pro-show-cont1 .p1 {
    font-size: 1.125rem;
  }
}
.pro-show-cont1 .ashx1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .ashx1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem 1.5rem;
    margin-top: 1.75rem;
  }
}
.pro-show-cont1 .ashx1 li {
  text-align: center;
}
.pro-show-cont1 .ashx1 li u {
  background: #2B2D2D;
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pro-show-cont1 .ashx1 li u {
    width: 5.5rem;
    height: 5.5rem;
  }
}
.pro-show-cont1 .ashx1 li u img {
  width: 65%;
}
.pro-show-cont1 .ashx1 li .tit {
  color: #2B2D2D;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 500;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .ashx1 li .tit {
    margin-top: 0.65rem;
    font-size: 1.25rem;
  }
}
.pro-show-cont1 .ashx1 li .txt {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.625em;
  text-wrap: balance;
  word-break: keep-all;
}
.pro-show-cont1 .ashx1 li:hover u {
  background: var(--color-zt);
}

.pro-show-cont2 {
  padding: 5.625rem 0;
}
@media (max-width: 768px) {
  .pro-show-cont2 {
    padding: 2rem 0;
  }
}
.pro-show-cont2 .pro-show-a2v1 .jtas-b {
  width: auto;
  gap: 1rem;
}
.pro-show-cont2 .pro-show-a2v1 .jtas-b > div {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #2B2D2D;
}
.pro-show-cont2 .pro-show-a2v1 .jtas-b > div i {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1em;
}
.pro-show-cont2 .pro-show-a2v1 .jtas-b > div:hover {
  background: var(--color-zt);
}
.pro-show-cont2 .pro-show-a2v2 {
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v2 {
    margin-top: 1.75rem;
  }
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 {
  padding: 0 30.7291666667%;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v2 .mySwiper7 {
    padding: 0 15%;
  }
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img {
  display: block;
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img i {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img i {
    border-radius: 1rem;
  }
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img i img {
  width: 100%;
  aspect-ratio: 744/528;
  -o-object-fit: cover;
     object-fit: cover;
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img .tit {
  text-align: center;
  color: #2B2D2D;
  font-size: 1.375rem;
  line-height: 1.5em;
  padding: 0.75em 0;
  opacity: 0;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img .tit {
    font-size: 1.25rem;
  }
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide a.img:hover .tit {
  color: #0ACB74;
}
.pro-show-cont2 .pro-show-a2v2 .mySwiper7 .swiper-slide.swiper-slide-active a.img .tit {
  opacity: 1;
}
.pro-show-cont2 .pro-show-a2v2 .swiper-pagination1 {
  text-align: center;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v2 .swiper-pagination1 {
    margin-top: 0.5rem;
  }
}
.pro-show-cont2 .pro-show-a2v2 .swiper-pagination1 span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 1.125rem;
  opacity: 1;
}
.pro-show-cont2 .pro-show-a2v2 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0ACB74;
}

.pro-show-cont3 {
  padding-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 {
    padding-bottom: 2.5rem;
  }
}
.pro-show-cont3 .table-cont {
  margin-top: 3.375rem;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .pro-show-cont3 .table-cont {
    margin-top: 1.5rem;
  }
}
.pro-show-cont3 .table-cont table {
  border-color: #E2E2E2;
  border: none;
  min-width: 768px;
}
.pro-show-cont3 .table-cont table tr td {
  vertical-align: middle;
}
@media (max-width: 768px) {
  .pro-show-cont3 .table-cont table tr td {
    padding: 0.75rem !important;
  }
}
.pro-show-cont3 .table-cont table thead tr {
  border-bottom: 2px solid var(--color-zt);
}
.pro-show-cont3 .table-cont table thead tr td {
  border: none;
  color: #2B2D2D;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5em;
}
.pro-show-cont3 .table-cont table tbody tr td {
  color: #2B2D2D;
  font-size: 1rem;
  line-height: 1.5em;
  border-top: none;
  border-bottom: none;
}
.pro-show-cont3 .table-cont table tbody tr td:first-child {
  border-left: none;
}
.pro-show-cont3 .table-cont table tbody tr td:last-child {
  border-right: none;
}
.pro-show-cont3 .table-cont table tbody tr td:nth-child(1) {
  font-weight: 500;
}
.pro-show-cont3 .table-cont table tbody tr:nth-child(2n-1) {
  background: #F3F5F6;
}

.pro-show-cont4 {
  padding: 9.0625rem 0 11rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 {
    padding: 2.5rem 0;
  }
}
.pro-show-cont4 .pro-show-a4v1 {
  gap: 1.5rem;
}
.pro-show-cont4 .pro-show-a4v1 .jtas-b {
  width: auto;
  gap: 1rem;
}
.pro-show-cont4 .pro-show-a4v1 .jtas-b > div {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #2B2D2D;
}
.pro-show-cont4 .pro-show-a4v1 .jtas-b > div i {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1em;
}
.pro-show-cont4 .pro-show-a4v1 .jtas-b > div:hover {
  background: var(--color-zt);
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 {
  margin-top: 4.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 .pro-show-a4v2 .mySwiper8 {
    margin-top: 2rem;
  }
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa {
  position: relative;
  display: block;
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .bj-img {
  font-size: 0;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .bj-img {
    border-radius: 1rem;
  }
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .bj-img img {
  width: 100%;
  aspect-ratio: 321/392;
  -o-object-fit: cover;
     object-fit: cover;
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .bj-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -moz-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -o-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: linear-gradient(180deg, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .con-ax1 {
  position: absolute;
  left: 0;
  top: 2.25rem;
  width: 100%;
  padding: 0 7.5%;
  z-index: 1;
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .con-ax1 .img {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: #fff;
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .con-ax1 .img img {
  width: 68%;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}
.pro-show-cont4 .pro-show-a4v2 .mySwiper8 .swiper-slide .cont-paxa .con-ax1 p {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.35em;
  padding-left: 1rem;
  width: -webkit-calc(100% - 3.375rem);
  width: -moz-calc(100% - 3.375rem);
  width: calc(100% - 3.375rem);
}

.pro-show-cont5 {
  background: #F6F6F6;
  padding: 6.25rem 0 4.6875rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 {
    padding: 2.5rem 0;
  }
}
.pro-show-cont5 form {
  margin-top: 1.5625rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 form {
    margin-top: 1rem;
  }
}
.pro-show-cont5 form .inpt {
  position: relative;
}
.pro-show-cont5 form .inpt .m_label {
  position: absolute;
  left: 2rem;
  top: 0;
  color: #444444;
  font-size: 1rem;
  line-height: 3.75rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .inpt .m_label {
    line-height: 3.25rem;
    left: 1.5rem;
  }
}
.pro-show-cont5 form .inpt .m_label span {
  color: #0ACB74;
}
.pro-show-cont5 form .msg-a1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .msg-a1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.pro-show-cont5 form .msg-a1 .inpt select {
  border: none;
  width: 100%;
  font-size: 1rem;
  line-height: 3.75rem;
  height: 3.75rem;
  border-radius: 3.75rem;
  padding: 0 2rem;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 93% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .msg-a1 .inpt select {
    line-height: 3.25rem;
    height: 3.25rem;
    padding: 0 1.5rem;
  }
}
.pro-show-cont5 form .msg-a1 .inpt input {
  border: none;
  width: 100%;
  font-size: 1rem;
  line-height: 3.75rem;
  border-radius: 3.75rem;
  padding: 0 2rem;
  color: #333;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .msg-a1 .inpt input {
    line-height: 3.25rem;
    padding: 0 1.5rem;
  }
}
.pro-show-cont5 form .msg-a3 {
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .msg-a3 {
    margin-top: 1.25rem;
  }
}
.pro-show-cont5 form .msg-a3 .m_label {
  line-height: 1.5rem;
  top: 0.75rem;
}
.pro-show-cont5 form .msg-a3 textarea {
  width: 100%;
  border: none;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5em;
  border-radius: 1.25rem;
  padding: 0.75em 2rem;
  color: #333;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .msg-a3 textarea {
    padding: 0.75em 1.5rem;
  }
}
.pro-show-cont5 form .div_aghgha {
  margin-top: 2rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .div_aghgha {
    margin-top: 1rem;
  }
}
.pro-show-cont5 form .div_aghgha .yszc-cont input[type=checkbox] {
  border: none;
  outline: none;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.125rem;
  position: relative;
  margin-right: 0.5rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.pro-show-cont5 form .div_aghgha .yszc-cont input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.pro-show-cont5 form .div_aghgha .yszc-cont input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.pro-show-cont5 form .div_aghgha .yszc-cont label {
  color: #444444;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .pro-show-cont5 form .div_aghgha .yszc-cont label {
    width: -webkit-calc(100% - 1.625rem);
    width: -moz-calc(100% - 1.625rem);
    width: calc(100% - 1.625rem);
  }
}
.pro-show-cont5 form .div_aghgha .yszc-cont label a {
  color: #444444;
}
.pro-show-cont5 form .div_aghgha .yszc-cont label a:hover {
  color: var(--color-zt);
}
.pro-show-cont5 form .div_aghgha button {
  border: none;
  margin-left: auto;
}

.prodata-sec__nav {
  position: fixed;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}
@media (max-width: 1280px) {
  .prodata-sec__nav {
    left: 9px;
  }
}
@media (max-width: 990px) {
  .prodata-sec__nav {
    display: none;
  }
}
.prodata-sec__nav .nav-line {
  -webkit-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  transition: height 0.3s linear;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1875rem;
  height: 16.6666666667%;
  background-color: var(--color-zt);
  border-radius: 5px;
}
.prodata-sec__nav #nav li {
  cursor: pointer;
}
.prodata-sec__nav #nav li a {
  -webkit-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  transition: color 0.3s linear;
  color: #000;
  display: inline-block;
  padding-top: 1.25rem;
  padding-left: 1.5rem;
}
@media (max-width: 1280px) {
  .prodata-sec__nav #nav li a {
    padding-left: 0.5rem;
  }
}
.prodata-sec__nav #nav li a .item-title {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  font-size: 1rem;
  line-height: 1.75em;
}
.prodata-sec__nav #nav li.current a .item-title, .prodata-sec__nav #nav li:hover a .item-title {
  opacity: 1;
  visibility: visible;
}
.prodata-sec__nav::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1875rem;
  height: 100%;
  background-color: rgba(68, 68, 68, 0.1);
}

.yy-cont1 {
  position: relative;
  padding: 6.1875rem 0 11.875rem;
}
@media (max-width: 768px) {
  .yy-cont1 {
    padding: 2rem 0;
  }
}
.yy-cont1::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -15%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-cont1::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: -35%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-cont1 .p1-txt {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.25rem;
  line-height: 1.65em;
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .yy-cont1 .p1-txt {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}
.yy-cont1 .a2v2 {
  margin-top: 4.375rem;
  padding-left: var(--cbasta);
}
@media (max-width: 768px) {
  .yy-cont1 .a2v2 {
    margin-top: 1.5rem;
  }
}
.yy-cont1 .a2v2 .mySwiper21 {
  padding-right: var(--cbasta);
  overflow: visible;
}
@media (max-width: 768px) {
  .yy-cont1 .a2v2 .mySwiper21 {
    overflow: hidden;
  }
}
.yy-cont1 .a2v2 .mySwiper21 .wrap_x {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide {
  width: 27.0625rem;
  margin-right: 2.875rem;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa {
  position: relative;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .bj-img {
  font-size: 0;
  border-radius: 1.875rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .bj-img {
    border-radius: 1rem;
  }
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .bj-img img {
  width: 100%;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .bj-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -moz-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: -o-linear-gradient(top, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
  background: linear-gradient(180deg, rgba(10, 203, 116, 0) 40.56%, #0ACB74 100%);
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax1 {
  position: absolute;
  left: 0;
  top: 3rem;
  width: 100%;
  padding: 0 8.5%;
  z-index: 1;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax1 .img {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: #fff;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax1 .img img {
  width: 68%;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax1 p {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.5em;
  margin-left: 1rem;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 {
  position: absolute;
  left: 0;
  bottom: 3rem;
  width: 100%;
  padding: 0 8.5%;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(1rem);
     -moz-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
       -o-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 .txt {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.75em;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 .nmasxa {
  margin-top: 1.5rem;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 .nmasxa a.more-b {
  padding: 1rem 2.25rem;
}
@media (max-width: 768px) {
  .yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 .nmasxa a.more-b {
    padding: 0.85rem 1.75rem;
  }
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa .con-ax2 .nmasxa a.more-b.bs {
  color: #0ACB74;
  border: 1px solid #fff;
}
.yy-cont1 .a2v2 .mySwiper21 .swiper-slide .cont-paxa:hover .con-ax2 {
  opacity: 1;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a {
  margin-top: 3rem;
  gap: 1.35rem;
}
@media (max-width: 768px) {
  .yy-cont1 .a2v2 .mySwiper21 .jata-a {
    margin-top: 1.5rem;
  }
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .swiper-pagination {
  background: #E8E8E8;
  width: 100%;
  top: auto;
  height: 3px;
  bottom: 0;
  position: static;
  border-radius: 0.2rem;
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-zt);
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .swiper-pagination {
  width: auto;
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .jtas-b {
  width: auto;
  gap: 1rem;
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .jtas-b > div {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #2B2D2D;
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .jtas-b > div i {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1em;
}
.yy-cont1 .a2v2 .mySwiper21 .jata-a .jtas-b > div:hover {
  background: var(--color-zt);
}

.yy-cont2 {
  background: rgba(217, 217, 217, 0.5);
  padding-top: 8.25rem;
}
@media (max-width: 768px) {
  .yy-cont2 {
    padding: 2.5rem 0;
  }
}
.yy-cont2 .yy-a2v1 {
  width: 59.5%;
  margin: 0 auto;
  position: relative;
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 {
    margin-top: 2rem;
    width: 100%;
  }
}
.yy-cont2 .yy-a2v1 .img-asx {
  font-size: 0;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .img-asx {
    display: none;
  }
}
.yy-cont2 .yy-a2v1 .img-asx img {
  width: 100%;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li {
  width: 48.9795918367%;
  position: absolute;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li {
    width: 100%;
    position: static;
  }
  .yy-cont2 .yy-a2v1 .yy-a2list1 li + li {
    margin-top: 1.65rem;
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li .cont-p {
  width: -webkit-calc(95% - 6.875rem);
  width: -moz-calc(95% - 6.875rem);
  width: calc(95% - 6.875rem);
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li .cont-p {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: -webkit-calc(95% - 5.5rem);
    width: -moz-calc(95% - 5.5rem);
    width: calc(95% - 5.5rem);
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li .cont-p .tit {
  color: #2B2D2D;
  font-size: 1.5rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li .cont-p .tit {
    font-size: 1.25rem;
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li .cont-p .p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  line-height: 1.65em;
  margin-top: 0.85rem;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li .cont-p .p {
    margin-top: 0.45rem;
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li .img {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: #2B2D2D;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li .img {
    width: 5.5rem;
    height: 5.5rem;
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li .img img {
  width: 50%;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(1) {
  left: -39%;
  bottom: 21%;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(1) .cont-p {
  text-align: right;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(1) .cont-p {
    text-align: left;
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(2) {
  left: -18%;
  top: -1%;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(2) .cont-p {
  text-align: right;
}
@media (max-width: 768px) {
  .yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(2) .cont-p {
    text-align: left;
  }
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(3) {
     right: -21%;
    top: -4%;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(3) .cont-p {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(4) {
  right: -39%;
  bottom: 21%;
}
.yy-cont2 .yy-a2v1 .yy-a2list1 li:nth-child(4) .cont-p {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.yy-cont3 {
  padding: 8.25rem 0 6.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .yy-cont3 {
    padding: 2.5rem 0;
  }
}
.yy-cont3::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-cont3 .p1-txt {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.375rem;
  line-height: 1.65em;
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .yy-cont3 .p1-txt {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}
.yy-cont3 .yy-a3_list1 {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list1 {
    margin-top: 1.5rem;
  }
}
.yy-cont3 .yy-a3_list1 li {
  display: none;
  width: 48.7857142857%;
  border-radius: 1.875rem;
  border: 1px solid #0ACB74;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  height: 17.1875rem;
  overflow: hidden;
  margin: 0 auto;
  padding: 1rem;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list1 li {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
  }
}
.yy-cont3 .yy-a3_list1 li > div {
  height: 100%;
}
.yy-cont3 .yy-a3_list1 li .p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list1 li .p {
    font-size: 1rem;
    line-height: 1.65em;
  }
}
.yy-cont3 .yy-a3_list2 {
  position: relative;
  margin-top: 5.425rem;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list2 {
    margin-top: 2rem;
  }
}
.yy-cont3 .yy-a3_list2::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 3.4375rem;
  background: rgba(0, 0, 0, 0.2);
  height: 1px;
  z-index: -1;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list2::after {
    top: 2.25rem;
  }
}
.yy-cont3 .yy-a3_list2 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  cursor: pointer;
}
.yy-cont3 .yy-a3_list2 li u {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list2 li u {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.yy-cont3 .yy-a3_list2 li u img {
  width: 50%;
}
.yy-cont3 .yy-a3_list2 li p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .yy-cont3 .yy-a3_list2 li p {
    font-size: 1rem;
  }
}
.yy-cont3 .yy-a3_list2 li.on u {
  background: var(--color-zt);
}

.yy-cont4 {
  padding: 5.375rem 0 11.875rem;
  position: relative;
}
@media (max-width: 768px) {
  .yy-cont4 {
    padding: 1.5rem 0 2.5rem;
  }
}
.yy-cont4::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-cont4 .table-cont {
  margin-top: 4.375rem;
  overflow: auto;
}
@media (max-width: 768px) {
  .yy-cont4 .table-cont {
    margin-top: 1.75rem;
  }
}
.yy-cont4 .table-cont table {
  border: none;
  min-width: 768px;
}
.yy-cont4 .table-cont table tr td {
  border: none;
  padding: 0 !important;
  width: 25%;
  text-align: center;
}
.yy-cont4 .table-cont table tr td:nth-child(2) {
  width: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.yy-cont4 .table-cont table tr td:nth-child(2) div {
  width: 50%;
}
.yy-cont4 .table-cont table thead tr td:nth-child(2) {
  background: #0ACB74;
  border-top-left-radius: 2.6rem;
  color: #fff;
}
.yy-cont4 .table-cont table thead tr td:nth-child(2) div {
  padding: 1.45rem 1rem !important;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .yy-cont4 .table-cont table thead tr td:nth-child(2) div {
    padding: 1.25rem 1rem !important;
    font-size: 1.35rem;
  }
}
.yy-cont4 .table-cont table thead tr td:nth-child(2) div:nth-child(2) {
  background: #2B2D2D;
  border-top-left-radius: 1.875rem;
}
.yy-cont4 .table-cont table tbody tr td {
  color: #2B2D2D;
  font-size: 1.125rem;
  line-height: 1.25em;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .yy-cont4 .table-cont table tbody tr td {
    font-size: 1.125rem;
  }
}
.yy-cont4 .table-cont table tbody tr td div {
  padding: 2.65rem 1rem !important;
}
@media (max-width: 768px) {
  .yy-cont4 .table-cont table tbody tr td div {
    padding: 1.85rem 1rem !important;
  }
}
.yy-cont4 .table-cont table tbody tr td div span {
  color: var(--color-zt);
}
.yy-cont4 .table-cont table tbody tr td:nth-child(1) {
  background: #F6F6F6;
}
.yy-cont4 .table-cont table tbody tr td:nth-child(2) {
  background: #FFFFFF;
}
.yy-cont4 .table-cont table tbody tr td:nth-child(2) div {
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}

.yy-cont5 {
  background: #F3F5F6;
  padding: 7.5rem 0 6.6875rem;
}
@media (max-width: 768px) {
  .yy-cont5 {
    padding: 2.5rem 0;
  }
}
.yy-cont5 .yys-a5list1 {
  margin-top: 3.625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .yy-cont5 .yys-a5list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}
.yy-cont5 .yys-a5list1 li {
  border-radius: 1.875rem;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 768px) {
  .yy-cont5 .yys-a5list1 li {
    border-radius: 1rem;
  }
}
.yy-cont5 .yys-a5list1 li .img {
  overflow: hidden;
  display: block;
}
.yy-cont5 .yys-a5list1 li .img img {
  width: 100%;
}
.yy-cont5 .yys-a5list1 li .cont-p {
  padding: 2.1875rem 7.5%;
}
@media (max-width: 768px) {
  .yy-cont5 .yys-a5list1 li .cont-p {
    padding: 1.85rem 6.5%;
  }
}
.yy-cont5 .yys-a5list1 li .cont-p .tit {
  color: #2B2D2D;
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .yy-cont5 .yys-a5list1 li .cont-p .tit {
    font-size: 1.35rem;
  }
}
.yy-cont5 .yys-a5list1 li .cont-p .p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  margin-top: 0.5rem;
}
.yy-cont5 .yys-a5list1 li .cont-p a.masx-ax {
  color: #2B2D2D;
  font-size: 1rem;
  line-height: 1.5em;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .yy-cont5 .yys-a5list1 li .cont-p a.masx-ax {
    margin-top: 1rem;
  }
}
.yy-cont5 .yys-a5list1 li .cont-p a.masx-ax i {
  font-size: 1.25rem;
}
.yy-cont5 .yys-a5list1 li .cont-p a.masx-ax:hover {
  color: var(--color-zt);
}

.yy-show-cont1 {
  padding: 6.25rem 0 0;
  position: relative;
}
@media (max-width: 768px) {
  .yy-show-cont1 {
    padding-top: 2.5rem;
  }
}
.yy-show-cont1::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -15%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-show-cont1 .yy-show-a1v1 .yy-show-a1b1 {
  width: 49.6428571429%;
}
@media (max-width: 768px) {
  .yy-show-cont1 .yy-show-a1v1 .yy-show-a1b1 {
    width: 100%;
  }
}
.yy-show-cont1 .yy-show-a1v1 .yy-show-a1b1 .p1 {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.25rem;
  line-height: 1.75em;
  margin-top: 1.5rem;
  /*text-align: justify;*/
}
@media (max-width: 768px) {
  .yy-show-cont1 .yy-show-a1v1 .yy-show-a1b1 .p1 {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}
.yy-show-cont1 .yy-show-a1v1 .yy-show-a1b2 {
  width: 34.5714285714%;
}
@media (max-width: 768px) {
  .yy-show-cont1 .yy-show-a1v1 .yy-show-a1b2 {
    width: 70%;
    margin: 1.5rem auto 0;
  }
}
.yy-show-cont1 .yy-show-a1v1 .yy-show-a1b2 img {
  width: 100%;
}

.yy-show-cont2 {
  padding: 5.9375rem 0 5rem;
  position: relative;
}
@media (max-width: 768px) {
  .yy-show-cont2 {
    padding: 2.5rem 0;
  }
}
.yy-show-cont2::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 0%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-show-cont2 .asr_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .yy-show-cont2 .asr_list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 450px) {
  .yy-show-cont2 .asr_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.125rem;
  }
}
.yy-show-cont2 .asr_list1 li {
  background: #F3F5F6;
  border-radius: 1.875rem;
  padding: 2.5rem 5%;
  text-align: center;
}
@media (max-width: 768px) {
  .yy-show-cont2 .asr_list1 li {
    border-radius: 1rem;
    padding: 1.85rem 5%;
  }
}
.yy-show-cont2 .asr_list1 li .img {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .yy-show-cont2 .asr_list1 li .img {
    width: 5.8rem;
    height: 5.8rem;
  }
}
.yy-show-cont2 .asr_list1 li .img img {
  width: 50%;
}
.yy-show-cont2 .asr_list1 li .cont-p .name {
  color: #2B2D2D;
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .yy-show-cont2 .asr_list1 li .cont-p .name {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.yy-show-cont2 .asr_list1 li .cont-p .text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 0.5rem;
  padding: 0 10%;
}
.yy-show-cont2 .asr_list1 li:hover {
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.yy-show-cont2 .asr_list1 li:hover .img {
  background: #0ACB74;
}

.yy-show-cont3 {
  background: #F3F5F6;
  padding: 8.125rem 0 7rem;
}
@media (max-width: 768px) {
  .yy-show-cont3 {
    padding: 2.5rem 0;
  }
}
.yy-show-cont3 .asr_list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1875rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .yy-show-cont3 .asr_list2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}
.yy-show-cont3 .asr_list2 li {
  border-radius: 1.875rem;
  border-top: 1px solid #0ACB74;
  background: #FFF;
  padding: 2.625rem 6%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .yy-show-cont3 .asr_list2 li {
    border-radius: 1rem;
    padding: 1.5rem 8%;
  }
}
.yy-show-cont3 .asr_list2 li .img {
  width: 4rem;
}
@media (max-width: 768px) {
  .yy-show-cont3 .asr_list2 li .img {
    width: 3.5rem;
  }
}
.yy-show-cont3 .asr_list2 li .img img {
  width: 100%;
}
.yy-show-cont3 .asr_list2 li .cont-p {
  width: -webkit-calc(95% - 4rem);
  width: -moz-calc(95% - 4rem);
  width: calc(95% - 4rem);
}
@media (max-width: 768px) {
  .yy-show-cont3 .asr_list2 li .cont-p {
    width: -webkit-calc(95% - 3.5rem);
    width: -moz-calc(95% - 3.5rem);
    width: calc(95% - 3.5rem);
  }
}
.yy-show-cont3 .asr_list2 li .cont-p .name {
  color: #2B2D2D;
  font-size: 1.5rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .yy-show-cont3 .asr_list2 li .cont-p .name {
    font-size: 1.35rem;
  }
}
.yy-show-cont3 .asr_list2 li .cont-p .text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.55em;
  margin-top: 0.5em;
}
.yy-show-cont3 .asr_list2 li:hover {
  background: #2B2D2D;
}
.yy-show-cont3 .asr_list2 li:hover .img img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.yy-show-cont3 .asr_list2 li:hover .cont-p .name {
  color: #fff;
}
.yy-show-cont3 .asr_list2 li:hover .cont-p .text {
  color: #fff;
}

.yy-show-cont4 {
  padding: 7.75rem 0 6.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .yy-show-cont4 {
    padding: 2.5rem 0;
  }
}
.yy-show-cont4::after {
  content: "";
  position: absolute;
  right: 0;
  top: -50%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.2);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.yy-show-cont4 .yy-show-a4v1 {
  padding: 0 6.7708333333%;
  position: relative;
  margin-top: 4.0625rem;
}
@media (max-width: 768px) {
  .yy-show-cont4 .yy-show-a4v1 {
    margin-top: 1.25rem;
  }
}
.yy-show-cont4 .yy-show-a4v1 .jtas-b > div {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.yy-show-cont4 .yy-show-a4v1 .jtas-b > div.swiper-button-disabled {
  display: none;
}
.yy-show-cont4 .yy-show-a4v1 .jtas-b > div.swiper-button-prev1 {
  left: 2%;
}
.yy-show-cont4 .yy-show-a4v1 .jtas-b > div.swiper-button-next1 {
  right: 2%;
}
.yy-show-cont4 .yy-show-a4v1 .jtas-b > div i {
  color: rgba(0, 0, 0, 0.3);
  font-size: 3.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .yy-show-cont4 .yy-show-a4v1 .jtas-b > div i {
    font-size: 2.5rem;
  }
}
.yy-show-cont4 .yy-show-a4v1 .jtas-b > div:hover i {
  color: #000;
}
.yy-show-cont4 .yy-show-a4v1 .swiper-pagination1 {
  text-align: center;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .yy-show-cont4 .yy-show-a4v1 .swiper-pagination1 {
    margin-top: 0.5rem;
  }
}
.yy-show-cont4 .yy-show-a4v1 .swiper-pagination1 span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2B2D2D;
  margin: 0 1.125rem;
  opacity: 1;
}
.yy-show-cont4 .yy-show-a4v1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0ACB74;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa {
  position: relative;
  z-index: 1;
  padding: 2.75rem 9% 3rem;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #F3F5F6;
  border-radius: 1.875rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .tit {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .tit {
    font-size: 1.35rem;
  }
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .ftit {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
  height: 3em;
  overflow: hidden;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .img {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  -webkit-transform: translate(-50%, -50%) scale(0);
     -moz-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
       -o-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 60%;
  aspect-ratio: 1/1;
  background: var(--color-zt);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .img img {
  width: 100%;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .nmasxa {
  gap: 1.25rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa .nmasxa .ls {
  opacity: 0;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa:hover::after {
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto;
  -webkit-transform: scale(0.9);
     -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
       -o-transform: scale(0.9);
          transform: scale(0.9);
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa:hover .img::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
     -moz-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
       -o-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa:hover .nmasxa {
  right: 0;
  width: 100%;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa:hover .nmasxa .ls {
  opacity: 1;
  border: 1px solid var(--color-zt);
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa:hover .nmasxa .bs {
  background: #2B2D2D;
  color: #fff;
}
.yy-show-cont4 .yy-show-a4v1 .mySwiper9 .swiper-slide .cont-pa:hover .nmasxa .bs::after {
  background: var(--color-zt);
}

.body-id38 .yy-show-cont4 .yy-show-a4v1 .swiper-pagination1 {
  display: none;
}

.zbxg-cont1 {
  padding: 6.25rem 0 9.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .zbxg-cont1 {
    padding: 2.5rem 0;
  }
}
.zbxg-cont1::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -15%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
.zbxg-cont1 .asghzx_list1 {
  margin-top: 5.75rem;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 {
    margin-top: 1.5rem;
  }
}
.zbxg-cont1 .asghzx_list1 li {
  width: 31.4285714286%;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li {
    width: 100%;
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1 {
  padding: 3rem 3%;
}
@media (max-width: 1024px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1 {
    padding: 3rem 2%;
  }
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1 {
    padding: 2rem 2% 2rem 5%;
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1 i {
  display: block;
  font-size: 0;
  width: 4.625rem;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1 i {
    width: 3.625rem;
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1 i img {
  width: 100%;
}
.zbxg-cont1 .asghzx_list1 li.asjx1 .tit {
  color: #2B2D2D;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5em;
  width: -webkit-calc(96% - 4.625rem);
  width: -moz-calc(96% - 4.625rem);
  width: calc(96% - 4.625rem);
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1 .tit {
    width: -webkit-calc(96% - 3.625rem);
    width: -moz-calc(96% - 3.625rem);
    width: calc(96% - 3.625rem);
    font-size: 1.25rem;
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(1) {
  border-radius: 7.75rem 0 0 7.75rem;
  border-left: 1px solid #0ACB74;
  background: -webkit-linear-gradient(right, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  background: -moz-linear-gradient(right, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  background: -o-linear-gradient(right, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  background: linear-gradient(-90deg, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
}
.zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(1) .tit {
  padding-right: 5%;
}
@media (max-width: 1024px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(1) .tit {
    padding-right: 0;
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(3) {
  border-radius: 0 7.75rem 7.75rem 0;
  border-right: 1px solid #0ACB74;
  background: -webkit-linear-gradient(left, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  background: -moz-linear-gradient(left, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  background: -o-linear-gradient(left, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  background: linear-gradient(90deg, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(3) {
    border-radius: 0;
    border-radius: 7.75rem 0 0 7.75rem;
    border-right: none;
    border-left: 1px solid #0ACB74;
    background: -webkit-linear-gradient(right, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
    background: -moz-linear-gradient(right, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
    background: -o-linear-gradient(right, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
    background: linear-gradient(-90deg, rgba(10, 203, 116, 0) 0%, rgba(10, 203, 116, 0.2) 100%);
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(3) i {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(3) i {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(3) .tit {
  text-align: right;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.asjx1:nth-child(3) .tit {
    text-align: left;
  }
}
.zbxg-cont1 .asghzx_list1 li.as-sx {
  width: 51.4285714286%;
  margin: 0 -8%;
  position: relative;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.as-sx {
    width: 100%;
    margin: 1.25rem auto;
  }
}
.zbxg-cont1 .asghzx_list1 li.as-sx u {
  display: block;
  font-size: 0;
}
.zbxg-cont1 .asghzx_list1 li.as-sx u img {
  width: 100%;
}
.zbxg-cont1 .asghzx_list1 li.as-sx .cont-p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.zbxg-cont1 .asghzx_list1 li.as-sx .cont-p .tsxa {
  color: #0ACB74;
  font-size: 3.125rem;
  line-height: 1.125em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.as-sx .cont-p .tsxa {
    font-size: 2.25rem;
  }
}
.zbxg-cont1 .asghzx_list1 li.as-sx .cont-p .p1 {
  color: #2B2D2D;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .zbxg-cont1 .asghzx_list1 li.as-sx .cont-p .p1 {
    font-size: 1.5rem;
  }
}

.zbxg-cont2 {
  background-repeat: no-repeat;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
  padding: 10.625rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .zbxg-cont2 {
    padding: 2.75rem 0;
  }
}
.zbxg-cont2 .txa-asx {
  color: #FFFFFF;
  font-size: 1.875rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .zbxg-cont2 .txa-asx {
    font-size: 1.125rem;
  }
}
.zbxg-cont2 a.more-b {
  margin: 1.25rem auto 0;
}

.zbxg-cont3 {
  padding: 9.375rem 0 8.125rem;
  position: relative;
}
.zbxg-cont3::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -15%;
  width: 41.875rem;
  z-index: -1;
  aspect-ratio: 1/1;
  background: rgba(10, 203, 116, 0.1);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .zbxg-cont3 {
    padding: 2.5rem 0;
  }
}
.zbxg-cont3 .txa-asx {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.375rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .zbxg-cont3 .txa-asx {
    font-size: 1.125rem;
  }
}
.zbxg-cont3 .jspx_list1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.125rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .zbxg-cont3 .jspx_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.zbxg-cont3 .jspx_list1 li i {
  display: block;
  font-size: 0;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .zbxg-cont3 .jspx_list1 li i {
    border-radius: 1rem;
  }
}
.zbxg-cont3 .jspx_list1 li i img {
  width: 100%;
}

.zbxg-cont4 {
  background-repeat: no-repeat;
  background-position: center -10%;
  -o-background-size: 100% auto;
     background-size: 100% auto;
  padding: 9.0625rem 0 6.25rem;
}
@media (max-width: 768px) {
  .zbxg-cont4 {
    padding: 2.5rem 0;
    background-position: center top;
    -o-background-size: 150% auto;
       background-size: 150% auto;
  }
}
.zbxg-cont4 .zbxg-a4v1 {
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  margin-top: 6.825rem;
  padding: 4.75rem 0;
}
@media (max-width: 768px) {
  .zbxg-cont4 .zbxg-a4v1 {
    border-radius: 1rem;
    padding: 0;
    margin-top: 1.5rem;
  }
}
.zbxg-cont4 .zbxg-a4v1 .ash_list1 li {
  width: 50%;
  padding: 0 6.4285714286%;
}
@media (max-width: 768px) {
  .zbxg-cont4 .zbxg-a4v1 .ash_list1 li {
    width: 100%;
    padding: 2rem 6.4285714286%;
  }
}
.zbxg-cont4 .zbxg-a4v1 .ash_list1 li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .zbxg-cont4 .zbxg-a4v1 .ash_list1 li + li {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }
}
.zbxg-cont4 .zbxg-a4v1 .ash_list1 li .tit {
  color: #0ACB74;
  font-size: 3.5625rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .zbxg-cont4 .zbxg-a4v1 .ash_list1 li .tit {
    font-size: 1.85rem;
  }
}
.zbxg-cont4 .zbxg-a4v1 .ash_list1 li .p {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.375rem;
  line-height: 1.65em;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .zbxg-cont4 .zbxg-a4v1 .ash_list1 li .p {
    font-size: 1.125rem;
    margin-top: 0.25rem;
  }
}
.zbxg-cont4 .shzc-a4v2 {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem 1rem;
  border-radius: 3.125rem;
  color: #FFFFFF;
  gap: 1.5rem;
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .zbxg-cont4 .shzc-a4v2 {
    border-radius: 1rem;
    gap: 0.5rem;
    text-align: center;
    margin-top: 2rem;
  }
}
.zbxg-cont4 .shzc-a4v2 > p {
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .zbxg-cont4 .shzc-a4v2 > p {
    width: 100%;
    font-size: 1.25rem;
  }
}

.dow-content {
  padding: 5.375rem 0 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .dow-content {
    padding: 2rem 0 0.5rem;
  }
}
.dow-content .dow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .dow-content .dow-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.dow-content .dow-list li .xaz-more {
  border-radius: 1.25rem;
  background: #f0f0f0;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  padding: 1.875rem 2.8125rem;
}
@media (max-width: 768px) {
  .dow-content .dow-list li .xaz-more {
    border-radius: 1rem;
  }
}
.dow-content .dow-list li .xaz-more .img {
  width: 38.275862069%;
  font-size: 0;
}
.dow-content .dow-list li .xaz-more .img img {
  width: 100%;
}
.dow-content .dow-list li .xaz-more .wehxa {
  width: 47.4137931034%;
}
.dow-content .dow-list li .xaz-more .wehxa .tit {
  color: #2B2D2D;
  font-size: 1.6875rem;
  font-weight: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .dow-content .dow-list li .xaz-more .wehxa .tit {
    font-size: 1.35rem;
  }
}
.dow-content .dow-list li .xaz-more .wehxa .data {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  gap: 0.5rem 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .dow-content .dow-list li .xaz-more .wehxa .data {
    margin-top: 1rem;
  }
}
.dow-content .dow-list li .xaz-more .wehxa .data .more-xsa i {
  font-size: 1.25rem;
}
.dow-content .dow-list li .xaz-more:hover {
  border-color: #0ACB74;
}
.dow-content .dow-list li .xaz-more:hover .wehxa .tit {
  color: var(--color-zt);
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none;
}

body.compensate-for-scrollbar {
  overflow-y: auto !important;
}

.tcmgs-a {
  display: none;
  width: 92%;
  max-width: 47.5rem;
  padding: 0;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tcmgs-a {
    border-radius: 1rem;
  }
}
.tcmgs-a > .carousel__button.is-close {
  top: 1.75rem;
  right: 1.75rem;
  color: #999999;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .tcmgs-a > .carousel__button.is-close {
    top: 1rem;
    right: 1rem;
  }
}
.tcmgs-a > .carousel__button.is-close::after {
  content: "\e723";
  font-family: "iconfont" !important;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .tcmgs-a > .carousel__button.is-close::after {
    font-size: 1.65rem;
  }
}
.tcmgs-a > .carousel__button.is-close svg {
  display: none;
}
.tcmgs-a > .carousel__button.is-close:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.tcmgs-a form .contvt {
  padding: 2.5rem 8% 3.5rem;
}
@media (max-width: 768px) {
  .tcmgs-a form .contvt {
    padding: 1.75rem 5%;
  }
}
.tcmgs-a form .contvt .tit {
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .tcmgs-a form .contvt .tit {
    font-size: 2rem;
  }
}
.tcmgs-a form .contvt .msga2 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.5rem 0;
  margin-top: 2.125rem;
}
@media (max-width: 768px) {
  .tcmgs-a form .contvt .msga2 {
    margin-top: 1.5rem;
    gap: 1rem 0;
  }
}
.tcmgs-a form .contvt .msga2 dl {
  width: 47.0588235294%;
}
@media (max-width: 768px) {
  .tcmgs-a form .contvt .msga2 dl {
    width: 100%;
  }
}
.tcmgs-a form .contvt .msga2 dl input {
  width: 100%;
  border: 1px solid #DEDEDE;
  color: #7B7B7B;
  font-size: 1rem;
  line-height: 3.5rem;
  padding: 0 1.125em;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .tcmgs-a form .contvt .msga2 dl input {
    font-size: 1rem;
    line-height: 2.95rem;
    padding: 0 1em;
  }
}
.tcmgs-a form .contvt .msga2 dl:last-child textarea {
  width: 100%;
  border: 1px solid #DEDEDE;
  color: #7B7B7B;
  font-size: 1rem;
  line-height: 1.4em;
  padding: 0.75em 1.125em;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .tcmgs-a form .contvt .msga2 dl:last-child textarea {
    font-size: 1rem;
    padding: 0.65em 1em;
  }
}
.tcmgs-a form .div_aghgha {
  background: #F9F9F9;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.85rem 1rem;
}
@media (max-width: 768px) {
  .tcmgs-a form .div_aghgha {
    padding: 1.25rem 1rem;
  }
}
.tcmgs-a form .div_aghgha button {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 2.125rem;
}
@media (max-width: 768px) {
  .tcmgs-a form .div_aghgha button {
    padding: 0.5rem 2.125rem;
  }
}

.news-content1 {
  padding: 4rem 0 1rem;
}
@media (max-width: 768px) {
  .news-content1 {
    padding: 2rem 0 1rem;
  }
}

.news-list2 li {
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .news-list2 li {
    padding: 1.5rem 0;
  }
}
.news-list2 li:first-child {
  padding-top: 0;
}
.news-list2 li a.imgz {
  display: block;
}
.news-list2 li a.imgz .data {
  color: rgba(39, 39, 39, 0.3);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
}
.news-list2 li a.imgz .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.news-list2 li a.imgz .name {
  color: #444444;
  font-size: 1.375rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .news-list2 li a.imgz .name {
    font-size: 1.25rem;
  }
}
.news-list2 li a.imgz .p1 {
  color: #969696;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.news-list2 li a.imgz .xw-more {
  color: #7F8384;
  font-size: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-list2 li a.imgz .xw-more {
    margin-top: 1rem;
  }
}
.news-list2 li a.imgz:hover .name, .news-list2 li a.imgz:hover .xw-more {
  color: var(--color-zt);
}