@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 {
  font-family: "Inter", "Noto Sans SC", sans-serif !important;
}
body * {
  outline: none;
}

body.home {
  background-color: #F6F6F6;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #1D1D1F;
  --color-zt: #CF371A;
  --head-height: 4.625rem;
  --cbasta: 13.5416666667%;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.25%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
  }
}

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

.wh1 {
  padding: 0 3.90625%;
}
@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 "Inter";
  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 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.95rem 2rem;
  border-radius: 0.4375rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  border: 1px solid var(--color-zt);
  font-weight: 600;
  background: var(--color-zt);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.75rem 1.4rem;
  }
}
.more-b > * {
  -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 i {
  font-size: 0.65rem;
  margin-left: 0.5rem;
  font-weight: 600;
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -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: var(--color-zt);
}
.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.bs {
  color: #212121;
  background: #fff;
  border: none;
}
.more-b.bs > * {
  color: #212121;
}
.more-b.bs::after {
  background: var(--color-zt);
}
.more-b.bs:hover {
  border-color: var(--color-zt);
}
.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;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  --as-calore: #fff;
  background: rgba(0, 0, 0, 0.84);
}
.head .head2 .logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.head .head2 .logo a img {
  height: 2rem;
}
.head .head2 .zywena {
  margin-right: 1rem;
  position: relative;
}
.head .head2 .zywena a.rhgxt {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
  padding: 0 1.5rem;
}
.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 600;
}
.head .head2 .zywena .yy-sec {
  position: absolute;
  left: 50%;
  top: 3rem;
  width: 5.5rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: none;
  text-align: center;
}
.head .head2 .zywena .yy-sec a {
  color: #333;
  display: block;
  line-height: 1.75em;
  font-size: 1rem;
  font-weight: 500;
}
.head .head2 .zywena .yy-sec a + a {
  border-top: 1px solid #333;
}
.head .head2 .zywena .yy-sec a:hover {
  color: var(--color-zt);
}
.head .head2 .more-sxa {
  background: var(--color-zt);
  color: #fff;
  font-size: 1rem;
  line-height: 1.8rem;
  padding: 0.5em 1.5em;
  border-radius: 0.625rem;
}
.head .head2 .sska {
  margin-right: 2rem;
}
.head .head2 .sska a {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
}
.head .head2 .sska a i {
  font-size: 1.25rem;
  font-weight: 500;
}

#menu .nav_a1 > li {
  float: left;
  position: relative;
}
#menu .nav_a1 > li:nth-child(1) {
  position: static;
}
#menu .nav_a1 > li a {
  display: block;
  color: var(--as-calore);
}
#menu .nav_a1 > li > a {
  font-size: 1rem;
  padding: 0 2rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  font-weight: 400;
  position: relative;
  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;
}
#menu .nav_a1 > li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 > li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 1rem;
  width: 100%;
}
#menu .nav_a1 > li > a i {
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: 0.25rem;
  -webkit-transform: translateY(0.125rem);
     -moz-transform: translateY(0.125rem);
      -ms-transform: translateY(0.125rem);
       -o-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
#menu .nav_a1 > li .sec {
  position: absolute;
  top: -webkit-calc(100% + 0.8125rem);
  top: -moz-calc(100% + 0.8125rem);
  top: calc(100% + 0.8125rem);
  width: 44.1875rem;
  max-width: inherit;
  left: 50%;
  background: white;
  z-index: 9;
  border-radius: 1.25rem;
  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);
  padding: 2.5rem 2.1875rem 3.375rem;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b1 {
  width: 40.3846153846%;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b1 a {
  display: block;
  color: #1D1D1F;
  font-size: 1rem;
  line-height: 1.1875rem;
  border-radius: 0.3125rem;
  text-align: left;
  padding: 1rem 1.5rem 1rem 1.8rem;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b1 a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.75rem;
  top: 1.125rem;
  width: 0.3125rem;
  height: 1.0625rem;
  border-radius: 0.125rem;
  background: var(--color-zt);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b1 a + a {
  margin-top: 0.125rem;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b1 a:hover {
  background: #F6F6F6;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b1 a:hover::before {
  opacity: 1;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b2 {
  width: 51.2820512821%;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b2 .img {
  border-radius: 1.25rem;
  overflow: hidden;
}
#menu .nav_a1 > li .sec .sec-vta .sec-b2 .img img {
  width: 100%;
}
#menu .nav_a1 > li .sec1 {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0%;
  background: #fff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
     -moz-transform: translateY(20px);
      -ms-transform: translateY(20px);
       -o-transform: translateY(20px);
          transform: translateY(20px);
  padding: 2.5rem 0 6.25rem;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b1 {
  width: 15.75rem;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a {
  display: block;
  color: #1D1D1F;
  font-size: 1rem;
  line-height: 1.1875rem;
  border-radius: 0.3125rem;
  text-align: left;
  padding: 1rem 1.5rem 1rem 1.8rem;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.75rem;
  top: 1.125rem;
  width: 0.3125rem;
  height: -webkit-calc(100% - 2.125rem);
  height: -moz-calc(100% - 2.125rem);
  height: calc(100% - 2.125rem);
  border-radius: 0.125rem;
  background: var(--color-zt);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a + a {
  margin-top: 0.125rem;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a:hover, #menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a.on {
  background: #F6F6F6;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a:hover::before, #menu .nav_a1 > li .sec1 .sec-vta .sec-b1 a.on::before {
  opacity: 1;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 {
  width: -webkit-calc(95% - 15.75rem);
  width: -moz-calc(95% - 15.75rem);
  width: calc(95% - 15.75rem);
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl {
  display: none;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .sec-b2c1 .tit {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5em;
  text-transform: capitalize;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .sec-b2c1 a.more-xa {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .sec-b2c1 a.more-xa:hover {
  color: var(--color-zt);
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
  margin-top: 1.5625rem;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 li a.img {
  display: block;
  text-align: center;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 li a.img u {
  display: block;
  font-size: 0;
  background: #F6F6F6;
  border-radius: 1.25rem;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 li a.img u img {
  width: 100%;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 li a.img .ftxt {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.35em;
  margin-top: 0.75rem;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 li a.img .tit {
  color: #1D1D1F;
  font-size: 1.125rem;
  line-height: 1.25em;
  margin-top: 0.125rem;
  text-transform: capitalize;
}
#menu .nav_a1 > li .sec1 .sec-vta .sec-b2 dl .cp_list1 li a.img:hover .tit {
  color: var(--color-zt);
}
#menu .nav_a1 > li:hover .sec {
  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 .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: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
#menu .nav_a1 > li:hover > a, #menu .nav_a1 > li.active > a {
  color: var(--color-zt);
}
#menu .nav_a1 > li:hover > a i, #menu .nav_a1 > li.active > a i {
  opacity: 1;
}
#menu .nav_a1 > li:hover > a span::after, #menu .nav_a1 > li.active > a span::after {
  width: 100%;
}

/* 搜索 */
.sskbj {
  padding: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.sskbj .searchbox1 {
  width: 100%;
  padding: 40px 10.4%;
  height: 28.125rem;
  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: 0.35rem;
  font-size: 1rem;
  text-indent: 1em;
}
.sskbj .searchbox1 .searchs .serbtn {
  border-radius: 0.35rem;
}
.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: #212121;
}
.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: 40px;
}
.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: 40px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.m-bm-head .m-bm-head-box .m-bm-logo a p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #000;
  font-family: "Inter";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  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: #212121;
}
.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: "Inter";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Inter";
  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 .tit1 {
  position: relative;
}
.m-bm-nav > li .sec .tit1 .aniut {
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li .sec .tit1 .aniut i {
  font-size: 1.125rem;
}
.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;
}

.cp_sort1 {
  background: #F4F5F5;
  border-radius: 2rem;
  border: 1px solid #DBDBDB;
  padding: 1rem;
}
.cp_sort1 > li {
  position: relative;
}
.cp_sort1 > li + li {
  margin-top: 1rem;
}
.cp_sort1 > li > .sec {
  padding: 0;
}
.cp_sort1 > li > .sec > .tit1 > a.clicked {
  border-bottom: 1px solid #DEDEDE;
}
.cp_sort1 > li > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > a:hover {
  color: #13315B;
}
.cp_sort1 > li > .sec > .tit1 > .sec {
  padding: 0;
  border-bottom: 1px solid #DEDEDE;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 {
  padding: 0 2%;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 .aniut {
  right: 2%;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a {
  font-size: 0.875rem;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked {
  border-bottom: 1px solid #DEDEDE;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #13315B;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec {
  padding: 0;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a {
  font-size: 0.75rem;
  line-height: 2rem;
}
.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #13315B;
}
.cp_sort1 > li > a {
  display: block;
  line-height: 3.5rem;
  font-size: 1rem;
  color: #020202;
  font-family: "Inter";
  padding: 0 8%;
  font-weight: 600;
  background: #FFFFFF;
  box-shadow: 0px 0px 0.5rem 0px rgba(0, 0, 0, 0.05);
  border-radius: 1.875rem;
}
.cp_sort1 > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Inter";
  font-weight: 500;
}
.cp_sort1 > li > a.clicked {
  background: #13315B;
  color: #fff;
}
.cp_sort1 > li > a.clicked + .aniut i {
  color: #fff;
}
.cp_sort1 > li .sec {
  display: none;
  padding: 1rem 0 0.1rem;
}
.cp_sort1 > li .sec .tit1 {
  position: relative;
  padding: 0 8%;
}
.cp_sort1 > li .sec .tit1 .aniut {
  height: 2.8125rem;
  line-height: 2.8125rem;
  right: 8%;
}
.cp_sort1 > li .sec .tit1 .aniut i {
  font-size: 1.125rem;
}
.cp_sort1 > li .sec .tit1 a {
  color: #020202;
  font-size: 1rem;
  line-height: 2.8125rem;
}
.cp_sort1 > li .sec a {
  display: block;
  font-size: 12px;
  color: #020202;
  line-height: 35px;
}
.cp_sort1 > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.cp_sort1 .aniut {
  position: absolute;
  width: auto;
  height: 3.5rem;
  line-height: 3.5rem;
  right: 8%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.cp_sort1 .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  color: #888888;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
.text_effect {
  position: relative;
  cursor: pointer;
}
.text_effect p {
  position: relative;
}
.text_effect .fist {
  overflow: hidden;
}
.text_effect .fist div {
  min-width: 5px;
}
.text_effect .fist:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 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%);
  overflow: hidden;
  white-space: nowrap;
}
.text_effect .fist:nth-child(2) div {
  -webkit-transform: translate3d(0, 101%, 0);
     -moz-transform: translate3d(0, 101%, 0);
          transform: translate3d(0, 101%, 0);
  min-width: 5px;
  opacity: 0;
}
.text_effect:hover .fist:first-child div {
  -webkit-transform: translate3d(0, -101%, 0);
     -moz-transform: translate3d(0, -101%, 0);
          transform: translate3d(0, -101%, 0);
  opacity: 0;
}
.text_effect:hover .fist:nth-child(2) div {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}
.pc-banner .mySwipera {
  position: relative;
}
.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}
.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;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .swiper-slide .img > img {
    height: 45vh;
  }
}
.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 .swiper-slide:hover .img .imgxa2 {
  z-index: 1;
}
.pc-banner .mySwipera .banwez1 {
  width: 100%;
  z-index: 99;
  color: #FFFFFF;
}
.pc-banner .mySwipera .banwez1 .cont-pa {
  width: 50.7142857143%;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .cont-pa {
    width: 100%;
  }
}
.pc-banner .mySwipera .banwez1 .tit {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.125em;
  position: relative;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
    line-height: 1.2em;
  }
}
.pc-banner .mySwipera .banwez1 .ftit {
  font-size: 2rem;
  line-height: 1.35em;
  margin-top: 0.35rem;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .ftit {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}
.pc-banner .mySwipera .banwez1 a.more-b {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 a.more-b {
    margin-top: 1.25rem;
  }
}
.pc-banner .mySwipera .er-gat {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 100%;
  z-index: 9;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .er-gat .swiper-pagination1 {
    width: 100%;
    position: static;
  }
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 span {
  opacity: 1;
  background: white;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.625rem;
  margin-right: 1rem;
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: var(--color-zt);
}
.pc-banner a.mouse {
  position: absolute;
  left: 0;
  bottom: 0;
  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-size: 1rem;
  line-height: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 400;
}
.pc-banner a.mouse .xdt {
  background: white;
  width: 1px;
  height: 2.875rem;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .pc-banner a.mouse .xdt {
    height: 2rem;
  }
}
.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 0.625rem;
  background: var(--color-zt);
  -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;
}
@media (max-width: 768px) {
  .pc-banner a.mouse .xdt::after {
    height: 0.5rem;
  }
}

@-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 run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-moz-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-o-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-webkit-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-moz-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-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%;
  }
}
@-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);
  }
}
.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-pagination span {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin: 0 0.25rem;
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}
.gong-pagination.hs span {
  background: rgba(0, 0, 0, 0.3);
}
.gong-pagination.hs span.swiper-pagination-bullet-active {
  background: #13315B;
}

.gong-p {
  color: #7A7A7A;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75em;
  text-align: justify;
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}
.gong-p.bs {
  color: #fff;
}

.title1 {
  text-align: center;
  color: #1D1D1F;
}
.title1 .tit {
  font-size: 2.5rem;
  line-height: 1.35em;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.8rem;
  }
}
.title1.bs {
  color: #fff;
}
.iconfont1 {
  font-family: "iconfont" !important;
}

.cont1 {
  padding-top: 7.5125rem;
}
@media (max-width: 768px) {
  .cont1 {
    padding-top: 2rem;
  }
}
.cont1 .a1v1 {
  padding: 0 5.7291666667%;
}
@media (max-width: 768px) {
  .cont1 .a1v1 {
    padding: 0 4%;
  }
}
.cont1 .a1v1 .a1_liat1 {
  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.25rem;
  margin-top: 2.5125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_liat1 {
    margin-top: 1.25rem;
    gap: 1rem;
  }
}
.cont1 .a1v1 .a1_liat1 li {
  -webkit-flex: 2;
     -moz-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_liat1 li {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.cont1 .a1v1 .a1_liat1 li a.imgax {
  display: block;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_liat1 li a.imgax {
    border-radius: 1rem;
  }
}
.cont1 .a1v1 .a1_liat1 li a.imgax i {
  display: block;
  font-size: 0;
}
.cont1 .a1v1 .a1_liat1 li a.imgax i img {
  width: 100%;
  height: 16.1875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_liat1 li a.imgax i img {
    height: 7rem;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
}
.cont1 .a1v1 .a1_liat1 li a.imgax .tit {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 1em;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25em;
  width: 100%;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_liat1 li a.imgax .tit {
    font-size: 1.5rem;
    padding: 0 0.5em;
  }
}
.cont1 .a1v1 .a1_liat1 li.on {
  -webkit-flex: 3;
     -moz-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_liat1 li.on {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
  .cont1 .a1v1 .a1_liat1 li.on a.imgax i img {
    height: 10rem;
  }
}
.cont1 .a1v2 {
  margin-top: 3.875rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v2 .a1v2c1 > li {
  display: none;
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.125rem 2.375rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}
@media (max-width: 450px) {
  .cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
  }
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li {
  background: #fff;
  border-radius: 1rem;
  text-align: center;
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img {
  display: block;
  padding: 1.75rem 12.7272727273% 2.85rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img {
    padding: 1.25rem 10.2272727273% 1.5rem;
  }
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img u {
  display: block;
  overflow: hidden;
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img u img {
  width: 100%;
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img p {
  text-align: center;
  color: #1D1D1F;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img p {
    font-size: 1rem;
  }
}
.cont1 .a1v2 .a1v2c1 > li .a1v2c1d1 li a.img:hover p {
  color: var(--color-zt);
}
.cont1 .a1v2 a.more-b {
  margin: 0 auto;
  margin-top: 2.125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 a.more-b {
    margin-top: 1.5rem;
  }
}

.gong-pagination {
  text-align: center;
}
.gong-pagination span {
  background: rgba(0, 0, 0, 0.1);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin: 0 0.35rem !important;
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: var(--color-zt);
}

.mySwiper1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .mySwiper1 {
    margin-top: 1.25rem;
  }
}
.mySwiper1 .swiper-slide .img img {
  width: 100%;
}
.mySwiper1 .swiper-pagination1 {
  margin-top: 1rem;
}

.cont2 {
  margin-top: 5.9375rem;
}
@media (max-width: 768px) {
  .cont2 {
    margin-top: 2rem;
  }
}
.cont2 .a2v1 {
  position: relative;
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cont2 .a2v1 .jt-more-ax {
    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;
    gap: 1rem;
  }
}
.cont2 .a2v1 .jt-more-ax > div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.08);
  width: 3.5625rem;
  height: 3.5625rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .jt-more-ax > div {
    position: static;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    margin-top: 1rem;
  }
}
.cont2 .a2v1 .jt-more-ax > div.swiper-button-next1 {
  right: -5.25rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .jt-more-ax > div.swiper-button-next1 {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cont2 .a2v1 .jt-more-ax > div.swiper-button-prev1 {
  left: -5.25rem;
}
.cont2 .a2v1 .jt-more-ax > div i {
  font-weight: 900;
  font-size: 0.875rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.cont2 .a2v1 .jt-more-ax > div:hover {
  background-color: var(--color-zt);
}
.cont2 .a2v1 .jt-more-ax > div:hover i {
  color: #fff;
}
.cont2 .a2v1 .mySwiper2 {
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .mySwiper2 {
    border-radius: 1rem;
  }
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img {
  position: relative;
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img u {
  display: block;
  font-size: 0;
  position: relative;
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img u::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 34.29%, rgba(0, 0, 0, 0.8) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 34.29%, rgba(0, 0, 0, 0.8) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 34.29%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.29%, rgba(0, 0, 0, 0.8) 100%);
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img u img {
  width: 100%;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .mySwiper2 .swiper-slide .img u img {
    aspect-ratio: 16/12;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  bottom: 3rem;
  padding: 0 2% 0 5%;
  z-index: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p {
    bottom: 2rem;
  }
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p .ast-txt {
  width: -webkit-calc(90% - 9.375rem);
  width: -moz-calc(90% - 9.375rem);
  width: calc(90% - 9.375rem);
}
@media (max-width: 768px) {
  .cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p .ast-txt {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p .ast-txt .tit {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25em;
}
.cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p .ast-txt .txt {
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .mySwiper2 .swiper-slide .img .cont-p .ast-txt .txt {
    margin-top: 0.25rem;
  }
}

.heng1 {
  display: block;
  font-size: 0;
}
.heng1 img {
  width: 100%;
}

.cont3 {
  margin-top: 6.25rem;
}
@media (max-width: 768px) {
  .cont3 {
    margin-top: 2rem;
  }
}
.cont3 .a3v1 .title1 {
  text-align: center;
  width: 56.5714285714%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .title1 {
    width: 100%;
  }
}
.cont3 .a3v1 .title1 .txt {
  color: #040000;
  font-size: 1.375rem;
  line-height: 1.45em;
  padding: 0.5rem 0 1.125rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .title1 .txt {
    font-size: 1rem;
    padding: 0.35rem 0 0.75rem;
  }
}
.cont3 .a3v1 .title1 a.more-b {
  margin: 0 auto;
}
.cont3 .a3v2 {
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .cont3 .a3v2 {
    margin-top: 1.25rem;
  }
}

.cont4 {
  margin-top: 5.875rem;
}
@media (max-width: 768px) {
  .cont4 {
    margin-top: 1.5rem;
  }
}
.cont4 .weas-xa1 {
  width: 20.1875rem;
  margin: 0 auto;
  background: #E9EBEE;
  border-radius: 0.4375rem;
  padding: 0.3125rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .cont4 .weas-xa1 {
    margin-top: 1rem;
  }
}
.cont4 .weas-xa1 .as1-axt1 {
  position: relative;
}
.cont4 .weas-xa1 .as1-axt1 li {
  width: 50%;
  position: relative;
  z-index: 1;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.75rem;
  text-align: center;
  cursor: pointer;
}
.cont4 .weas-xa1 .as1-axt1 .tab-follow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  border-radius: 0.4375rem;
  background: #fff;
  pointer-events: none;
  -webkit-transition: width 0.32s ease, -webkit-transform 0.32s ease;
  transition: width 0.32s ease, -webkit-transform 0.32s ease;
  -o-transition: width 0.32s ease, -o-transform 0.32s ease;
  -moz-transition: transform 0.32s ease, width 0.32s ease, -moz-transform 0.32s ease;
  transition: transform 0.32s ease, width 0.32s ease;
  transition: transform 0.32s ease, width 0.32s ease, -webkit-transform 0.32s ease, -moz-transform 0.32s ease, -o-transform 0.32s ease;
  z-index: 0;
}
.cont4 .as1-axt2 {
  margin-top: 1.875rem;
}
@media (max-width: 768px) {
  .cont4 .as1-axt2 {
    margin-top: 1.5rem;
  }
}
.cont4 .as1-axt2 li {
  display: none;
}
.cont4 .as1-axt2 li .mySwiper3 {
  padding: 0 var(--cbasta);
}
@media (max-width: 768px) {
  .cont4 .as1-axt2 li .mySwiper3 {
    margin: 0 var(--cbasta);
    padding: 0;
  }
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img {
  display: block;
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img {
    border-radius: 1rem;
  }
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img u {
  display: block;
  font-size: 0;
  position: relative;
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img u::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 25.75%, rgba(0, 0, 0, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 25.75%, rgba(0, 0, 0, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 25.75%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25.75%, rgba(0, 0, 0, 0.7) 100%);
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img u img {
  width: 100%;
  aspect-ratio: 453/475;
  -o-object-fit: cover;
     object-fit: cover;
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img .cont-p {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 100%;
  padding: 0 7%;
  color: #fff;
}
@media (max-width: 768px) {
  .cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img .cont-p {
    bottom: 8%;
  }
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img .cont-p .data {
  font-size: 1rem;
  line-height: 1.5em;
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img .cont-p .data i {
  font-size: 1rem;
  margin-right: 0.25rem;
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img .cont-p .tit {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .cont4 .as1-axt2 li .mySwiper3 .swiper-slide a.img .cont-p .tit {
    font-size: 1.25rem;
  }
}
.cont4 .as1-axt2 li .mySwiper3 .swiper-pagination1 {
  margin-top: 1.25rem;
}

.reveal1 {
  position: relative;
  overflow: hidden;
  visibility: hidden;
}
.reveal1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
}

.foot-fot {
  position: relative;
  background: #212121;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foot-tit {
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 700;
}
.foot-fot .foota1 .foot-tit a {
  color: #fff;
  display: block;
}
.foot-fot .foota1 .dseca {
  margin-top: 0.35em;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.875em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.foot-fot .foota1 .dseca > a:hover {
  color: #fff;
}
.foot-fot .foota1 .dseca > a:hover::after {
  width: 100%;
}
.foot-fot .foota1 .d_nat2 {
  width: 26.2142857143%;
}
.foot-fot .foota1 .ft-at1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.425rem 0;
}
.foot-fot .foota1 .ft-at1 .dlogo img {
  height: 2.125rem;
}
.foot-fot .foota1 .ft-at2 {
  padding: 2.8125rem 0;
}
.foot-fot .foota1 .ft-at2 .dseca > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.875em;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share {
  margin-top: 1rem;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.125rem;
  color: #fff;
  position: relative;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a.flex-z {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a > img {
  width: 70%;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a:hover {
  background: var(--color-zt);
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a .social-share-preview {
  position: absolute;
  left: 50%;
  bottom: -webkit-calc(100% + 0.75rem);
  bottom: -moz-calc(100% + 0.75rem);
  bottom: calc(100% + 0.75rem);
  width: 7.5rem;
  padding: 0.35rem;
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0 0.35rem 1.25rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate(-50%, 0.5rem);
     -moz-transform: translate(-50%, 0.5rem);
      -ms-transform: translate(-50%, 0.5rem);
       -o-transform: translate(-50%, 0.5rem);
          transform: translate(-50%, 0.5rem);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 5;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a .social-share-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  background: #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
     -moz-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
       -o-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a .social-share-preview img {
  display: block;
  width: 100%;
  border-radius: 0.2rem;
  position: relative;
  z-index: 1;
}
.foot-fot .foota1 .ft-at2 .dseca .social-share a.is-preview-show .social-share-preview {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.foot-fot .foota2 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1.875rem 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .foot-fot .foota2 {
    padding: 1.25rem 0;
  }
}
.foot-fot .foota2 a {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.foot-fot .foota2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
}
.foot-fot .foota2 a:hover {
  color: #fff;
}
.foot-fot .foota2 a:hover::after {
  width: 100%;
}
.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 {
  padding: 0 0.7em;
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

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

@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 .aat_list {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li {
  margin-top: 1.25rem;
}
.zd_erha .aat_list li > a {
  display: block;
  width: 100%;
  position: relative;
  background: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  box-shadow: 0 0.125rem 1rem 0.125rem rgba(0, 20, 60, 0.2);
}
.zd_erha .aat_list 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 .aat_list li > a i img {
  height: 63%;
}
.zd_erha .aat_list 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 .aat_list li .erghgsb {
  width: 7rem;
  padding: 0.3rem;
}
.zd_erha .aat_list li .erghgsb img {
  width: 100%;
}
.zd_erha .aat_list 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);
}

/*内页css*/
.text-center {
  text-align: center;
}

.pagination {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  padding-left: 0;
  margin: 0;
  border-radius: 4px;
}
.pagination > li {
  display: block;
}
.pagination a,
.pagination span {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  min-width: 2.375rem;
  height: 2.375rem;
  padding: 0 0.75rem;
  line-height: -webkit-calc(2.375rem - 2px);
  line-height: -moz-calc(2.375rem - 2px);
  line-height: calc(2.375rem - 2px);
  color: #666;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-weight: 500;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  -o-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  -moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.pagination a:hover,
.pagination a:focus {
  color: var(--color-zt);
  background-color: #eee;
  border-color: #ddd;
}
.pagination .current,
.pagination > .active > a,
.pagination > .active > span {
  color: #fff;
  cursor: default;
  background-color: var(--color-zt);
  border-color: var(--color-zt);
}
.pagination .dots,
.pagination > .disabled > a,
.pagination > .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination i {
  line-height: 1;
  font-weight: 700;
  font-size: 0.65rem;
}
@media (max-width: 768px) {
  .pagination {
    gap: 0.3rem;
  }
}

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

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  width: 2.375rem;
  padding: 0;
}

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

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

.ajhhsd {
  color: #A4A4A4;
  font: 400 1rem/2rem "Inter";
  padding: 1.25em 0;
}
@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 0.75em 0;
  }
}
.ajhhsd span {
  padding: 0 0.05em;
}
.ajhhsd span:last-child {
  display: none;
}
.ajhhsd a {
  color: #A4A4A4;
}
.ajhhsd a:hover {
  color: var(--color-zt);
}

.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 "Inter";
}
@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 "Inter";
  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 "Inter";
  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 "Inter";
  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 "Inter";
  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 "Inter";
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont h2 a:hover {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "Inter";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Inter";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-b {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Inter";
  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 {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  bottom: 10%;
}
.nbanner .nbanner-wen1 .tit {
  color: #fff;
  font-size: 3.75rem;
  line-height: 1.25em;
  font-weight: 700;
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  left: 0;
  top: var(--head-height);
  width: 100%;
  z-index: 9;
}
@media (max-width: 990px) {
  .n_mbx {
    top: 60px;
  }
}
.n_mbx .tit {
  color: #575757;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1em;
  border-right: 1px solid #D8D8D8;
  padding-right: 2.25rem;
  margin-right: 2.25rem;
}
@media (max-width: 768px) {
  .n_mbx .tit {
    display: none;
  }
}
.n_mbx .n_src {
  font-size: 0;
  overflow-y: hidden;
  overflow-x: auto;
}
@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: 1px;
}
.n_mbx .n_src li a {
  display: block;
  color: #575757;
  font-size: 1rem;
  line-height: 1.75em;
  font-weight: 400;
  position: relative;
  padding: 1.25rem 1.5em;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .n_mbx .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: 0.5rem 1em;
  }
}
.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  background: var(--color-zt);
  color: #fff;
}

.mbx {
  color: rgba(29, 29, 31, 0.4);
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1.5rem 0;
}
.mbx span {
  padding: 0 0.35rem;
}
.mbx a {
  color: rgba(29, 29, 31, 0.4);
}
.mbx a:hover {
  color: var(--color-zt);
}

.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;
  }
}

.ny-title {
  color: #9F9E9F;
  font-weight: 700;
}
.ny-title .tit {
  color: #020202;
  font-size: 2.5rem;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .ny-title .tit {
    font-size: 1.85rem;
  }
}
.ny-title .entit {
  font-size: 1.5rem;
  line-height: 1.25em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .ny-title .entit {
    font-size: 1.25rem;
  }
}
.ny-title.bs {
  color: #fff;
}
.ny-title.bs .tit {
  color: #fff;
}

@-webkit-keyframes bannerLun {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@-moz-keyframes bannerLun {
  0% {
    opacity: 0;
    -moz-transform: translateY(100px);
         transform: translateY(100px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0px);
         transform: translateY(0px);
    filter: blur(0px);
  }
}

@-o-keyframes bannerLun {
  0% {
    opacity: 0;
    -o-transform: translateY(100px);
       transform: translateY(100px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0px);
       transform: translateY(0px);
    filter: blur(0px);
  }
}

@keyframes bannerLun {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
       -moz-transform: translateY(100px);
         -o-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
         -o-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.abt-cont1 {
  padding: 2.1875rem 0 3.875rem;
}
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 1rem 0 2rem;
  }
}
.abt-cont1 .data {
  font-size: 6.1875rem;
  line-height: 1em;
  color: var(--color-zt);
  font-weight: 700;
  margin-left: 10.8571428571%;
}
@media (max-width: 768px) {
  .abt-cont1 .data {
    font-size: 2.5rem;
    margin-left: 0;
  }
}
.abt-cont1 .cont-p {
  width: 55.7142857143%;
  margin-left: 32.8571428571%;
}
@media (max-width: 768px) {
  .abt-cont1 .cont-p {
    width: 80%;
    margin-left: auto;
  }
}
.abt-cont1 .cont-p .tit {
  color: #1D2020;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .abt-cont1 .cont-p .tit {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
}
.abt-cont1 .cont-p .txt {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .abt-cont1 .cont-p .txt {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
.abt-cont1 .abt-a1b2 {
  padding-left: var(--cbasta);
}
.abt-cont1 .abt-a1b2 .mySwiper5 {
  padding-right: -webkit-calc(var(--cbasta) * 3);
  padding-right: -moz-calc(var(--cbasta) * 3);
  padding-right: calc(var(--cbasta) * 3);
  margin-top: 4.6875rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1b2 .mySwiper5 {
    margin-top: 1.8rem;
  }
}
.abt-cont1 .abt-a1b2 .mySwiper5 .swiper-slide .img {
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1b2 .mySwiper5 .swiper-slide .img {
    border-radius: 1rem;
  }
}
.abt-cont1 .abt-a1b2 .mySwiper5 .swiper-slide .img img {
  width: 100%;
}
.abt-cont1 .abt-a1b2 .swiper-pagination1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: -webkit-calc(var(--cbasta) * 1.2);
  margin-right: -moz-calc(var(--cbasta) * 1.2);
  margin-right: calc(var(--cbasta) * 1.2);
  margin-top: 1.25rem;
}

.abt-cont2 {
  background: #F6F6F6;
  padding: 5rem 0 7.25rem;
}
@media (max-width: 768px) {
  .abt-cont2 {
    padding: 2rem 0;
  }
}
.abt-cont2 .abt-a2v1 {
  margin-top: 2.1875rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 {
    margin-top: 1.5rem;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 {
  width: 49%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d1 {
    width: 100%;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li {
  border-bottom: 1px solid rgba(29, 29, 31, 0.2);
  padding: 1.85rem 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d1 li {
    padding: 1.25rem 0;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li u {
  display: block;
  font-size: 0;
  width: 6.25rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d1 li u {
    width: 3.5rem;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li u img {
  width: 100%;
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p {
  width: -webkit-calc(95% - 6.25rem);
  width: -moz-calc(95% - 6.25rem);
  width: calc(95% - 6.25rem);
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p {
    width: -webkit-calc(95% - 3.5rem);
    width: -moz-calc(95% - 3.5rem);
    width: calc(95% - 3.5rem);
    margin-top: 0.7rem;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p .tit {
  color: rgba(29, 32, 32, 0.9);
  font-size: 1.6875rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p .tit {
    font-size: 1.35rem;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p .txt-ax {
  display: none;
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p .txt {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 0.5em 0;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d1 li .cont-p .txt {
    font-size: 1rem;
    padding-top: 0;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li.on u img {
  -webkit-filter: invert(32%) sepia(26%) saturate(7382%) hue-rotate(351deg) brightness(83%) contrast(95%);
          filter: invert(32%) sepia(26%) saturate(7382%) hue-rotate(351deg) brightness(83%) contrast(95%);
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li.on .cont-p {
  margin-top: 0.5rem;
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li.on .cont-p .tit {
  color: var(--color-zt);
}
.abt-cont2 .abt-a2v1 .abt-a2v1d1 li.on .cont-p .txt-ax {
  display: block;
}
.abt-cont2 .abt-a2v1 .abt-a2v1d2 {
  width: 46.2857142857%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d2 {
    width: 100%;
    margin-top: 1.85rem;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d2 li .img {
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2v1d2 li .img {
    border-radius: 1rem;
  }
}
.abt-cont2 .abt-a2v1 .abt-a2v1d2 li .img img {
  width: 100%;
  aspect-ratio: 648/594;
  -o-object-fit: cover;
     object-fit: cover;
}

.abt-cont3 {
  padding: 7.5rem 0 10.5rem;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 2rem 0;
  }
}
.abt-cont3 .abt-a3v1 {
  position: relative;
}
.abt-cont3 .abt-a3v1 .ingad {
  width: 48.3571428571%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 21%;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 .ingad {
    position: static;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    margin: 0 auto;
    width: 80%;
    margin-top: 4rem;
  }
}
.abt-cont3 .abt-a3v1 .ingad u {
  display: block;
  font-size: 0;
  width: 100%;
}
.abt-cont3 .abt-a3v1 .ingad u img {
  width: 100%;
}
.abt-cont3 .abt-a3v1 .ingad i {
  display: block;
  font-size: 0;
  width: 56.5731166913%;
  position: absolute;
  left: 50%;
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.abt-cont3 .abt-a3v1 .ingad i img {
  width: 100%;
}
.abt-cont3 .abt-a3v1 .ast1 {
  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: 14.75rem 1rem;
  margin-top: 5.125rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 .ast1 {
    margin-top: 2rem;
    gap: 1.5rem;
  }
}
.abt-cont3 .abt-a3v1 .ast1 li {
  width: 27.9285714286%;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 .ast1 li {
    width: 100%;
    text-align: center;
  }
}
.abt-cont3 .abt-a3v1 .ast1 li u {
  display: block;
  font-size: 0;
  width: 4.6875rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 .ast1 li u {
    width: 3.25rem;
    margin: 0 auto;
  }
}
.abt-cont3 .abt-a3v1 .ast1 li u img {
  width: 100%;
}
.abt-cont3 .abt-a3v1 .ast1 li .tit {
  color: #1D2020;
  font-size: 1.6875rem;
  line-height: 1.25em;
  font-weight: 700;
  padding: 0.5em 0 0.25em;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 .ast1 li .tit {
    font-size: 1.25rem;
  }
}
.abt-cont3 .abt-a3v1 .ast1 li .txt {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 .ast1 li .txt {
    font-size: 1rem;
  }
}
@media (min-width: 767px) {
  .abt-cont3 .abt-a3v1 .ast1 li:nth-child(1) {
    text-align: right;
  }
  .abt-cont3 .abt-a3v1 .ast1 li:nth-child(1) u {
    margin-left: auto;
  }
  .abt-cont3 .abt-a3v1 .ast1 li:nth-child(2) {
    margin-left: 20%;
  }
  .abt-cont3 .abt-a3v1 .ast1 li:nth-child(3) {
    text-align: center;
    margin: 0 auto;
    width: 30.7857142857%;
  }
  .abt-cont3 .abt-a3v1 .ast1 li:nth-child(3) u {
    margin: 0 auto;
  }
}

.abt-cont4 {
  background-position: center;
  background-repeat: no-repeat;
  -o-background-size: cover;
     background-size: cover;
  padding: 10rem 0 12.8125rem;
}
@media (max-width: 768px) {
  .abt-cont4 {
    padding: 4.5rem 0;
  }
}
.abt-cont4 .tit {
  color: #fff;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.25em;
  width: 36.7857142857%;
}
@media (max-width: 768px) {
  .abt-cont4 .tit {
    width: 100%;
    font-size: 1.8rem;
  }
}

.abt-cont5 {
  padding: 8.25rem 0 0;
}
@media (max-width: 768px) {
  .abt-cont5 {
    padding-top: 2.5rem;
  }
}

.abt-cont6 {
  padding-top: 3.75rem;
}
@media (max-width: 768px) {
  .abt-cont6 {
    padding-top: 2rem;
  }
}
.abt-cont6 .mySwiper6 {
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .abt-cont6 .mySwiper6 {
    margin-top: 1.25rem;
  }
}
.abt-cont6 .mySwiper6 .swiper-slide .img img {
  width: 100%;
}
.abt-cont6 .mySwiper6 .swiper-pagination1 {
  margin-top: 1rem;
}

.abt-cont7 {
  padding: 5.75rem 0 6.25rem;
}
@media (max-width: 768px) {
  .abt-cont7 {
    padding: 2.5rem 0;
  }
}
.abt-cont7 .abt-a7v1 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 {
    margin-top: 1rem;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b1 {
  width: 51%;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 .abt-a7b1 {
    width: 100%;
    border-radius: 1rem;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b1 img {
  width: 100%;
  aspect-ratio: 714/505;
  -o-object-fit: cover;
     object-fit: cover;
}
.abt-cont7 .abt-a7v1 .abt-a7b2 {
  width: 42%;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 .abt-a7b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .tit {
  color: #000000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 .abt-a7b2 .tit {
    font-size: 1.5rem;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 {
    margin-top: 1.5rem;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li {
  color: rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  line-height: 1.125em;
  padding-left: 1.85em;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li {
    font-size: 1.125rem;
    padding-left: 1.125em;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li::after {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 0;
  background: var(--color-zt);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li + li {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li + li {
    margin-top: 1.125rem;
  }
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li:hover {
  color: #000;
}
.abt-cont7 .abt-a7v1 .abt-a7b2 .asta1 li:hover::after {
  height: 100%;
}

.product-content {
  margin-top: 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .product-content {
    margin-top: 0;
  }
}
.product-content .prod-cont1 {
  width: 21.5714285714%;
}
@media (max-width: 768px) {
  .product-content .prod-cont1 {
    width: 100%;
  }
}
.product-content .prod-cont1 .prod-a1byt1 {
  background: #F6F6F6;
  border-radius: 1.25rem;
  padding: 1.25rem 0.75rem 3rem;
}
@media (max-width: 768px) {
  .product-content .prod-cont1 .prod-a1byt1 {
    border-radius: 1rem;
    padding: 1.25rem 0.75rem 1.5rem;
  }
}
.product-content .prod-cont1 .prod-a1byt1 .tit {
  color: #000000;
  font-size: 1rem;
  margin-left: 0.4rem;
}
.product-content .prod-cont1 .prod-a1byt1 .tit i {
  display: block;
  font-size: 0;
  width: 1rem;
  margin-right: 0.5rem;
}
.product-content .prod-cont1 .prod-a1byt1 .tit i img {
  width: 100%;
}
.product-content .prod-cont1 .prod-a1byt1 .pro_list {
  margin-top: 1rem;
}
.product-content .prod-cont1 .prod-a1byt1 .pro_list li a {
  display: block;
  color: #1D1D1F;
  font-size: 1rem;
  line-height: 1.1875rem;
  border-radius: 0.3125rem;
  text-align: left;
  padding: 0.875rem 1.5rem 0.875rem 1.8rem;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.product-content .prod-cont1 .prod-a1byt1 .pro_list li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.75rem;
  top: 0.875rem;
  width: 0.3125rem;
  height: -webkit-calc(100% - 1.75rem);
  height: -moz-calc(100% - 1.75rem);
  height: calc(100% - 1.75rem);
  border-radius: 0.125rem;
  background: var(--color-zt);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.product-content .prod-cont1 .prod-a1byt1 .pro_list li:hover a, .product-content .prod-cont1 .prod-a1byt1 .pro_list li.active a {
  background: #fff;
}
.product-content .prod-cont1 .prod-a1byt1 .pro_list li:hover a::before, .product-content .prod-cont1 .prod-a1byt1 .pro_list li.active a::before {
  opacity: 1;
}
.product-content .prod-cont1 .prod-a1byt1 .pro_list li + li {
  margin-top: 0.125rem;
}
.product-content .prod-cont2 {
  width: 73.9285714286%;
}
.product-content .prod-cont2.w100 {
  width: 100%;
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  .product-content .prod-cont2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.product-content .prod-cont2 .prod-a2v1 .ast {
  color: rgba(29, 29, 31, 0.5);
  font-size: 1rem;
  line-height: 2.75em;
}
.product-content .prod-cont2 .prod-a2v1 .form-select1 {
  border: none;
  font-size: 1rem;
  line-height: 1.5em;
  height: auto;
  padding: 0;
  padding-right: 1.5em;
}
.product-content .prod-cont2 .prod-a2v1 .form-select1:after {
  width: 0.35rem;
  height: 0.35rem;
  border-color: #1D1D1F;
  right: 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 4.75rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.product-list li a.img {
  display: block;
  text-align: center;
}
.product-list li a.img u {
  display: block;
  font-size: 0;
  background: #F6F6F6;
  border-radius: 1.25rem;
}
@media (max-width: 768px) {
  .product-list li a.img u {
    border-radius: 1rem;
  }
}
.product-list li a.img u img {
  width: 100%;
}
.product-list li a.img .ftxt {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.35em;
  margin-top: 1rem;
}
.product-list li a.img .tit {
  color: #1D1D1F;
  font-size: 1.125rem;
  line-height: 1.25em;
  margin-top: 0.125rem;
  text-transform: capitalize;
}
.product-list li a.img:hover .tit {
  color: var(--color-zt);
}

.show-product-body, .product-template-default {
  padding-top: var(--head-height);
  overflow: visible;
}

.pro-show-cont1 {
  padding-bottom: 5.5625rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 {
    padding-bottom: 2.5rem;
  }
}
.pro-show-cont1 .pro-show-a1b1 {
  width: 46.4285714286%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 {
    width: 100%;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img {
  position: sticky;
  top: var(--head-height);
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li {
  display: none;
  background-color: #F6F6F6;
  overflow: hidden;
  border-radius: 1.875rem;
  position: relative;
  font-size: 0;
  aspect-ratio: 1/1;
  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;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li {
    border-radius: 1rem;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 {
  position: relative;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div {
  background: rgba(255, 255, 255, 0.35);
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div.swiper-button-prev1 {
  left: 3%;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div.swiper-button-next1 {
  right: 3%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div {
    background: rgba(255, 255, 255, 0.75);
    width: 3rem;
    height: 3rem;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div i {
  font-size: 1.125rem;
  color: #B0B0B0;
  font-weight: 900;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div i {
    color: #1D1D1D;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div:hover {
  background: #FFFFFF;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li .mySwiper8 .jt-gomg > div:hover i {
  color: #1D1D1D;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li > i {
  display: block;
  position: absolute;
  right: 8%;
  bottom: 12.5%;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li > i img {
  height: 2.0625rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li > i img {
    height: 1.65rem;
  }
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li {
    border-radius: 1rem;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li u {
  display: block;
  font-size: 0;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li u img {
  width: 100%;
  aspect-ratio: 16/16;
  -o-object-fit: cover;
     object-fit: cover;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .ast1 li video {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 {
  width: 43.0093209055%;
  margin: 0 auto;
  background: #E9EBEE;
  border-radius: 0.4375rem;
  padding: 0.3125rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 {
    margin-top: 1rem;
    width: 80%;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 .as1-axt1 {
  position: relative;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 .as1-axt1 li {
  width: 33.3333333333%;
  position: relative;
  z-index: 1;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.75rem;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 .as1-axt1 li {
    font-size: 0.875rem;
  }
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 .as1-axt1 li.on {
  color: #fff;
}
.pro-show-cont1 .pro-show-a1b1 .cp-show-img .weas-xa1 .as1-axt1 .tab-follow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33.3333333333%;
  border-radius: 0.4375rem;
  background: #1D1D1D;
  pointer-events: none;
  -webkit-transition: width 0.32s ease, -webkit-transform 0.32s ease;
  transition: width 0.32s ease, -webkit-transform 0.32s ease;
  -o-transition: width 0.32s ease, -o-transform 0.32s ease;
  -moz-transition: transform 0.32s ease, width 0.32s ease, -moz-transform 0.32s ease;
  transition: transform 0.32s ease, width 0.32s ease;
  transition: transform 0.32s ease, width 0.32s ease, -webkit-transform 0.32s ease, -moz-transform 0.32s ease, -o-transform 0.32s ease;
  z-index: 0;
}
.pro-show-cont1 .pro-show-a1b2 {
  width: 45.0714285714%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 {
    width: 100%;
    margin-top: 2rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 .ftit {
  color: var(--color-zt);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35em;
}
.pro-show-cont1 .pro-show-a1b2 .tit {
  color: #1D1D1F;
  font-size: 2.5rem;
  line-height: 1.35em;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0.125rem 0;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 .tit {
    font-size: 2rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 .ftxt {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 .ftxt {
    font-size: 1rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 a.more-b {
  padding: 0.85rem 2.35rem;
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 a.more-b {
    margin-top: 1rem;
    padding: 0.8rem 1.85rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li {
  margin-top: 1.35rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 .su_list > li {
    margin-top: 1.125rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .tit1 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 .su_list > li .tit1 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ys {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.4rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ys li {
  background: var(--ys);
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 1.625rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .xh-as {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .xh-as li {
  border: 1px solid rgba(29, 29, 31, 0.2);
  font-size: 1rem;
  line-height: 1.25rem;
  padding: 0.7rem 0;
  border-radius: 0.25rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .faq-lista li + li {
  margin-top: 0.75rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .faq-lista li .dt {
  color: #1D1D1F;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .faq-lista li .dt::before {
  content: "·";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .faq-lista li .dt p {
  width: 100%;
  text-transform: capitalize;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .faq-lista li .wehha-job {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 0.25rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .job-list {
  margin-top: -0.75rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .job-list li .dt {
  color: #1D1D1F;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(64, 64, 66, 0.2);
  padding: 0.75em 0;
  cursor: pointer;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .job-list li .dt p {
  width: -webkit-calc(100% - 2rem);
  width: -moz-calc(100% - 2rem);
  width: calc(100% - 2rem);
  text-transform: capitalize;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .job-list li .dt i {
  color: rgba(51, 51, 51, 0.7);
  font-size: 1rem;
  font-weight: 700;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .job-list li .wehha-job {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ast-xt1 a.mst-sdta {
  position: relative;
  background: #F6F6F6;
  padding: 1.65rem 0.75rem 1.65rem 35%;
  margin-top: 1.35rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ast-xt1 a.mst-sdta u {
  display: block;
  font-size: 0;
  width: 8.4375rem;
  position: absolute;
  left: 0.8125rem;
  bottom: 0;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ast-xt1 a.mst-sdta u img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ast-xt1 a.mst-sdta p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .ast-xt1 a.mst-sdta i {
  color: rgba(51, 51, 51, 0.7);
  font-size: 0.875rem;
  font-weight: 700;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt {
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  padding: 1.35rem 0;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt .pat1 {
  width: -webkit-calc(96% - 1.25rem);
  width: -moz-calc(96% - 1.25rem);
  width: calc(96% - 1.25rem);
  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;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt .pat1 i {
  display: block;
  font-size: 0;
  width: 1.3125rem;
  margin-right: 1.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt .pat1 i {
    margin-right: 0.75rem;
  }
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt .pat1 i img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt .pat1 .namx {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt u {
  display: block;
  font-size: 0;
  width: 1.25rem;
}
.pro-show-cont1 .pro-show-a1b2 .su_list > li .asta1 li a.mer-xt u img {
  width: 100%;
}

.tcmgs-a {
  display: none;
  padding: 3.25rem 4.5833333333% 6.75rem;
  width: clamp(320px, 70%, 1200px);
}
@media (max-width: 768px) {
  .tcmgs-a {
    padding: 2.125rem 4.5833333333%;
  }
}
.tcmgs-a .carousel__button {
  top: 2rem !important;
  right: 7.3333333333% !important;
  width: 3.375rem;
  height: 3.375rem;
  background: #000;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .tcmgs-a .carousel__button {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.tcmgs-a .carousel__button svg {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.tcmgs-a .carousel__button:hover svg {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.tcmgs-a .msg-v1 .title {
  color: #000000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .tcmgs-a .msg-v1 .title {
    font-size: 1.5rem;
  }
}
.tcmgs-a .msg-v1 .cont-p {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1.5rem;
}
.tcmgs-a .msg-v1 .job-list1 li .dt {
  color: #1D1D1F;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(64, 64, 66, 0.2);
  padding: 0.75em 0;
  cursor: pointer;
}
.tcmgs-a .msg-v1 .job-list1 li .dt .pat1 {
  width: -webkit-calc(100% - 2rem);
  width: -moz-calc(100% - 2rem);
  width: calc(100% - 2rem);
  text-transform: capitalize;
  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;
}
.tcmgs-a .msg-v1 .job-list1 li .dt .pat1 i {
  display: block;
  font-size: 0;
  width: 1.3125rem;
  margin-right: 1.25rem;
}
.tcmgs-a .msg-v1 .job-list1 li .dt .pat1 i img {
  width: 100%;
}
.tcmgs-a .msg-v1 .job-list1 li .dt .pat1 .namx {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
}
.tcmgs-a .msg-v1 .job-list1 li .dt i {
  color: rgba(51, 51, 51, 0.7);
  font-size: 1rem;
  font-weight: 700;
}
.tcmgs-a .msg-v1 .job-list1 li .wehha-job {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}
.tcmgs-a .msg-v1 .job-list1 li .wehha-job a {
  color: var(--color-zt);
}

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

.pro-show-cont2 .ast1 .heng1 {
  margin-top: 1.65rem;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast1 .heng1 {
    margin-top: 1.25rem;
    border-radius: 1rem;
  }
}
.pro-show-cont2 .ast2 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast2 {
    margin-top: 2rem;
  }
}
.pro-show-cont2 .ast2 .insrt {
  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;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast2 .insrt {
    margin-top: 1rem;
  }
}
.pro-show-cont2 .ast2 .insrt li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1.875rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast2 .insrt li {
    border-radius: 1rem;
  }
}
.pro-show-cont2 .ast2 .insrt li:nth-child(1) {
  -webkit-flex: 2;
     -moz-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.pro-show-cont2 .ast2 .insrt li img {
  width: 100%;
  height: 36.6875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast2 .insrt li img {
    height: 12rem;
  }
}
.pro-show-cont2 .table-cont table {
  border: none;
}
.pro-show-cont2 .table-cont table thead tr th {
  padding: 0.75rem 1.5rem !important;
  border: none;
  border-bottom: 1px solid var(--color-zt);
}
.pro-show-cont2 .table-cont table thead tr th:nth-child(1) {
  width: 40%;
}
.pro-show-cont2 .table-cont table tbody tr td {
  border: none;
  padding: 0.75rem 1.5rem !important;
}
.pro-show-cont2 .table-cont table tbody tr:nth-child(2n) {
  background: #F6F6F6;
}
.pro-show-cont2 .ast3 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast3 {
    margin-top: 2rem;
  }
}
.pro-show-cont2 .ast3 .table-cont {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast3 .table-cont {
    margin-top: 0.5rem;
  }
}
.pro-show-cont2 .ast3 .heng2 {
  padding: 0 6%;
  margin-top: 5.5625rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast3 .heng2 {
    margin-top: 1.5rem;
    padding: 0;
  }
}
.pro-show-cont2 .ast3 .heng2 img {
  width: 100%;
}
.pro-show-cont2 .ast4 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 {
    margin-top: 2rem;
  }
}
.pro-show-cont2 .ast4 .mySwiper4 {
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 .mySwiper4 {
    margin-top: 1.125rem;
    padding: 0 1px;
  }
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img {
  border-radius: 1.875rem;
  overflow: hidden;
  background: #F6F6F6;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img {
    border-radius: 1rem;
  }
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img u {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img u img {
  width: 100%;
  aspect-ratio: 690/424;
  -o-object-fit: cover;
     object-fit: cover;
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img .cont-p {
  padding: 1.6875rem 6% 3.25rem;
  color: #1D1D1F;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img .cont-p {
    padding: 1.35rem 5% 2rem;
  }
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img .cont-p .tit {
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img .cont-p .tit {
    font-size: 1.35rem;
  }
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img .cont-p .txt {
  font-size: 1rem;
  line-height: 1.25em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 .mySwiper4 .swiper-slide .img .cont-p .txt {
    margin-top: 0.5rem;
  }
}
.pro-show-cont2 .ast4 .mySwiper4 .swiper-pagination1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .ast4 .mySwiper4 .swiper-pagination1 {
    margin-top: 1.25rem;
  }
}

.pro-show-cont3 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 {
    margin-top: 2rem;
  }
}
.pro-show-cont3 .job-list {
  padding: 0 13.5714285714%;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 .job-list {
    padding: 0;
  }
}
.pro-show-cont3 .job-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pro-show-cont3 .job-list li .dt {
  padding: 1.5rem 1.375rem 1.5rem 2.375rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 .job-list li .dt {
    padding: 1.25rem 1rem 1.25rem 1.5rem;
  }
}
.pro-show-cont3 .job-list li .dt {
  cursor: pointer;
}
.pro-show-cont3 .job-list li .dt p {
  color: #212121;
  font-size: 1.6875rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 .job-list li .dt p {
    font-size: 1.25rem;
    width: 78%;
  }
}
.pro-show-cont3 .job-list li .dt i {
  font-size: 1rem;
  color: #333333;
  font-weight: 700;
}
.pro-show-cont3 .job-list li .wehha-job {
  background: #F6F6F6;
  border-radius: 1.25rem;
  padding: 2.625rem 2.375rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pro-show-cont3 .job-list li .wehha-job {
    border-radius: 1rem;
    padding: 1.625rem 1.25rem;
  }
}
.pro-show-cont3 .job-list li .wehha-job .as b {
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  background: #1D1D1F;
  border-radius: 50%;
  color: #fff;
  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;
  margin-top: 0.25rem;
}
.pro-show-cont3 .job-list li .wehha-job .txt {
  width: -webkit-calc(100% - 2.8rem);
  width: -moz-calc(100% - 2.8rem);
  width: calc(100% - 2.8rem);
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .pro-show-cont3 .job-list li .wehha-job .txt {
    font-size: 0.875rem;
  }
}
.pro-show-cont3 .job-list li.active {
  border-color: transparent;
}
.pro-show-cont3 .job-list li.active .dt p {
  font-weight: 700;
}
.pro-show-cont3 .more-b {
  margin: 2.1875rem auto 0;
}
@media (max-width: 768px) {
  .pro-show-cont3 .more-b {
    margin-top: 1.5rem;
  }
}

.pro-show-cont4 {
  margin-top: 4.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 {
    margin-top: 2rem;
  }
}
.pro-show-cont4 .pro-show-a4v1 {
  background: #F6F6F6;
  padding: 3rem 3%;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 .pro-show-a4v1 {
    padding: 2rem 6%;
    margin-top: 1rem;
  }
}
.pro-show-cont4 .pro-show-a4v1 a.moer-ax {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.pro-show-cont4 .pro-show-a4v1 a.moer-ax i {
  display: block;
  font-size: 0;
  width: 1.5rem;
  margin-right: 0.5rem;
}
.pro-show-cont4 .pro-show-a4v1 a.moer-ax i img {
  width: 100%;
}
.pro-show-cont4 .pro-show-a4v1 a.moer-ax:hover {
  color: var(--color-zt);
}
.pro-show-cont4 .pro-show-a4v1 a.moer-ax:hover i img {
  -webkit-filter: invert(27%) sepia(77%) saturate(6879%) hue-rotate(3deg) brightness(91%) contrast(80%);
          filter: invert(27%) sepia(77%) saturate(6879%) hue-rotate(3deg) brightness(91%) contrast(80%);
}

.pro-show-cont5 {
  padding: 5.5rem 0 7.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 {
    padding: 2rem 0;
  }
}
.pro-show-cont5 .product-list {
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 .product-list {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.category, .page-template-list_news, .post-template-default {
  padding-top: var(--head-height);
  background: #F6F6F6;
}

.news-tit {
  margin-top: 3.375rem;
}
@media (max-width: 768px) {
  .news-tit {
    margin-top: 1rem;
  }
}
.news-tit .news-tit-v {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.85rem 0;
}
@media (max-width: 768px) {
  .news-tit .news-tit-v {
    padding: 0.4rem 0;
  }
}
.news-tit .tit {
  color: #1D1D1F;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-tit .tit {
    font-size: 2rem;
  }
}
.news-tit .news_sort {
  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;
  gap: 0.25rem 2.25rem;
}
.news-tit .news_sort li a {
  color: #1D1D1F;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.news-tit .news_sort li a:hover, .news-tit .news_sort li a.active {
  color: var(--color-zt);
}

.news-cont1 {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .news-cont1 {
    margin-top: 0.5rem;
  }
}
.news-cont1 .mySwiper7 {
  border-radius: 1.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 {
    border-radius: 1rem;
  }
}
.news-cont1 .mySwiper7 .swiper-slide .img {
  position: relative;
  display: block;
}
.news-cont1 .mySwiper7 .swiper-slide .img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
  background: -moz-linear-gradient(top, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
  background: -o-linear-gradient(top, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
  background: linear-gradient(180deg, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
}
.news-cont1 .mySwiper7 .swiper-slide .img img {
  width: 100%;
  aspect-ratio: 1400/625;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 .swiper-slide .img img {
    aspect-ratio: 16/14;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news-cont1 .mySwiper7 .swiper-slide .cont-p {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  padding: 0 3.75rem;
  z-index: 1;
  color: #fff;
  padding-right: 25%;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 .swiper-slide .cont-p {
    padding: 0 7%;
  }
}
.news-cont1 .mySwiper7 .swiper-slide .cont-p .data {
  font-size: 1rem;
  line-height: 1.5em;
}
.news-cont1 .mySwiper7 .swiper-slide .cont-p .data i {
  font-size: 0.9375rem;
  margin-right: 0.35rem;
}
.news-cont1 .mySwiper7 .swiper-slide .cont-p .tit {
  display: block;
  font-size: 1.6875rem;
  line-height: 1.35em;
  padding: 0.25em 0;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 .swiper-slide .cont-p .tit {
    font-size: 1.35rem;
  }
}
.news-cont1 .mySwiper7 .swiper-slide .cont-p .p1 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.25em;
}
.news-cont1 .mySwiper7 .jt-gomg {
  position: absolute;
  right: 3.75rem;
  bottom: 10%;
  z-index: 2;
  gap: 1rem;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 .jt-gomg {
    right: 5%;
    bottom: auto;
    top: 1.5rem;
  }
}
.news-cont1 .mySwiper7 .jt-gomg > div {
  background: rgba(255, 255, 255, 0.35);
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 .jt-gomg > div {
    background: rgba(255, 255, 255, 0.75);
    width: 3rem;
    height: 3rem;
  }
}
.news-cont1 .mySwiper7 .jt-gomg > div i {
  font-size: 1.125rem;
  color: #B0B0B0;
  font-weight: 900;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .news-cont1 .mySwiper7 .jt-gomg > div i {
    color: #1D1D1D;
  }
}
.news-cont1 .mySwiper7 .jt-gomg > div:hover {
  background: #FFFFFF;
}
.news-cont1 .mySwiper7 .jt-gomg > div:hover i {
  color: #1D1D1D;
}

.news-cont2 {
  padding-top: 3.9375rem;
}
@media (max-width: 768px) {
  .news-cont2 {
    padding-top: 2rem;
  }
}
.news-cont2 .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.3125rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.news-cont2 .news-list li a.img {
  display: block;
  background: #fff;
  border-radius: 1.25rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li a.img {
    border-radius: 1rem;
  }
}
.news-cont2 .news-list li a.img u {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.news-cont2 .news-list li a.img u img {
  width: 100%;
  aspect-ratio: 453/280;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-cont2 .news-list li a.img .cont-p {
  padding: 1.625rem 1.875rem 2.8125rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li a.img .cont-p {
    padding: 1.25rem 1.5rem 2rem;
  }
}
.news-cont2 .news-list li a.img .cont-p .data {
  color: #CF3519;
  font-size: 1rem;
  line-height: 1.5em;
}
.news-cont2 .news-list li a.img .cont-p .data i {
  font-size: 1rem;
  margin-right: 0.35rem;
}
.news-cont2 .news-list li a.img .cont-p .tit {
  color: #1D1D1F;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li a.img .cont-p .tit {
    font-size: 1.35rem;
  }
}
.news-cont2 .news-list li a.img .cont-p .txt {
  margin-top: 0.5rem;
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
}
.news-cont2 .news-list li a.img:hover .cont-p .tit {
  color: var(--color-zt);
}

.check-toggle {
  cursor: pointer;
}
.check-toggle .wejha input {
  display: none;
}
.check-toggle .wejha input:checked + .xzjt {
  background: var(--color-zt);
  border-color: var(--color-zt);
}
.check-toggle .wejha input:checked + .xzjt i {
  color: #fff;
}
.check-toggle .wejha .xzjt {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(29, 29, 31, 0.7);
  margin-right: 0.5rem;
}
.check-toggle .wejha .xzjt i {
  color: rgba(29, 29, 31, 0.7);
  font-size: 0.65rem;
  line-height: 0.75rem;
}

.news-show-cont1 {
  padding-bottom: 4.125rem;
}
@media (max-width: 768px) {
  .news-show-cont1 {
    padding-bottom: 2rem;
  }
}
.news-show-cont1 .title {
  color: #1D1D1F;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .news-show-cont1 .title {
    font-size: 1.8rem;
  }
}
.news-show-cont1 .data-xqa {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .news-show-cont1 .data-xqa {
    margin-top: 1rem;
  }
}
.news-show-cont1 .data-xqa span {
  display: block;
  font-size: 0.875rem;
  color: rgba(29, 29, 31, 0.5);
}
.news-show-cont1 .data-xqa .social-share {
  margin-left: 1.25rem;
}
@media (max-width: 768px) {
  .news-show-cont1 .data-xqa .social-share {
    margin-left: 0.75rem;
  }
}
.news-show-cont1 .data-xqa .social-share a {
  background: #fff;
  border-radius: 50%;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  color: rgba(70, 81, 83, 0.7);
  font-size: 1rem;
  border: none;
}

.news-show-cont2 {
  background: #fff;
  padding: 2.125rem 0 4rem;
}
@media (max-width: 768px) {
  .news-show-cont2 {
    padding: 1.5rem 0 2rem;
  }
}
.news-show-cont2 .news-show-a1b1 {
  width: 65%;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 {
    width: 100%;
  }
}
.news-show-cont2 .news-show-a1b1 a.fh-more {
  font-size: 1.125rem;
  color: #1D1D1F;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 a.fh-more {
    font-size: 1rem;
  }
}
.news-show-cont2 .news-show-a1b1 a.fh-more i {
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.35rem;
}
.news-show-cont2 .news-show-a1b1 a.fh-more:hover {
  color: var(--color-zt);
}
.news-show-cont2 .news-show-a1b1 .content {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 .content {
    margin-top: 1rem;
  }
}
.news-show-cont2 .news-show-a1b1 .content img {
  width: 100%;
  border-radius: 1.25rem;
}
.news-show-cont2 .news-show-a1b1 .content h2, .news-show-cont2 .news-show-a1b1 .content h3 {
  color: #1D1D1F;
  font-size: 1.5rem;
  display: block;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 .content h2, .news-show-cont2 .news-show-a1b1 .content h3 {
    font-size: 1.25rem;
  }
}
.news-show-cont2 .news-show-a1b1 .content b {
  color: #1D1D1F;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 .content b {
    font-size: 1.25rem;
  }
}
.news-show-cont2 .news-show-a1b1 .tag {
  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;
  margin-top: 2rem;
  padding: 2rem 0;
  gap: 1rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 .tag {
    margin-top: 1rem;
    padding: 1rem 0;
  }
}
.news-show-cont2 .news-show-a1b1 .tag li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F5F5F7;
  border-radius: 0.625rem;
  color: #1D1D1F;
  font-size: 0.875rem;
  line-height: 2.4285714286em;
  padding: 0.35em 2em;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 .tag li {
    padding: 0.35em 1.5em;
  }
}
.news-show-cont2 .news-show-a1b1 .fhasx {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b1 .fhasx {
    margin-top: 1.5rem;
  }
}
.news-show-cont2 .news-show-a1b1 .fhasx a.morea {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  gap: 0.5rem;
}
.news-show-cont2 .news-show-a1b1 .fhasx a.morea i {
  font-size: 1.35rem;
  color: #1D1D1F;
}
.news-show-cont2 .news-show-a1b1 .fhasx a.morea:hover {
  color: var(--color-zt);
}
.news-show-cont2 .news-show-a1b1 .fhasx a.morea:hover i {
  color: var(--color-zt);
}
.news-show-cont2 .news-show-a1b2 {
  width: 29.5%;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 {
    width: 100%;
    margin-top: 2rem;
  }
}
.news-show-cont2 .news-show-a1b2 .tit-a {
  color: #1D1D1F;
  font-size: 1.6875rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 .tit-a {
    font-size: 1.35rem;
  }
}
.news-show-cont2 .news-show-a1b2 .tj_list1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 .tj_list1 {
    margin-top: 1rem;
  }
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li + li {
  margin-top: 1.4375rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 .tj_list1 li + li {
    margin-top: 1.25rem;
  }
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img {
  display: block;
  background: #F6F6F6;
  border-radius: 1.25rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 .tj_list1 li a.img {
    border-radius: 1rem;
    padding: 1.75rem;
  }
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img .data {
  color: #CF3519;
  font-size: 1rem;
  line-height: 1.5em;
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img .data i {
  font-size: 1rem;
  margin-right: 0.25rem;
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img .tit {
  color: #404042;
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 600;
  margin: 0.5rem 0 0.85rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 .tj_list1 li a.img .tit {
    font-size: 1.35rem;
  }
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img .morexa {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #717171;
  font-size: 1rem;
  line-height: 1.5em;
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img .morexa i {
  font-size: 1rem;
  margin-left: 0.25rem;
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img:hover .tit {
  color: var(--color-zt);
}
.news-show-cont2 .news-show-a1b2 .tj_list1 li a.img:hover .morexa {
  color: var(--color-zt);
}
.news-show-cont2 .news-show-a1b2 .msg-ax {
  border: 1px solid #E6E8EB;
  border-radius: 1.25rem;
  margin-top: 1.375rem;
  padding: 2rem 2.25rem;
}
@media (max-width: 768px) {
  .news-show-cont2 .news-show-a1b2 .msg-ax {
    padding: 1.5rem 1.85rem;
    border-radius: 1rem;
  }
}
.news-show-cont2 .news-show-a1b2 .msg-ax form br {
  display: none;
}
.news-show-cont2 .news-show-a1b2 .msg-ax form input.insm {
  width: 100%;
  border: 1px solid rgba(97, 97, 99, 0.1);
  border-radius: 0.625rem;
  font-size: 1rem;
  line-height: 3.125rem;
  padding: 0 1em;
  margin-bottom: 0.25rem;
}
.news-show-cont2 .news-show-a1b2 .msg-ax form .check-toggle {
  margin-top: 1rem;
}
.news-show-cont2 .news-show-a1b2 .msg-ax form .check-toggle span {
  display: block;
  width: -webkit-calc(95% - 1.5rem);
  width: -moz-calc(95% - 1.5rem);
  width: calc(95% - 1.5rem);
  font-size: 0.875rem;
  color: rgba(29, 29, 31, 0.7);
}
.news-show-cont2 .news-show-a1b2 .msg-ax form .check-toggle span a {
  color: rgba(29, 29, 31, 0.7);
}
.news-show-cont2 .news-show-a1b2 .msg-ax form .check-toggle span a:hover {
  color: var(--color-zt);
}
.news-show-cont2 .news-show-a1b2 .msg-ax form .button {
  width: 100%;
  border: none;
  background: #CF371A;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 1rem;
  line-height: 3.125rem;
  margin-top: 0.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid var(--color-zt);
}
.news-show-cont2 .news-show-a1b2 .msg-ax form .button:hover {
  background: #fff;
  color: var(--color-zt);
}

.bsbody {
  background: #fff;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.faq-cont1 .faq-sort1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .faq-cont1 .faq-sort1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.faq-cont1 .faq-sort1 li a.namex {
  display: block;
  text-align: center;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  background: #F6F6F6;
  padding: 3.875rem 5%;
  color: #1D1D1F;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .faq-cont1 .faq-sort1 li a.namex {
    padding: 1.875rem 5%;
  }
}
.faq-cont1 .faq-sort1 li a.namex u {
  display: block;
  font-size: 0;
  width: 4.5rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-cont1 .faq-sort1 li a.namex u {
    width: 3rem;
  }
}
.faq-cont1 .faq-sort1 li a.namex u img {
  width: 100%;
}
.faq-cont1 .faq-sort1 li a.namex p {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .faq-cont1 .faq-sort1 li a.namex p {
    font-size: 1.125rem;
  }
}
.faq-cont1 .faq-sort1 li a.namex:hover {
  background: var(--color-zt);
  color: #fff;
}
.faq-cont1 .faq-sort1 li a.namex:hover u img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.faq_list1 > li {
  margin-top: 6.0625rem;
}
@media (max-width: 768px) {
  .faq_list1 > li {
    margin-top: 2rem;
  }
}
.faq_list1 > li .tit {
  color: #1D1D1F;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .faq_list1 > li .tit {
    font-size: 1.8rem;
  }
}
.faq_list1 > li .ftit {
  color: rgba(29, 29, 31, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .faq_list1 > li .ftit {
    font-size: 1rem;
  }
}
.faq_list1 > li .job-list {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .faq_list1 > li .job-list {
    margin-top: 0.5rem;
  }
}
.faq_list1 > li .job-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq_list1 > li .job-list li .dt {
  padding: 1.5rem 1.375rem 1.5rem 2.375rem;
}
@media (max-width: 768px) {
  .faq_list1 > li .job-list li .dt {
    padding: 1.25rem 1rem 1.25rem 1.5rem;
  }
}
.faq_list1 > li .job-list li .dt {
  cursor: pointer;
}
.faq_list1 > li .job-list li .dt p {
  color: #212121;
  font-size: 1.6875rem;
}
@media (max-width: 768px) {
  .faq_list1 > li .job-list li .dt p {
    font-size: 1.25rem;
    width: 78%;
  }
}
.faq_list1 > li .job-list li .dt i {
  font-size: 1rem;
  color: #333333;
  font-weight: 700;
}
.faq_list1 > li .job-list li .wehha-job {
  background: #F6F6F6;
  border-radius: 1.25rem;
  padding: 2.625rem 2.375rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq_list1 > li .job-list li .wehha-job {
    border-radius: 1rem;
    padding: 1.625rem 1.25rem;
  }
}
.faq_list1 > li .job-list li .wehha-job .as b {
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  background: #1D1D1F;
  border-radius: 50%;
  color: #fff;
  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;
  margin-top: 0.25rem;
}
.faq_list1 > li .job-list li .wehha-job .txt {
  width: -webkit-calc(100% - 2.8rem);
  width: -moz-calc(100% - 2.8rem);
  width: calc(100% - 2.8rem);
  color: #1D1D1D;
  font-size: 1rem;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .faq_list1 > li .job-list li .wehha-job .txt {
    font-size: 0.875rem;
  }
}
.faq_list1 > li .job-list li.active {
  border-color: transparent;
}
.faq_list1 > li .job-list li.active .dt p {
  font-weight: 700;
}

.faq-cont2 {
  padding: 8.75rem 0 8.4375rem;
}
@media (max-width: 768px) {
  .faq-cont2 {
    padding: 2.5rem 0;
  }
}
.faq-cont2 .asht-as1 {
  padding: 0 22.8571428571%;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .faq-cont2 .asht-as1 {
    padding: 0 4%;
    margin-top: 1.25rem;
  }
}
.faq-cont2 .asht-as1 li {
  width: 50%;
  text-align: center;
}
.faq-cont2 .asht-as1 li u {
  display: block;
  font-size: 0;
  width: 6.875rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-cont2 .asht-as1 li u {
    width: 3.5rem;
  }
}
.faq-cont2 .asht-as1 li u img {
  width: 100%;
}
.faq-cont2 .asht-as1 li p {
  color: #1D1D1F;
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .faq-cont2 .asht-as1 li p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
}

.dow-content {
  padding-bottom: 2rem;
}
.dow-content form {
  width: 81.3953488372%;
  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;
  margin: 2rem auto 0;
}
@media (max-width: 768px) {
  .dow-content form {
    margin-top: 1rem;
    width: 100%;
  }
}
.dow-content form .ixata {
  width: -webkit-calc(100% - 9.875rem);
  width: -moz-calc(100% - 9.875rem);
  width: calc(100% - 9.875rem);
  border: 1px solid rgba(29, 29, 31, 0.2);
  border-radius: 0.625rem;
  font-size: 1rem;
  line-height: 3.125rem;
  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;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dow-content form .ixata {
    width: 100%;
  }
}
.dow-content form .ixata i {
  color: rgba(0, 0, 0, 0.5);
  width: 3.4375rem;
  font-size: 1.125rem;
  text-align: center;
}
@media (max-width: 768px) {
  .dow-content form .ixata i {
    width: 2.85rem;
  }
}
.dow-content form .ixata input {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.75em;
}
@media (max-width: 768px) {
  .dow-content form .ixata input {
    padding-left: 0.25rem;
  }
}
.dow-content form button {
  width: 8.875rem;
  background: var(--color-zt);
  color: #fff;
  font-size: 1rem;
  line-height: 3.125rem;
  border-radius: 0.625rem;
  border: 1px solid var(--color-zt);
}
@media (max-width: 768px) {
  .dow-content form button {
    width: 100%;
    margin-top: 0.65rem;
  }
}
.dow-content .dow_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1875rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .dow-content .dow_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.dow-content .dow_list li a {
  background: #F6F6F6;
  padding: 2.865rem 2.5rem 2.5rem;
  border-radius: 1.25rem;
  display: block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  height: 100%;
}
@media (max-width: 768px) {
  .dow-content .dow_list li a {
    padding: 2rem 2.25rem 1.85rem;
    border-radius: 1rem;
  }
}
.dow-content .dow_list li a u {
  display: block;
  font-size: 0;
  width: 3.25rem;
}
@media (max-width: 768px) {
  .dow-content .dow_list li a u {
    width: 2.85rem;
  }
}
.dow-content .dow_list li a u img {
  width: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.dow-content .dow_list li a .tit {
  color: #1D1D1F;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 1rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.dow-content .dow_list li a .more-axya {
  color: #717171;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .dow-content .dow_list li a .more-axya {
    margin-top: 1rem;
  }
}
.dow-content .dow_list li a .more-axya i {
  font-size: 1.125rem;
  margin-left: 0.35rem;
}
.dow-content .dow_list li a:hover {
  background: var(--color-zt);
}
.dow-content .dow_list li a:hover u img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.dow-content .dow_list li a:hover .tit {
  color: #fff;
}
.dow-content .dow_list li a:hover .more-axya {
  color: #fff;
}

.leaflet-popup-content p {
  margin: 0.45em 0 1.3em;
}

.leaflet-container .leaflet-control-attribution {
  display: none;
}

.lx-cont1 {
  padding: 1rem 0 0;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding-top: 0;
  }
}
.lx-cont1 .lx-a1v1 {
  margin-top: 5.75rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 {
    margin-top: 1.5rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 {
  width: 47.8571428571%;
  border: 1px solid #DFDEDE;
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  padding: 3rem 3.5% 3.5rem;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 {
    width: 100%;
    border-radius: 0;
    padding: 2rem 5%;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .tit {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .tit {
    font-size: 1.35rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .astxa {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .astxa {
    margin-top: 1rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li {
  color: #404042;
  font-size: 1.25rem;
  line-height: 1.25em;
  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;
  margin-top: 0.85rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li {
    font-size: 1.125rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li i {
  width: 1.25rem;
  display: block;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li i {
    width: 1.125rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li i img {
  width: 100%;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li p {
  width: -webkit-calc(100% - 1.25rem);
  width: -moz-calc(100% - 1.25rem);
  width: calc(100% - 1.25rem);
  padding-left: 0.5em;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .astxa li p {
    width: -webkit-calc(100% - 1.125rem);
    width: -moz-calc(100% - 1.125rem);
    width: calc(100% - 1.125rem);
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 {
  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;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 {
    margin-top: 1.25rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 li {
  width: 31%;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 li u {
  display: block;
  font-size: 0;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 li u img {
  width: 100%;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 li p {
  color: #404042;
  font-size: 1rem;
  line-height: 1.5em;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .ermax1 li p {
    font-size: 0.8125rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 {
  width: 52.1428571429%;
  overflow: hidden;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 {
    width: 100%;
    border-radius: 0;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 #map {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 #map {
    height: 25rem;
  }
}

.lx-cont2 {
  padding: 0 5.9895833333%;
  padding-top: 6.125rem;
}
@media (max-width: 768px) {
  .lx-cont2 {
    padding: 0 4%;
    padding-top: 2rem;
  }
}
.lx-cont2 .heng1 {
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .lx-cont2 .heng1 {
    margin-top: 1.5rem;
    border-radius: 1rem;
  }
}
.lx-cont2 .heng1 img {
  width: 100%;
}

.lx-cont3 {
  padding: 4.125rem 0 6.25rem;
}
@media (max-width: 768px) {
  .lx-cont3 {
    padding: 2.125rem 0;
  }
}
.lx-cont3 form {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .lx-cont3 form {
    margin-top: 0;
  }
}
.lx-cont3 form .msg-a1 .inpt {
  width: 48.9285714286%;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .lx-cont3 form .msg-a1 .inpt {
    width: 100%;
  }
}
.lx-cont3 form .msg-a1 .inpt input {
  width: 100%;
  background: #F6F6F6;
  padding: 0 1.5em;
  font-size: 1rem;
  line-height: 3.125rem;
  border-radius: 0.625rem;
}
.lx-cont3 form .msg-a2 {
  margin-top: 1.25rem;
}
.lx-cont3 form .msg-a2 textarea {
  width: 100%;
  border: none;
  background: #F6F6F6;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  line-height: 1.5em;
  border-radius: 0.625rem;
}
.lx-cont3 form .check-toggle {
  margin-top: 0.5rem;
  color: rgba(29, 29, 31, 0.7);
}
.lx-cont3 form .check-toggle a {
  color: rgba(29, 29, 31, 0.7);
  text-decoration: underline;
}
.lx-cont3 form .check-toggle a:hover {
  color: var(--color-zt);
}
.lx-cont3 form .div_aghgha {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .lx-cont3 form .div_aghgha {
    margin-top: 1.5rem;
  }
}
.lx-cont3 form .div_aghgha button {
  padding: 0.95rem 4.25rem;
  font-weight: 400;
}