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

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #3C3D3D;
  --color-zt: #EB6146;
  --head-height: 3.875rem;
  --cbasta: 8.3333333333%;
  --jb-color: linear-gradient(90deg, #EB6146 16%, #E22C0F 100%);
  --borderRadius: 4.375rem;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.25%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --borderRadius: 1.5rem;
  }
}

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

.wh1 {
  padding: 0 4.6875%;
}
@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 "Noto Sans SC";
  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: 1.125rem 2rem 1.125rem 2.5rem;
  border-radius: 3.125rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  background: var(--color-zt);
  font-size: 1rem;
  gap: 0.35rem;
}
.more-b .xian1 {
  width: 2em;
  height: 1px;
  background: #fff;
  display: block;
}
@media (max-width: 768px) {
  .more-b {
    padding: 1rem 1.75rem;
  }
}
.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.75rem;
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: var(--jb-color);
  -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);
  border-radius: 3.125rem;
}
.more-b:hover > * {
  color: #fff;
}
.more-b:hover::after {
  -webkit-transform-origin: center left;
     -moz-transform-origin: center left;
      -ms-transform-origin: center left;
       -o-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.more-b.bs {
  color: var(--color-zt);
  background: #fff;
}
.more-b.bs > * {
  color: var(--color-zt);
}
.more-b.bs .xian1 {
  background: var(--color-zt);
}
.more-b.bs:hover > * {
  color: #fff;
}
.more-b.bs:hover .xian1 {
  background: #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: fixed;
  top: 1.5625vw;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.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;
}
.head .head2 .logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.head .head2 .logo a img {
  height: 2.875rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.head .head2 .logo a img.a {
  display: none;
}
.head .head2 .zywena {
  /*margin-left: 1.5rem;*/
  position: relative;
}
.head .head2 .zywena a.rhgxt {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
  /*border-left: 1px solid rgba(255, 255, 255, 0.2);*/
  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 {
  border-radius: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--color-zt);
  backdrop-filter: blur(15px);
  color: #fff;
  font-size: 1rem;
  line-height: var(--head-height);
  padding: 0 3.5em;
  display: block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.head .head2 .sska a {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
}
.head .head2 .sska a i {
  font-size: 1.25rem;
  font-weight: 500;
}
.head.sticky {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  top: 0;
}
.head.sticky .head2 {
  --as-calore: #333333;
}
.head.sticky .head2 .logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.head.sticky .head2 .logo a img {
  height: 2rem;
}
.head.sticky .head2 .logo a img.b {
  display: none;
}
.head.sticky .head2 .logo a img.a {
  display: inline-block;
}
.head.sticky .head2 .more-sxa {
  padding: 0 2.125em;
  --head-height: 2.85rem;
}
.head.sticky .head2 #menu {
  background: none;
  backdrop-filter: inherit;
}
.head.sticky .head2 #menu .nav_a1 > li a:hover span,.head.sticky .head2 #menu .nav_a1 > li.active a span {
  color: var(--color-zt);
}
.head.sticky .head2 #menu .nav_a1 > li a:hover span::before,.head.sticky .head2 #menu .nav_a1 > li.active a span::before {
  color: var(--color-zt);
}

#menu {
  margin-left: auto;
  border-radius: 3.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(35px);
  margin-right: 0.75rem;
  padding: 0 2rem;
}
#menu .nav_a1 {
  /*margin-right: 1rem;*/
}
#menu .nav_a1 > li {
  float: left;
  position: relative;
}
#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: 600;
  position: relative;
  cursor: pointer;
}
#menu .nav_a1 > li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 > li > a span::before {
  content: "\e696";
  font-size: 1.125rem;
  font-family: "iconfont";
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1em;
  position: absolute;
  left: -1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
#menu .nav_a1 > li > a i {
  position: absolute;
  left: 50%;
  bottom: 0.76rem;
  width: 1.375rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: 1;
  opacity: 0;
}
#menu .nav_a1 > li > a i img {
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#menu .nav_a1 > li .sec {
  position: absolute;
  top: -webkit-calc(100% + 1px);
  top: -moz-calc(100% + 1px);
  top: calc(100% + 1px);
  width: 160%;
  max-width: inherit;
  left: 50%;
  background: white;
  z-index: 9;
  border-radius: 0 0 1rem 1rem;
  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: 1.5rem 1em;
  text-align: center;
}
#menu .nav_a1 > li .sec.sec1 {
  width: 58.875rem;
  left: auto;
  right: -130%;
  padding: 1.6rem 2.5rem 2.5rem;
}
#menu .nav_a1 > li .sec.sec1 .secat1 dl {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
#menu .nav_a1 > li .sec.sec1 .secat1 dl a {
  display: block;
}
#menu .nav_a1 > li .sec.sec1 .secat1 dl > a {
  color: var(--color-zt);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 0.45rem 0;
}
#menu .nav_a1 > li .sec.sec1 .secat1 dl .asrcxa a {
  color: #575757;
  font-size: 1rem;
  line-height: 1.85em;
}
#menu .nav_a1 > li .sec.sec1 .secat1 dl .asrcxa a:hover {
  color: var(--color-zt);
}
#menu .nav_a1 > li .sec > a {
  color: #575757;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 0.45rem 0;
}
#menu .nav_a1 > li .sec > a:hover {
  color: var(--color-zt);
}
#menu .nav_a1 > li:hover .sec {
  opacity: 1;
  visibility: visible;
  -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 .sec.sec1 {
  -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 span::before, #menu .nav_a1 > li.active > a span::before {
  opacity: 1;
}

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

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

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

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

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

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1, .m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 30px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #333;
  font-family: "Montserrat";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: "";
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "Noto Sans SC";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Noto Sans SC";
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}
.m-bm-head.white .m-bm-head-box .m-bm-navbtn span, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:after, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.m-bm-head.white .m-bm-menu {
  background: #fff;
}
.m-bm-head.white .m-bm-nav > li, .m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav > li > a, .m-bm-head.white .m-bm-nav .aniut i, .m-bm-head.white .m-bm-nav > li .sec a, .m-bm-head.white .mrhgxt {
  color: #000;
}

.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;
  }
}
/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
@media (max-width: 768px) {
  .pc-banner {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}
.pc-banner .mySwipera {
  position: relative;
}
.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}
.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100vh;
  -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;
}
.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 .tit {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.35em;
  position: relative;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
    line-height: 1.2em;
  }
}
.pc-banner .mySwipera .wejja-a {
  position: absolute;
  right: var(--cbasta);
  width: 26.3541666667%;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .wejja-a {
    width: -webkit-calc(100% - var(--cbasta) * 2);
    width: -moz-calc(100% - var(--cbasta) * 2);
    width: calc(100% - var(--cbasta) * 2);
    right: auto;
    left: var(--cbasta);
  }
}
.pc-banner .mySwipera .wejja-a .pa1 {
  width: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .wejja-a .pa1 {
    width: 2rem;
  }
}
.pc-banner .mySwipera .wejja-a .pa1 i {
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .wejja-a .pa1 i {
    font-size: 1.5rem;
  }
}
.pc-banner .mySwipera .wejja-a .pa1 p {
  height: 13.625rem;
  width: 1px;
  background: #fff;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .wejja-a .pa1 p {
    height: 8.75rem;
  }
}
.pc-banner .mySwipera .wejja-a .p1 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.65em;
  font-weight: 600;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 3.5%;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .wejja-a .p1 {
    padding-left: 2%;
    font-size: 1.125rem;
    text-align: justify;
  }
}

a.mouse {
  position: absolute;
  left: 0;
  bottom: 2rem;
  left: var(--cbasta);
  text-align: center;
  display: block;
  z-index: 9;
  width: 5.125rem;
  height: 5.125rem;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  a.mouse {
    display: none;
  }
}
a.mouse .xdt {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
a.mouse .xdt p {
  display: block;
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
a.mouse .xdt p img {
  width: 100%;
}

@-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: 30%;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@-moz-keyframes scroll2 {
  0% {
    top: 30%;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@-o-keyframes scroll2 {
  0% {
    top: 30%;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@keyframes scroll2 {
  0% {
    top: 30%;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@-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 .entit {
  color: var(--color-zt);
  font-size: 3.5rem;
  line-height: 1.125em;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .title1 .entit {
    font-size: 2rem;
  }
}
.title1 .tit {
  color: var(--color-zt);
  font-size: 3rem;
  line-height: 1.25em;
  font-weight: 700;
}
.title1 .tit i {
  width: 1.25rem;
  display: inline-block;
  -webkit-transform: translateY(-2rem);
     -moz-transform: translateY(-2rem);
      -ms-transform: translateY(-2rem);
       -o-transform: translateY(-2rem);
          transform: translateY(-2rem);
  margin-left: -0.75rem;
}
@media (max-width: 768px) {
  .title1 .tit i {
    width: 1rem;
    -webkit-transform: translateY(-1rem);
       -moz-transform: translateY(-1rem);
        -ms-transform: translateY(-1rem);
         -o-transform: translateY(-1rem);
            transform: translateY(-1rem);
    margin-left: -0.25rem;
  }
}
.title1 .tit i img {
  width: 100%;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 2rem;
  }
}
.title1.bs .tit {
  color: #fff;
}
.title1.bs .tit i img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.title1.bs .entit {
  color: #fff;
}

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

.sy-body {
  overflow: visible;
}

@media (max-width: 768px) {
  .a1v3c1 .title1 {
    width: 100%;
  }
}
.a1v3c1 a.more-b {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .a1v3c1 a.more-b {
    margin-bottom: 0;
    margin-top: 1.5rem;
  }
}

@-webkit-keyframes gradientMove {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(15%);
            transform: translate(15%);
  }
  50% {
    -webkit-transform: translate(20%, 12%);
            transform: translate(20%, 12%);
  }
  75% {
    -webkit-transform: translate(15%);
            transform: translate(15%);
  }
}

@-moz-keyframes gradientMove {
  0% {
    -moz-transform: translate(0);
         transform: translate(0);
  }
  25% {
    -moz-transform: translate(15%);
         transform: translate(15%);
  }
  50% {
    -moz-transform: translate(20%, 12%);
         transform: translate(20%, 12%);
  }
  75% {
    -moz-transform: translate(15%);
         transform: translate(15%);
  }
}

@-o-keyframes gradientMove {
  0% {
    -o-transform: translate(0);
       transform: translate(0);
  }
  25% {
    -o-transform: translate(15%);
       transform: translate(15%);
  }
  50% {
    -o-transform: translate(20%, 12%);
       transform: translate(20%, 12%);
  }
  75% {
    -o-transform: translate(15%);
       transform: translate(15%);
  }
}

@keyframes gradientMove {
  0% {
    -webkit-transform: translate(0);
       -moz-transform: translate(0);
         -o-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(15%);
       -moz-transform: translate(15%);
         -o-transform: translate(15%);
            transform: translate(15%);
  }
  50% {
    -webkit-transform: translate(20%, 12%);
       -moz-transform: translate(20%, 12%);
         -o-transform: translate(20%, 12%);
            transform: translate(20%, 12%);
  }
  75% {
    -webkit-transform: translate(15%);
       -moz-transform: translate(15%);
         -o-transform: translate(15%);
            transform: translate(15%);
  }
}
@-webkit-keyframes gradientMove1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(10%, -10%);
            transform: translate(10%, -10%);
  }
  50% {
    -webkit-transform: translate(20%, -20%);
            transform: translate(20%, -20%);
  }
  75% {
    -webkit-transform: translate(10%, -10%);
            transform: translate(10%, -10%);
  }
}
@-moz-keyframes gradientMove1 {
  0% {
    -moz-transform: translate(0);
         transform: translate(0);
  }
  25% {
    -moz-transform: translate(10%, -10%);
         transform: translate(10%, -10%);
  }
  50% {
    -moz-transform: translate(20%, -20%);
         transform: translate(20%, -20%);
  }
  75% {
    -moz-transform: translate(10%, -10%);
         transform: translate(10%, -10%);
  }
}
@-o-keyframes gradientMove1 {
  0% {
    -o-transform: translate(0);
       transform: translate(0);
  }
  25% {
    -o-transform: translate(10%, -10%);
       transform: translate(10%, -10%);
  }
  50% {
    -o-transform: translate(20%, -20%);
       transform: translate(20%, -20%);
  }
  75% {
    -o-transform: translate(10%, -10%);
       transform: translate(10%, -10%);
  }
}
@keyframes gradientMove1 {
  0% {
    -webkit-transform: translate(0);
       -moz-transform: translate(0);
         -o-transform: translate(0);
            transform: translate(0);
  }
  25% {
    -webkit-transform: translate(10%, -10%);
       -moz-transform: translate(10%, -10%);
         -o-transform: translate(10%, -10%);
            transform: translate(10%, -10%);
  }
  50% {
    -webkit-transform: translate(20%, -20%);
       -moz-transform: translate(20%, -20%);
         -o-transform: translate(20%, -20%);
            transform: translate(20%, -20%);
  }
  75% {
    -webkit-transform: translate(10%, -10%);
       -moz-transform: translate(10%, -10%);
         -o-transform: translate(10%, -10%);
            transform: translate(10%, -10%);
  }
}
@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@-moz-keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@-o-keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.cont1 {
  background: url(../images/bj1.jpg) no-repeat center -32rem;
  -o-background-size: 130% auto;
     background-size: 130% auto;
  padding: 9.0625rem 0 10.75rem;
  position: relative;
}
@media (max-width: 768px) {
  .cont1 {
    padding: 5rem 0 4rem;
  }
}
.cont1 .as1a1 li {
  width: 24.375%;
  position: absolute;
  right: 13.5416666667%;
  top: 5rem;
  -webkit-animation: gradientMove 7s infinite alternate;
     -moz-animation: gradientMove 7s infinite alternate;
       -o-animation: gradientMove 7s infinite alternate;
          animation: gradientMove 7s infinite alternate;
}
@media (max-width: 768px) {
  .cont1 .as1a1 li {
    opacity: 0.5;
  }
}
.cont1 .as1a1 li img {
  width: 100%;
}
.cont1 .as1a1 li:nth-child(2) {
  width: 15.6770833333%;
  right: 35.5208333333%;
  top: 36rem;
  -webkit-animation: gradientMove1 5s infinite alternate;
     -moz-animation: gradientMove1 5s infinite alternate;
       -o-animation: gradientMove1 5s infinite alternate;
          animation: gradientMove1 5s infinite alternate;
}
@media (max-width: 768px) {
  .cont1 .as1a1 li:nth-child(2) {
    top: 12rem;
  }
}
.cont1 .as1a1 li:nth-child(3) {
  width: 5.46875%;
  right: 8.0729166667%;
  top: 29rem;
  -webkit-animation: gradientMove 4s infinite alternate;
     -moz-animation: gradientMove 4s infinite alternate;
       -o-animation: gradientMove 4s infinite alternate;
          animation: gradientMove 4s infinite alternate;
}
@media (max-width: 768px) {
  .cont1 .as1a1 li:nth-child(3) {
    top: 12rem;
  }
}
.cont1 .as1a1 li:nth-child(4) {
  width: 10.0520833333%;
  position: absolute;
  right: auto;
  top: auto;
  left: 14.0625%;
  bottom: 6.5rem;
  -webkit-animation: gradientMove 7s infinite alternate;
     -moz-animation: gradientMove 7s infinite alternate;
       -o-animation: gradientMove 7s infinite alternate;
          animation: gradientMove 7s infinite alternate;
}
@media (max-width: 768px) {
  .cont1 .as1a1 li:nth-child(4) {
    bottom: 0.5rem;
  }
}
.cont1 .as1a1 li:nth-child(4) img {
  width: 100%;
}
.cont1 .wh {
  position: relative;
  z-index: 1;
}
.cont1 .a1v1 {
  color: #333333;
  font-size: 2.85rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cont1 .a1v1 {
    font-size: 1.8rem;
    line-height: 1.25em;
  }
  .cont1 .a1v1 p {
    display: inline;
  }
}
.cont1 .a1v1 b {
  color: var(--color-zt);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  vertical-align: bottom;
}
.cont1 .a1v1 b::after {
  position: absolute;
  left: -100%;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shine 3s infinite;
     -moz-animation: shine 3s infinite;
       -o-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
.cont1 .a1v1 b:hover::after {
  left: 150%;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.cont1 .a1v2 {
  margin-top: 10.3125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 {
    margin-top: 3.5rem;
  }
}
.cont1 .a1v2 .title1 {
  position: sticky;
  top: -webkit-calc(var(--head-height) + 3rem);
  top: -moz-calc(var(--head-height) + 3rem);
  top: calc(var(--head-height) + 3rem);
  z-index: 1;
  padding-bottom: 25vw;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .title1 {
    position: static;
    padding-bottom: 0;
  }
}
.cont1 .a1v2 .a1v2c1 {
  margin-top: -webkit-calc(-25vw + 3.5rem);
  margin-top: -moz-calc(-25vw + 3.5rem);
  margin-top: calc(-25vw + 3.5rem);
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v2 .a1v2c1 li {
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(30px);
  padding: 2.8125rem 10%;
  position: sticky;
  top: -webkit-calc(var(--head-height) + 3rem);
  top: -moz-calc(var(--head-height) + 3rem);
  top: calc(var(--head-height) + 3rem);
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 li {
    position: static;
    border-radius: 1.25rem;
    padding: 1.75rem 7%;
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.07);
  }
}
.cont1 .a1v2 .a1v2c1 li + li {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 li + li {
    margin-top: 1.85rem;
  }
}
.cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 {
  width: 43.3436532508%;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem;
  }
}
.cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 .tit {
  color: #3C3D3D;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.5em;
}
 .cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 .tit span{
      font-size: 1.35rem;
      color: var(--color-zt);
      margin-top: 0.5rem;
      display: block;    line-height: 1.35em;
 }
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 .tit {
    font-size: 1.5rem;
  }
  .cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 .tit br {
    display: none;
  }
}
.cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 .txt {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c1 .txt {
    font-size: 1.125rem;
    line-height: 1.65em;
    margin: 0.5rem 0 1rem;
  }
}
.cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c2 {
  width: 45.8204334365%;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c2 {
    width: 100%;
  }
}
.cont1 .a1v2 .a1v2c1 li .a1v2c1d1 .a1v2c1d1c2 img {
  width: 100%;
}
.a1v3 {
  margin-top: 4.0625rem;
  padding-top: 3.125rem;
  padding-bottom: 10rem;
  border-radius: 0 0 4.375rem 4.375rem;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
 .a1v3 {
    margin-top: 2.0625rem;
    padding-top: 1.75rem;
    padding-bottom: 0;
  }
}
.a1v3 .a1v3c2 {
  border-radius: 2.5rem;
  overflow: hidden;
  margin-top: 5.0625rem;
  box-shadow: 0 0.5rem 1rem 0px rgba(0, 0, 0, 0.025);
}
@media (max-width: 768px) {
  .a1v3 .a1v3c2 {
    border-radius: 1.25rem;
    margin-top: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  }
}
.cont1 .a1v3 .a1v3c2 li {
  background: #fff;
  padding: 0 6.125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li {
    padding: 0 6%;
  }
}
.cont1 .a1v3 .a1v3c2 li:nth-child(1) {
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:nth-child(1) dl {
    gap: 0.65rem 0;
    padding: 1rem 0;
  }
}
.cont1 .a1v3 .a1v3c2 li:nth-child(1) dl dt {
  color: #3C3D3D;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1.75em 0;
  width: 15%;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:nth-child(1) dl dt {
    width: 33.3333333333%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
  }
}
.cont1 .a1v3 .a1v3c2 li:nth-child(1) dl dt:nth-child(1) {
  width: 20%;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:nth-child(1) dl dt:nth-child(1) {
    width: 33.3333333333%;
  }
}
.cont1 .a1v3 .a1v3c2 li:nth-child(1) dl dt:nth-child(n+4) {
  text-align: center;
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.85em 0;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl {
    gap: 0.75rem 0;
  }
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd {
  width: 15%;
  color: #3C3D3D;
  font-size: 1.25rem;
  line-height: 1.5em;
  padding-right: 1rem;
}
.cont1 .a1v3 .a1v3c2 li:nth-child(1) dl dt:nth-child(2){
    width: 18%;
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd:nth-child(2){
     width: 18%;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd {
    width: 33.3333333333%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
  }
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd:nth-child(1) {
  width: 20%;
  font-size: 1.75rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd:nth-child(1) {
    width: 33.3333333333%;
    font-size: 1.35rem;
  }
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd:last-child {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd:last-child {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd .ste_case {
  height: 1.75rem;
  background-color: rgba(235, 97, 70, 0.1);
  border-radius: 1.875rem;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd .ste_case {
    height: 1.25rem;
  }
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd .ste_case::after {
  content: "";
  width: var(--width);
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
  background: -webkit-linear-gradient(left, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  background: -moz-linear-gradient(left, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  background: -o-linear-gradient(left, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  background: linear-gradient(90deg, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  height: 100%;
  border-radius: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd .ste_case span {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 2;
}
.cont1 .a1v3 .a1v3c2 li:not(:nth-child(1)) dl dd .ste_case span:nth-child(2) {
  border-left: 0.25rem solid #fff;
  border-right: 0.25rem solid #fff;
}
.cont1 .a1v3 .a1v3c2 li:last-child dl {
  border-bottom: none;
  padding-bottom: 3.35rem;
}
.cont1 .a1v3.scroll-on .a1v3c2 li dl dd .ste_case::after {
  -webkit-transform-origin: 0%;
     -moz-transform-origin: 0%;
      -ms-transform-origin: 0%;
       -o-transform-origin: 0%;
          transform-origin: 0%;
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.cont2 {
  position: relative;
  z-index: 2;
}
.cont2 .title1 {
  width: 90.375%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .cont2 .title1 > .tit {
    font-size: 1.6rem;
    line-height: 1.35em;
  }
}
.cont2 .title1 > .tit .char:nth-child(1) {
  /*padding-left: 2em;*/
}
.cont2 .a2v1 {
  margin-top: 5.25rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 {
    margin-top: 1.95rem;
  }
}
.cont2 .a2v1 .a2b1 {
  width: 33.75%;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2b1 {
    width: 100%;
  }
}
.cont2 .a2v1 .a2b1 .img {
  border-radius: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2b1 .img {
    border-radius: 1.25rem;
  }
}
.cont2 .a2v1 .a2b1 .img img {
  width: 100%;
}
.cont2 .a2v1 .a2b2 {
  width: 60.625%;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 {
    width: 100%;
    margin-top: 1.75rem;
  }
}
.cont2 .a2v1 .a2b2 .p1 {
  color: #3C3D3D;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 1.4375rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 .p1 {
    font-size: 1.5rem; line-height: 1.35em;
  }
}
.cont2 .a2v1 .a2b2 .img {
  border-radius: 2.5rem;
  overflow: hidden;
  margin-top: 5.625rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 .img {
    border-radius: 1.25rem;
    margin-top: 2.25rem;
  }
}
.cont2 .a2v1 .a2b2 .img img {
  width: 100%;
}

.cont3 {
  padding: 7.3125rem 0 10rem;
  border-radius: 0 0 4.375rem 4.375rem;
  background: -webkit-linear-gradient(top, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  background: -moz-linear-gradient(top, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  background: -o-linear-gradient(top, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 3rem 0 2.65rem;
    border-radius: 0 0 2rem 2rem;
  }
}
.cont3 .a3-img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cont3 .a3-img img {
  width: 100%;
}
.cont3 .as1a1 li {
  width: 12.65625%;
  position: absolute;
  right: 31.9270833333%;
  top: 13rem;
  -webkit-animation: gradientMove 7s infinite alternate;
     -moz-animation: gradientMove 7s infinite alternate;
       -o-animation: gradientMove 7s infinite alternate;
          animation: gradientMove 7s infinite alternate;
}
.cont3 .as1a1 li img {
  width: 100%;
}
.cont3 .as1a1 li:nth-child(2) {
  width: 9.0625%;
  position: absolute;
  right: auto;
  top: auto;
  left: 14.84375%;
  bottom: 5.8125rem;
  -webkit-animation: gradientMove 7s infinite alternate;
     -moz-animation: gradientMove 7s infinite alternate;
       -o-animation: gradientMove 7s infinite alternate;
          animation: gradientMove 7s infinite alternate;
}
.cont3 .as1a1 li:nth-child(2) img {
  width: 100%;
}
.cont3 .wh {
  position: relative;
  z-index: 1;
}
.cont3 .a3_list1 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 {
    margin-top: 1.5rem;
  }
}
.cont3 .a3_list1 li {
  margin-top: 2.75rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li {
    margin-top: 1.85rem;
  }
}
.cont3 .a3_list1 li a.imgax {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2.5rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
  overflow: hidden;
  box-shadow: 0 0 1rem 0px rgba(0, 0, 0, 0.05);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax {
    border-radius: 1.25rem;
    padding: 1.65rem;
  }
}
.cont3 .a3_list1 li a.imgax .wehzxa {
  width: 60.4859335038%;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax .wehzxa {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem;
  }
}
.cont3 .a3_list1 li a.imgax .wehzxa .data {
  width: 26.6384778013%;
  text-align: center;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax .wehzxa .data {
    display: none;
  }
}
.cont3 .a3_list1 li a.imgax .wehzxa .data b {
  font-size: 5.25rem;
  line-height: 1em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ADACAC;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  color: transparent;
}
.cont3 .a3_list1 li a.imgax .wehzxa .data p {
  color: #ADACAC;
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 600;
}
.cont3 .a3_list1 li a.imgax .wehzxa .cont-p {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6.5%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax .wehzxa .cont-p {
    border-left: none;
    padding-left: 0;
  }
}
.cont3 .a3_list1 li a.imgax .wehzxa .cont-p .tit {
  color: #3C3D3D;
  font-size: 1.6875rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax .wehzxa .cont-p .tit {
    font-size: 1.35rem;
  }
}
.cont3 .a3_list1 li a.imgax .wehzxa .cont-p .p1 {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.125rem;
  line-height: 1.65em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax .wehzxa .cont-p .p1 {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}
.cont3 .a3_list1 li a.imgax .img {
  width: 32.6086956522%;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont3 .a3_list1 li a.imgax .img {
    width: 100%;
    border-radius: 1.125rem;
  }
}
.cont3 .a3_list1 li a.imgax .img img {
  width: 100%;
}
.cont3 .a3_list1 li a.imgax:hover .wehzxa .data b {
  color: var(--color-zt);
  -webkit-text-stroke-width: 0;
}
.cont3 .a3_list1 li a.imgax:hover .wehzxa .data p {
  color: var(--color-zt);
}

.cont4 {
  background: url(../images/bj4.jpg) no-repeat center -12rem;
  -o-background-size: cover;
     background-size: cover;
  margin-top: -5rem;
  position: relative;
}
@media (max-width: 768px) {
  .cont4 {
    margin-top: -2rem;
  }
}
@media (max-width: 768px) {
  .cont4 .a4v1 {
    padding-bottom: 3rem;
  }
}
.cont4 .a4v1 .img {
  width: 54.25%;
  margin-left: -4%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .img {
    width: 60%;
    margin: 0 auto;
    z-index: 0;
  }
}
.cont4 .a4v1 .img img {
  width: 100%;
}
.cont4 .a4v1 .cont-p {
  width: 43.75%;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .cont-p {
    width: 100%;
  }
}
.cont4 .a4v1 .cont-p .p1 {
  color: #333333;
  font-size: 2.125rem;
  line-height: 1.5em;
  margin: 0.75rem 0 1.65rem;
}
@media (max-width: 768px) {
  .cont4 .a4v1 .cont-p .p1 {
    font-size: 1.35rem;
    margin: 0.75rem 0 1.5rem;
  }
}
.cont4 .foot-fot {
  margin-top: -7.375rem;
}
@media (max-width: 990px) {
  .cont4 .foot-fot {
    margin-top: 0;
  }
}

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

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

.cursor-dot {
  position: fixed;
  top: 50%;
  left: 50%;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(235, 97, 70, 0.7);
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.5s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -o-transform 0.3s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -moz-transform 0.3s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out, width 0.5s, height 0.5s, background-color 0.5s ease, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.foot-fot {
  position: relative;
  padding: 0 var(--cbasta) 4.375rem;
  z-index: 1;
}
@media (max-width: 990px) {
  .foot-fot {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 0;
  }
}
.foot-fot .as1a1 li {
  width: 13.4375%;
  position: absolute;
  right: 11.9270833333%;
  top: 3.6875rem;
  -webkit-animation: gradientMove 7s infinite alternate;
     -moz-animation: gradientMove 7s infinite alternate;
       -o-animation: gradientMove 7s infinite alternate;
          animation: gradientMove 7s infinite alternate;
  z-index: -1;
}
.foot-fot .as1a1 li img {
  width: 100%;
}
.foot-fot .wejsaa-a {
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 0 6.5%;
}
@media (max-width: 768px) {
  .foot-fot .wejsaa-a {
    padding: 0 var(--cbasta);
  }
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .fo-a1 .dsecd {
  margin-top: 1.5rem;
}
.foot-fot .foota1 .fo-a1 .dsecd .p1 + .p1 {
  margin-top: 0.5rem;
}
.foot-fot .foota1 .fo-a1 .dsecd .p1 i {
  display: block;
  font-size: 0;
  width: 1.25rem;
  margin-right: 0.65rem;
}
.foot-fot .foota1 .fo-a1 .dsecd .p1 i img {
  width: 100%;
}
.foot-fot .foota1 .fo-a1 .dsecd .p1 p {
  color: #3C3D3D;
  font-size: 1.25rem;
  line-height: 1.5em;
}
.foot-fot .foota1 .foot-tit {
  color: #3C3D3D;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 600;
}
.foot-fot .foota1 .dseca {
  margin-top: 1.5em;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.125rem;
  line-height: 1.9em;
  position: relative;
  padding-left: 1em;
  font-weight: 500;
}
.foot-fot .foota1 .dseca > a::before {
  content: "\e696";
  font-size: 1rem;
  font-family: "iconfont";
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1em;
  position: absolute;
  left: 0;
  top: 43%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #EB6146;
}
.foot-fot .foota1 .dseca > a + a {
  margin-top: 0.75rem;
}
.foot-fot .foota1 .dseca > a:hover {
  background: -webkit-linear-gradient(left, #EB6146 16%, #E22C0F 100%);
  background: -moz-linear-gradient(left, #EB6146 16%, #E22C0F 100%);
  background: -o-linear-gradient(left, #EB6146 16%, #E22C0F 100%);
  background: linear-gradient(90deg, #EB6146 16%, #E22C0F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.foot-fot .foota1 .dseca > a:hover::before {
  color: #EB6146;
  -webkit-text-fill-color: initial;
}
.foot-fot .foota1 .dlogo {
  padding: 1.25rem 0;
}
.foot-fot .foota1 .dlogo img {
  height: 2.8125rem;
}
.foot-fot .foota1 .foota1b1 {
  padding: 4.375rem 0 0;
}
.foot-fot .foota1 .foota1b1 .dmsga {
  margin-top: 1.5rem;
}
.foot-fot .foota1 .foota1b1 .dmsga form {
  margin-top: 1rem;
  width: 23.5625rem;
  border-radius: 3.75rem;
  background: #FFF;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.05);
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt {
  position: relative;
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  line-height: 2.5625rem;
  border-radius: 1.875rem;
  padding: 0.4375rem;
  color: #333;
  text-indent: 1.5em;
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: rgba(60, 61, 61, 0.7);
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: rgba(60, 61, 61, 0.7);
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: rgba(60, 61, 61, 0.7);
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(60, 61, 61, 0.7);
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt button {
  position: absolute;
  right: 0.4375rem;
  top: 0.4375rem;
  border: none;
  width: 2.5625rem;
  height: 2.5625rem;
  background: var(--color-zt);
  color: #fff;
  border-radius: 50%;
}
.foot-fot .foota1 .foota1b1 .dmsga form .msg-a1 .inpt button i {
  font-size: 1.25rem;
}
.foot-fot .foota1 .foota1b1 .fx_asa .social-share {
  margin-top: 1rem;
}
.foot-fot .foota1 .foota1b1 .fx_asa .social-share a {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  border: none;
  color: #3C3D3D;
  font-size: 1.25rem;
  background: #fff;
}
.foot-fot .foota1 .foota1b1 .fx_asa .social-share a:hover {
  background: var(--color-zt);
  color: #fff;
}
.foot-fot .foota2 {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.65em 0;
}
@media (max-width: 990px) {
  .foot-fot .foota2 {
    border-top: none;
    padding: 1.25em 0;
  }
}
@media (max-width: 768px) {
  .foot-fot .foota2 {
    padding: 1em 0;
  }
}
.foot-fot .foota2 a {
  color: rgba(60, 61, 61, 0.7);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.foot-fot .foota2 a:hover {
  color: var(--color-zt);
}
.foot-fot .foota2 p + p {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span {
  color: rgba(60, 61, 61, 0.1);
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

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

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

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}
@media (max-width: 768px) {
  .zd_erha .aat_list {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 70%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background: rgba(63, 63, 63, 0.1);
}
.zd_erha .aat_list li > a {
  display: block;
  width: 100%;
  position: relative;
  background: var(--color-zt);
  width: 3.25rem;
  height: 3.25rem;
  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: 1.875rem;
}
.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*/
.loadmore-nodata {
  margin: 0 auto 9em;
}

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

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

.pagination > li {
  display: inline;
}

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

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

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

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

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

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

.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

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

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

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

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

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

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

.pager li {
  display: inline;
}

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

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

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

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

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

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

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}
@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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  overflow: hidden;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: var(--color-zt);
  font: 500 1rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Noto Sans SC";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Noto Sans SC";
  padding: 1rem 0 3rem;
}
.shzr-content strong {
  color: #333;
}
.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
.nbanner {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
@media (max-width: 768px) {
  .nbanner {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}
.nbanner .img {
  width: 100%;
  font-size: 0;
}
.nbanner .img img {
  width: 100%;
  aspect-ratio: 1920/920;
  -o-object-fit: cover;
     object-fit: cover;
}
.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 9;
  top: 52%;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font-size: 5.25rem;
  font-weight: 600;
  line-height: 1.25em;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p2 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.25em;
}
.nbanner .nbanner-wen1 .banner-cont .p2 i {
  width: 1.5rem;
  display: inline-block;
  -webkit-transform: translateY(-2.65rem);
     -moz-transform: translateY(-2.65rem);
      -ms-transform: translateY(-2.65rem);
       -o-transform: translateY(-2.65rem);
          transform: translateY(-2.65rem);
  margin-left: 0rem;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  line-height: 1em;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1.8rem;
  }
}
.nbanner .mbx-cont {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1rem;
}
.nbanner .mbx-cont .ajhhsd {
  padding: 0.45rem 0;
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd a {
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
  left: 0;
  top: var(--head-height);
  width: 100%;
  z-index: 9;
}
@media (max-width: 990px) {
  .n_mbx {
    top: 60px;
  }
}
.n_mbx .n_src {
  font-size: 0;
  text-align: center;
  overflow-x: auto;
}
@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: 3.75rem;
}
.n_mbx .n_src li a {
  display: block;
  color: #666666;
  font: 500 1rem/3.125rem "Noto Sans SC";
  position: relative;
  text-transform: uppercase;
  padding: 0.85rem 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.n_mbx .n_src li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-zt);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
}
@media (max-width: 768px) {
  .n_mbx .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}
.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  color: var(--color-zt);
}
.n_mbx .n_src li:hover a::after, .n_mbx .n_src li.active a::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

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

@-webkit-keyframes scale2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

#abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
  height: var(--head-height);
  margin-top: -webkit-calc(var(--head-height) * -1);
  margin-top: -moz-calc(var(--head-height) * -1);
  margin-top: calc(var(--head-height) * -1);
}
@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.abt-contentx {
  background: url(../images/bj5.jpg) no-repeat center top;
  -o-background-size: 105% 100%;
     background-size: 105% 100%;
  margin-top: -5.875rem;
  padding-top: 5.875rem;
  position: relative;
  z-index: 2;
}

.abt-cont1 {
  padding: 9.0625rem 0 1rem;
}
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 2.5rem 0;
  }
}
.abt-cont1 .js-a1v1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: #333333;
  font-size: 3.2rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .abt-cont1 .js-a1v1 {
    font-size: 2rem;
    line-height: 1.45em;
  }
  .abt-cont1 .js-a1v1 br {
    display: none;
  }
  .abt-cont1 .js-a1v1 p {
    display: inline;
  }
}
.abt-cont1 .js-a1v1 b {
  color: var(--color-zt);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .abt-cont1 .js-a1v1 b {
    display: inline;
  }
}
.abt-cont1 .js-a1v1 b::after {
  position: absolute;
  left: -100%;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shine 3s infinite;
     -moz-animation: shine 3s infinite;
       -o-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
@media (max-width: 768px) {
  .abt-cont1 .js-a1v1 b::after {
    display: none;
  }
}
.abt-cont1 .js-a1v1 b:hover::after {
  left: 150%;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.abt-cont1 .abt-v1 {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 {
    margin-top: 1rem;
  }
}
.abt-cont1 .abt-v1 .abt-b1 {
  width: 47.625%;
  position: relative;
  /* 隐藏定义用的 SVG，使用 visibility 确保引用有效 */
  /* 初始状态：图片 b 透明 */
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b1 {
    width: 100%;
    margin: 0 auto;
  }
}
.abt-cont1 .abt-v1 .abt-b1 .slideshow-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.abt-cont1 .abt-v1 .abt-b1 #svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
.abt-cont1 .abt-v1 .abt-b1 .img-container {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: url(#myClipPath);
          clip-path: url(#myClipPath);
}
.abt-cont1 .abt-v1 .abt-b1 .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.abt-cont1 .abt-v1 .abt-b1 .img-container img.b {
  opacity: 0;
}
.abt-cont1 .abt-v1 .abt-b2 {
  width: 43.625%;
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.25rem;
  line-height: 1.65em;
  text-align: justify;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-v1 .abt-b2 {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}
.abt-cont1 .abt-v1 .abt-b2 p + p {
  margin-top: 0.65em;
}
.abt-cont1 .abt-v1 .abt-b2 strong {
  color: #EB6146;
  font-weight: 500;
}

.abt-cont2 {
  padding: 7.5rem 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) -22.3%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) -22.3%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) -22.3%, rgba(255, 255, 255, 0.94) 77.7%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -22.3%, rgba(255, 255, 255, 0.94) 77.7%);
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
}
@media (max-width: 768px) {
  .abt-cont2 {
    padding: 2.5rem 0;
  }
}
.abt-cont2 .abt-a2_list1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem 5rem;
  margin-top: 3.125rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.35rem;
  }
}
.abt-cont2 .abt-a2_list1 li {
  text-align: center;
}
.abt-cont2 .abt-a2_list1 li i {
  display: block;
  font-size: 0;
  border-radius: 50%;
  width: 70%;
  margin: 0 auto;
}
.abt-cont2 .abt-a2_list1 li i img {
  width: 100%;
}
.abt-cont2 .abt-a2_list1 li .wenata {
  color: #333333;
  font-weight: 600;
}
.abt-cont2 .abt-a2_list1 li .wenata h2 {
  font-size: 2rem;
  line-height: 1.25em;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 li .wenata h2 {
    font-size: 1.35rem;
  }
}
.abt-cont2 .abt-a2_list1 li .wenata .p {
  font-size: 1.5rem;
  line-height: 1.65em;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 li .wenata .p {
    font-size: 1.125rem;
    margin-top: 0.25rem;
  }
}

.abt-cont3 {
  padding: 5.75rem 0 10.625rem;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 2.5rem 0 3rem;
  }
}
.abt-cont3 .abt-a3v1 {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2.5rem;
  padding: 3.75rem 3.125rem;
  margin-top: 4.125rem;
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 {
    border-radius: 1.25rem;
    padding: 1.65rem 1.85rem;
    margin-top: 1.65rem;
  }
}
.abt-cont3 .abt-a3v1 .mySwiper1 .swiper-slide .img img {
  width: 100%;
}

.abt1-body {
  overflow: visible;
  background: #fff;
}

.abt-cont4 {
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) {
  .abt-cont4::before {
    content: "";
    display: block;
    position: absolute;
    top: -10%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../images/bj5.jpg) no-repeat center top;
    -o-background-size: 105% auto;
       background-size: 105% auto;
  }
  .abt-cont4::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -20%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../images/bj5.jpg) no-repeat center bottom;
    -o-background-size: 105% auto;
       background-size: 105% auto;
  }
  .abt-cont4 .title1 {
    text-align: center;
    -webkit-flex-flow: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: sticky;
    top: 45%;
    margin-top: 25%;
  }
  .abt-cont4 .abt-a4v1 {
    height: 500vh;
  }
  .abt-cont4 .avt_s4list1 {
    aspect-ratio: 9/10;
    -o-object-fit: cover;
       object-fit: cover;
    width: 34%;
    position: relative;
    top: 50vh;
    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%);
  }
}
@media (min-width: 767px) and (max-width: 768px) {
  .abt-cont4 .avt_s4list1 {
    width: 80%;
    aspect-ratio: 9/12;
  }
}
@media (min-width: 767px) {
  .abt-cont4 .avt_s4list1 li {
    will-change: transform;
    position: absolute;
    inset: 0%;
  }
  .abt-cont4 .avt_s4list1 li .a_bolck {
    -o-object-fit: cover;
       object-fit: cover;
    will-change: transform;
    border-radius: 2%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(60vw);
       -moz-transform: translate(60vw);
        -ms-transform: translate(60vw);
         -o-transform: translate(60vw);
            transform: translate(60vw);
  }
  .abt-cont4 .avt_s4list1 li.hide-mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .abt-cont4 {
    padding-bottom: 2.65rem;
  }
  .abt-cont4 .title1 {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .abt-cont4 .avt_s4list1 li + li {
    margin-top: 1.5rem;
  }
}
.abt-cont4 .avt_s4list1 li .a_bolck {
  background: #fff;
  border-radius: 1.25rem;
  padding: 5%;
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.01);
}
@media (max-width: 768px) {
  .abt-cont4 .avt_s4list1 li .a_bolck {
    box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.07);
    border-radius: 1rem;
    padding: 4%;
  }
}
.abt-cont4 .avt_s4list1 li .a_bolck i {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
.abt-cont4 .avt_s4list1 li .a_bolck i img {
  width: 100%;
}
.abt-cont4 .avt_s4list1 li .a_bolck .tit {
  color: var(--color-zt);
  font-size: 2.5rem;
  line-height: 1.25em;
  font-weight: 700;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .abt-cont4 .avt_s4list1 li .a_bolck .tit {
    font-size: 2rem;
  }
}
.abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 {
  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;
  font-weight: 600;
  margin-top: 0.75rem;
}
.abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 + .p1 {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 + .p1 {
    margin-top: 1rem;
  }
}
.abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 b {
  color: var(--color-zt);
  font-size: 1.25rem;
  width: 4.375rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 b {
    font-size: 1.125rem;
  }
}
.abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 p {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5em;
  width: -webkit-calc(100% - 4.375rem);
  width: -moz-calc(100% - 4.375rem);
  width: calc(100% - 4.375rem);
}
@media (max-width: 768px) {
  .abt-cont4 .avt_s4list1 li .a_bolck .cont-p .p1 p {
    font-size: 1rem;
  }
}

.js-content {
  background: url(../images/bj1.jpg) no-repeat center top;
  -o-background-size: 105% 80%;
     background-size: 105% 80%;
  margin-top: -5.875rem;
  padding-top: 5.875rem;
  position: relative;
  z-index: 2;
}

.abt-body {
  overflow: visible;
}

.js-cont1 {
  padding: 8.875rem 0 7.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .js-cont1 {
    padding: 2.5rem 0;
  }
}
.js-cont1 .js-a1v1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: #333333;
  font-size: 3.2rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v1 {
    font-size: 2rem;
    line-height: 1.45em;
  }
  .js-cont1 .js-a1v1 br {
    display: none;
  }
  .js-cont1 .js-a1v1 p {
    display: inline;
  }
}
.js-cont1 .js-a1v1 b {
  color: var(--color-zt);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v1 b {
    display: inline;
  }
}
.js-cont1 .js-a1v1 b::after {
  position: absolute;
  left: -100%;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shine 3s infinite;
     -moz-animation: shine 3s infinite;
       -o-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v1 b::after {
    display: none;
  }
}
.js-cont1 .js-a1v1 b:hover::after {
  left: 150%;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.js-cont1 .js-a1v2 {
  margin-top: 4.25rem;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v2 {
    margin-top: 1.35rem;
  }
}
.js-cont1 .js-a1v2 .js-a1b1 {
  width: 53.75%;
  background: #fff;
  border-radius: 2.5rem;
  padding: 0 5.3125%;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v2 .js-a1b1 {
    width: 100%;
    border-radius: 1.125rem;
    padding: 0 8%;
  }
}
.js-cont1 .js-a1v2 .js-a1b1 img {
  width: 100%;
}
.js-cont1 .js-a1v2 .js-a1b2 {
  width: 39.375%;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v2 .js-a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.js-cont1 .js-a1v2 .js-a1b2 .p1 {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v2 .js-a1b2 .p1 {
    font-size: 1.125rem;
    line-height: 1.75em;
  }
}
.js-cont1 .js-a1v2 .js-a1b2 .p1 p + p {
  margin-top: 0.5em;
}
.js-cont1 .js-a1v2 .js-a1b2 .more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .js-cont1 .js-a1v2 .js-a1b2 .more-b {
    margin-top: 1.25rem;
  }
}

.js-cont2 {
  padding-bottom: 6.5625rem;
  position: relative;
}
.js-cont2 .as1a1 li {
  position: absolute;
  opacity: 0.65;
}
.js-cont2 .as1a1 li:nth-child(1) {
  width: 9.375%;
  left: 18.0208333333%;
  top: 10rem;
  -webkit-animation: gradientMove1 5s infinite alternate;
     -moz-animation: gradientMove1 5s infinite alternate;
       -o-animation: gradientMove1 5s infinite alternate;
          animation: gradientMove1 5s infinite alternate;
}
@media (max-width: 768px) {
  .js-cont2 .as1a1 li:nth-child(1) {
    top: 7rem;
    width: 14%;
  }
}
.js-cont2 .as1a1 li:nth-child(2) {
  width: 9.375%;
  left: 34.8958333333%;
  top: 50%;
  -webkit-animation: gradientMove 4s infinite alternate;
     -moz-animation: gradientMove 4s infinite alternate;
       -o-animation: gradientMove 4s infinite alternate;
          animation: gradientMove 4s infinite alternate;
}
@media (max-width: 768px) {
  .js-cont2 .as1a1 li:nth-child(2) {
    top: 53%;
    width: 13%;
  }
}
@media (max-width: 768px) {
  .js-cont2 {
    padding-bottom: 2.5rem;
  }
}
.js-cont2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vw;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 65%, #FFF 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 65%, #FFF 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFF 65%, #FFF 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 65%, #FFF 100%);
  border-bottom-right-radius: var(--borderRadius);
  border-bottom-left-radius: var(--borderRadius);
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 768px) {
  .js-cont2::after {
    height: 100%;
  }
}
.js-cont2 .js-a2sort1 {
  position: sticky;
  top: var(--head-height);
  left: 0;
  gap: 1rem 10%;
  z-index: 5;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2sort1 {
    gap: 0.65rem 5%;
  }
}
.js-cont2 .js-a2sort1 li {
  text-align: center;
}
.js-cont2 .js-a2sort1 li a.ablock {
  color: #3C3D3D;
  position: relative;
  display: block;
  cursor: pointer;
  padding: 1rem 0;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-cont2 .js-a2sort1 li a.ablock .tit {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .js-cont2 .js-a2sort1 li a.ablock .tit {
    font-size: 1.75rem;
  }
}
.js-cont2 .js-a2sort1 li a.ablock .p1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2sort1 li a.ablock .p1 {
    font-size: 1rem;
  }
}
.js-cont2 .js-a2sort1 li a.ablock i {
  display: block;
  font-size: 0;
  width: 2.3125rem;
  position: absolute;
  left: 50%;
  top: -webkit-calc(100% - 1rem);
  top: -moz-calc(100% - 1rem);
  top: calc(100% - 1rem);
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2sort1 li a.ablock i {
    width: 1.5rem;
  }
}
.js-cont2 .js-a2sort1 li a.ablock i img {
  width: 100%;
}
.js-cont2 .js-a2sort1 li.on a.ablock, .js-cont2 .js-a2sort1 li:hover a.ablock {
  color: var(--color-zt);
}
.js-cont2 .js-a2sort1 li.on a.ablock i, .js-cont2 .js-a2sort1 li:hover a.ablock i {
  opacity: 1;
}
.js-cont2 .js-a2list1 {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 {
    margin-top: 2rem;
  }
}
.js-cont2 .js-a2list1 li {
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(30px);
  padding: 2.8125rem 10%;
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 li {
    border-radius: 1.25rem;
    padding: 1.75rem 7%;
  }
}
.js-cont2 .js-a2list1 li + li {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 li + li {
    margin-top: 1.85rem;
  }
}
.js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 {
  width: 43.3436532508%;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem;
  }
}
.js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 .tit {
  color: #3C3D3D;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 .tit {
    font-size: 1.5rem;
  }
  .js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 .tit br {
    display: none;
  }
}
.js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 .txt {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c1 .txt {
    font-size: 1.125rem;
    line-height: 1.65em;
    margin: 0.5rem 0 1rem;
  }
}
.js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c2 {
  width: 45.8204334365%;
}
@media (max-width: 768px) {
  .js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c2 {
    width: 100%;
  }
}
.js-cont2 .js-a2list1 li .a1v2c1d1 .a1v2c1d1c2 img {
  width: 100%;
}
.js-cont2.scroll-on .js-a2sort1 {
  backdrop-filter: blur(1.5625vw);
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.js-cont2.scroll-on .js-a2sort1 li a .tit {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .js-cont2.scroll-on .js-a2sort1 li a .tit {
    font-size: 1.75rem;
  }
}
.js-cont2.scroll-on .js-a2sort1 li a .p1 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .js-cont2.scroll-on .js-a2sort1 li a .p1 {
    font-size: 1rem;
    pointer-events: none;
    position: absolute;
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
        -ms-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
  }
}
.js-cont2.scroll-on .js-a2sort1 li a i {
  display: none;
}

.js-cont3 {
  background: url(../images/bja1.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.375rem 0 9.25rem;
  margin-top: -webkit-calc(var(--borderRadius) * -1);
  margin-top: -moz-calc(var(--borderRadius) * -1);
  margin-top: calc(var(--borderRadius) * -1);
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
  overflow: hidden;
}
@media (max-width: 768px) {
  .js-cont3 {
    padding: 6rem 0 4rem;
  }
}
.js-cont3 .js-a3v1 {
  padding: 0 10%;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .js-cont3 .js-a3v1 {
    padding: 0;
    gap: 1rem;
  }
}
.js-cont3 .js-a3v1 .js-a3b1 {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .js-cont3 .js-a3v1 .js-a3b1 {
    width: 100%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.js-cont3 .js-a3v1 .js-a3b1 .p1 {
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1.5em;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .js-cont3 .js-a3v1 .js-a3b1 .p1 {
    font-size: 1.25rem;
  }
}

.abt-body {
  background: #F9F9F9;
}
@media (max-width: 768px) {
  .abt-body {
    background: transparent;
  }
}
.abt-body .foot-fot {
  margin-top: 3.625rem;
}
@media (max-width: 768px) {
  .abt-body .foot-fot {
    margin-top: 1rem;
  }
}

.abt-body .nbanner {
  z-index: 3;
}

.js-cont3-avt {
  position: relative;
}
.js-cont3-avt .js-cont3 {
  grid-template-rows: auto auto 1fr auto;
  -webkit-transform: translate3d(0, -webkit-calc(-50% + 50% * var(--progress)), 0);
     -moz-transform: translate3d(0, -moz-calc(-50% + 50% * var(--progress)), 0);
          transform: translate3d(0, calc(-50% + 50% * var(--progress)), 0);
}

.yf-content {
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
  overflow: hidden;
  background-color: #fff;
}

.yf-cont1 {
  padding: 7.875rem 0 11.6875rem;
}
@media (max-width: 768px) {
  .yf-cont1 {
    padding: 2.5rem 0 3.5rem;
  }
}
.yf-cont1 .yf-a1_list1 li {
  border-radius: 2.5rem;
  background: #FFF;
  padding: 4rem 5%;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
     -moz-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  -moz-transition: all 1.5s;
  transition: all 1.5s;
  box-shadow: 0px 0px 1.5rem 0px rgba(0, 0, 0, 0.02);
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li {
    border-radius: 1.25rem;
    padding: 2rem 5% 3.75rem;
  }
}
.yf-cont1 .yf-a1_list1 li + li {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li + li {
    margin-top: 1.75rem;
  }
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li dl {
    gap: 0.75rem 0;
  }
}
.yf-cont1 .yf-a1_list1 li dl dd {
  width: 16%;
  color: #3C3D3D;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li dl dd {
    width: 33.3333333333%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    text-align: center;
    padding: 0;
    font-size: 1.125rem;
  }
}
.yf-cont1 .yf-a1_list1 li dl dd:nth-child(1) {
  width: 20%;
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li dl dd:nth-child(1) {
    width: 33.3333333333%;
    font-size: 1.5rem;
  }
}
.yf-cont1 .yf-a1_list1 li dl dd:last-child {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li dl dd:last-child {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.yf-cont1 .yf-a1_list1 li dl dd .ste_case {
  height: 1.75rem;
  background-color: rgba(235, 97, 70, 0.1);
  border-radius: 1.875rem;
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li dl dd .ste_case {
    height: 1.25rem;
  }
}
.yf-cont1 .yf-a1_list1 li dl dd .ste_case::after {
  content: "";
  width: var(--width);
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
  background: -webkit-linear-gradient(left, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  background: -moz-linear-gradient(left, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  background: -o-linear-gradient(left, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  background: linear-gradient(90deg, rgba(235, 97, 70, 0) 0%, #EB6146 100%);
  height: 100%;
  border-radius: inherit;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
}
.yf-cont1 .yf-a1_list1 li dl dd .ste_case span {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 2;
}
.yf-cont1 .yf-a1_list1 li dl dd .ste_case span p {
  position: absolute;
  left: 0;
  top: 100%;
  text-align: center;
  width: 100%;
  font-size: 1rem;
  color: #3C3D3D;
  line-height: 1.25em;
  margin-top: 0.85rem;
}
@media (max-width: 768px) {
  .yf-cont1 .yf-a1_list1 li dl dd .ste_case span p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}
.yf-cont1 .yf-a1_list1 li dl dd .ste_case span:nth-child(2) {
  border-left: 0.25rem solid #fff;
  border-right: 0.25rem solid #fff;
}
.yf-cont1 .yf-a1_list1 li.scroll-on {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
}
.yf-cont1 .yf-a1_list1 li.scroll-on dl dd .ste_case::after {
  -webkit-transform-origin: 0%;
     -moz-transform-origin: 0%;
      -ms-transform-origin: 0%;
       -o-transform-origin: 0%;
          transform-origin: 0%;
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.news-content {
  background: url(../images/bj1.jpg) no-repeat center top;
  -o-background-size: 105% 80%;
     background-size: 105% 80%;
  margin-top: -5.875rem;
  padding-top: 5.875rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}
.news-content::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bj5.jpg) no-repeat center bottom;
  -o-background-size: 105% auto;
     background-size: 105% auto;
}
.news-content .news-list {
  padding: 5.1875rem 0 0;
}
.news-content .news-list li {
  margin-top: 2.75rem;
}
@media (max-width: 768px) {
  .news-content .news-list li {
    margin-top: 1.85rem;
  }
}
.news-content .news-list li a.imgax {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2.5rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
  overflow: hidden;
  box-shadow: 0 0 1rem 0px rgba(0, 0, 0, 0.05);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax {
    border-radius: 1.25rem;
    padding: 1.65rem;
  }
}
.news-content .news-list li a.imgax .wehzxa {
  width: 60.4859335038%;
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax .wehzxa {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem;
  }
}
.news-content .news-list li a.imgax .wehzxa .data {
  width: 26.6384778013%;
  text-align: center;
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax .wehzxa .data {
    display: none;
  }
}
.news-content .news-list li a.imgax .wehzxa .data b {
  font-size: 5.25rem;
  line-height: 1em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ADACAC;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  color: transparent;
}
.news-content .news-list li a.imgax .wehzxa .data p {
  color: #ADACAC;
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 600;
}
.news-content .news-list li a.imgax .wehzxa .cont-p {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6.5%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax .wehzxa .cont-p {
    border-left: none;
    padding-left: 0;
  }
}
.news-content .news-list li a.imgax .wehzxa .cont-p .tit {
  color: #3C3D3D;
  font-size: 1.6875rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax .wehzxa .cont-p .tit {
    font-size: 1.35rem;
  }
}
.news-content .news-list li a.imgax .wehzxa .cont-p .p1 {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.125rem;
  line-height: 1.65em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax .wehzxa .cont-p .p1 {
    font-size: 1.125rem;
    margin-top: 0.75rem;
  }
}
.news-content .news-list li a.imgax .img {
  width: 32.6086956522%;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-content .news-list li a.imgax .img {
    width: 100%;
    border-radius: 1.125rem;
  }
}
.news-content .news-list li a.imgax .img img {
  width: 100%;
}
.news-content .news-list li a.imgax:hover .wehzxa .data b {
  color: var(--color-zt);
  -webkit-text-stroke-width: 0;
}
.news-content .news-list li a.imgax:hover .wehzxa .data p {
  color: var(--color-zt);
}

.ny-show_bodyxw {
  padding-top: -webkit-calc(var(--head-height) * 2);
  padding-top: -moz-calc(var(--head-height) * 2);
  padding-top: calc(var(--head-height) * 2);
  overflow: visible;
  background: #F9F9F9;
}
.ny-show_bodyxw .head .head2 {
  --as-calore: #333;
}
.ny-show_bodyxw .head .head2 .logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.ny-show_bodyxw .head .head2 .logo a img.b {
  display: none;
}
.ny-show_bodyxw .head .head2 .logo a img.a {
  display: inline-block;
}
.ny-show_bodyxw .head .head2 #menu {
  background: #EAEAEA;
}
.ny-show_bodyxw .head .head2 #menu .nav_a1 > li a:hover span {
  color: var(--color-zt);
}
.ny-show_bodyxw .head .head2 #menu .nav_a1 > li a:hover span::before {
  color: var(--color-zt);
}
.ny-show_bodyxw .head.sticky .head2 #menu {
  background: transparent;
}

.show-news-content {
  padding: 1.5rem 0 4.25rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .show-news-content {
    padding: 2.5rem 0 1rem;
  }
}
.show-news-content::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bj61.png) no-repeat center bottom;
  -o-background-size: 105% auto;
     background-size: 105% auto;
}
.show-news-content .show-news-a1_v1 .content {
  width: 67.75%;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content {
    width: 100%;
  }
}
.show-news-content .show-news-a1_v1 .content .title-a {
  color: #3C3D3D;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .title-a {
    font-size: 1.8rem;
  }
}
.show-news-content .show-news-a1_v1 .content .title-b {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 1.25rem 0;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .title-b {
    padding: 1.125rem 0;
    margin-top: 1rem;
  }
}
.show-news-content .show-news-a1_v1 .content .title-b .date-a {
  color: var(--color-zt);
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-right: 3rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .title-b .date-a {
    width: 100%;
    margin-right: 0;
    font-size: 1rem;
  }
}
.show-news-content .show-news-a1_v1 .content .title-b .date-a i {
  font-size: 1.35rem;
  font-weight: 500;
  margin-right: 0.25rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .title-b .date-a i {
    font-size: 1.25rem;
  }
}
.show-news-content .show-news-a1_v1 .content .title-b .fen-xiang {
  color: var(--color-zt);
  font-size: 1.125rem;
  line-height: 1.5em;
}
.show-news-content .show-news-a1_v1 .content .title-b .fen-xiang .social-share {
  margin-left: 0.65rem;
}
.show-news-content .show-news-a1_v1 .content .title-b .fen-xiang .social-share a {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  border: none;
  color: #3C3D3D;
  font-size: 1.25rem;
  background: #fff;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .title-b .fen-xiang .social-share a .wechat-qrcode {
    left: 0;
  }
  .show-news-content .show-news-a1_v1 .content .title-b .fen-xiang .social-share a .wechat-qrcode:after {
    left: 1rem;
  }
}
.show-news-content .show-news-a1_v1 .content .title-b .fen-xiang .social-share a:hover {
  background: var(--color-zt);
  color: #fff;
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss {
  color: rgba(60, 61, 61, 0.7);
  line-height: 1.75em;
  padding: 3rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .xinwn-consss {
    padding: 1.25rem 0;
  }
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss img {
  width: 100%;
}
.show-news-content .show-news-a1_v1 .content .shanys {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .shanys {
    padding: 1rem 0;
  }
}
.show-news-content .show-news-a1_v1 .content .shanys > div {
  width: 43.8191881919%;
  padding: 2.25rem 0;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .shanys > div {
    width: 100%;
    padding: 0.25rem 0;
  }
}
.show-news-content .show-news-a1_v1 .content .shanys > div p {
  color: var(--color-zt);
  font-size: 1rem;
  line-height: 1.5em;
  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;
}
.show-news-content .show-news-a1_v1 .content .shanys > div p i {
  color: var(--color-zt);
  font-size: 1rem;
}
.show-news-content .show-news-a1_v1 .content .shanys > div p b {
  width: 2.25rem;
  height: 1px;
  background: var(--color-zt);
  display: block;
  margin: 0 0.2rem;
}
.show-news-content .show-news-a1_v1 .content .shanys > div a {
  display: block;
  color: rgba(60, 61, 61, 0.8);
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .shanys > div a {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}
.show-news-content .show-news-a1_v1 .content .shanys > div a:hover {
  color: var(--color-zt);
}
.show-news-content .show-news-a1_v1 .content .shanys > div.next {
  text-align: right;
}
.show-news-content .show-news-a1_v1 .content .shanys > div.next p {
  -webkit-justify-content: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.show-news-content .show-news-a1_v1 .tj_contx1 {
  width: 24%;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .tj_contx1 {
    display: none;
  }
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx {
  position: sticky;
  top: -webkit-calc(var(--head-height) * 1.5);
  top: -moz-calc(var(--head-height) * 1.5);
  top: calc(var(--head-height) * 1.5);
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx .tit {
  color: #3C3D3D;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25em;
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx .tjxw_list1 {
  margin-top: 1.5rem;
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx .tjxw_list1 li {
  margin-top: 1rem;
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx .tjxw_list1 li a.name {
  display: block;
  font-size: 1.125rem;
  line-height: 1.35em;
  color: rgba(60, 61, 61, 0.7);
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx .tjxw_list1 li a.name:hover {
  color: var(--color-zt);
}
.show-news-content .show-news-a1_v1 .tj_contx1 .wehga-astx a.more-b {
  margin-top: 2.5rem;
}

.job-cont1 {
  background: url(../images/bjs1.png) no-repeat center 35%;
  -o-background-size: 105% auto;
     background-size: 105% auto;
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
  overflow: hidden;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .job-cont1 {
    margin-bottom: 2rem;
  }
}
.job-cont1 .job-a1v1 {
  padding: 8.875rem 0 7.5rem;
  text-align: center;
}
.job-cont1 .job-a1v1 a.more-b {
  margin: 2.75rem auto 0;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 a.more-b {
    margin-top: 1.35rem;
  }
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 {
    padding: 2.5rem 0;
  }
}
.job-cont1 .job-a1v1 .js-a1v1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333333;
  font-size: 3.2rem;
  line-height: 1.25em;
  font-weight: 700;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .js-a1v1 {
    font-size: 2rem;
    line-height: 1.45em;
  }
  .job-cont1 .job-a1v1 .js-a1v1 br {
    display: none;
  }
  .job-cont1 .job-a1v1 .js-a1v1 p {
    display: inline;
  }
}
.job-cont1 .job-a1v1 .js-a1v1 b {
  color: var(--color-zt);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .js-a1v1 b {
    display: inline;
  }
}
.job-cont1 .job-a1v1 .js-a1v1 b::after {
  position: absolute;
  left: -100%;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shine 3s infinite;
     -moz-animation: shine 3s infinite;
       -o-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .js-a1v1 b::after {
    display: none;
  }
}
.job-cont1 .job-a1v1 .js-a1v1 b:hover::after {
  left: 150%;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.job-cont1 .job-a1v1 .job-a1v1-ax {
  margin-top: 8.25rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax {
    margin-top: 1.25rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b1 {
  width: 49.4805194805%;
  border-radius: 2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b1 {
    width: 100%;
    border-radius: 1rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b1 img {
  width: 100%;
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 {
  width: 43.5714285714%;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 {
    width: 100%;
    margin-top: 1.85rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .p1 {
  color: #3C3D3D;
  font-size: 2.25rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .p1 {
    font-size: 1.65rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 {
  margin-top: 3.65rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 {
    margin-top: 1.5rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li + li {
  margin-top: 1.95rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li + li {
    margin-top: 1rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li i {
  width: 4.4375rem;
  height: 4.4375rem;
  background: #fff;
  border-radius: 0.625rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li i {
    width: 4rem;
    height: 4rem;
    border-radius: 0.325rem;
  }
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li i img {
  width: 60%;
}
.job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li p {
  width: -webkit-calc(100% - 4.4375rem);
  width: -moz-calc(100% - 4.4375rem);
  width: calc(100% - 4.4375rem);
  padding-left: 1.5rem;
  color: #3C3D3D;
  font-size: 1.6875rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 .job-a1v1-ax .job-a1v1-ax-b2 .ashg1 li p {
    font-size: 1.25rem;
    line-height: 1.5em;
    width: -webkit-calc(100% - 4rem);
    width: -moz-calc(100% - 4rem);
    width: calc(100% - 4rem);
    padding-left: 1.125rem;
  }
}
.job-cont1 .job-a1v2 {
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) -5%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) -5%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) -5%, rgba(255, 255, 255, 0.94) 77.7%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -5%, rgba(255, 255, 255, 0.94) 77.7%);
  padding-bottom: 10.125rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v2 {
    padding-bottom: 3rem;
  }
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 {
  margin-top: 3.3125rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 {
    margin-top: 1.5rem;
  }
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper {
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide {
  background: #FBF5F4;
  height: auto;
  border-radius: 3.125rem;
  padding: 3rem 3% 2rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide {
    border-radius: 1.25rem;
    padding: 2rem 8% 1.5rem;
  }
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .img {
  width: 5.125rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .img {
    width: 4.5rem;
  }
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .img img {
  width: 100%;
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .tit {
  color: #333333;
  font-size: 1.875rem;
  line-height: 1.25em;
  font-weight: 600;
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .tit {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}
.job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .p1 {
  color: #3C3D3D;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v2 .job-a1v2-ax .job-a1v2-axb1 .mySwiper2 .swiper-wrapper .swiper-slide .p1 {
    font-size: 1.125rem;
  }
}

.job-a1v2-axb2 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .job-a1v2-axb2 {
    margin-top: 1.65rem;
  }
}
.job-a1v2-axb2 .swiper-num {
  color: rgba(51, 51, 51, 0.4);
  font-size: 1.6875rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .job-a1v2-axb2 .swiper-num {
    font-size: 1.5rem;
  }
}
.job-a1v2-axb2 .swiper-num span.active {
  color: #333333;
}
.job-a1v2-axb2 .swiper-pagination1 {
  background: rgba(0, 0, 0, 0.2);
  height: 2px;
  position: relative;
  width: 18.3125rem;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .job-a1v2-axb2 .swiper-pagination1 {
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.job-a1v2-axb2 .swiper-pagination1 span {
  background: var(--color-zt);
}

.job-body {
  background: #F9F9F9;
  overflow: hidden;
}

.job-cont2 {
  background: url(../images/bjs2.png) no-repeat center 20%;
  -o-background-size: 105% auto;
     background-size: 105% auto;
}
.job-cont2 .job-a2-avc1 {
  padding: 7.125rem 0 8.75rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc1 {
    padding: 2.5rem 0;
  }
}
.job-cont2 .job-a2v2-ax {
  margin-top: 5.25rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2v2-ax {
    margin-top: 1.85rem;
  }
}
.job-cont2 .job-a2v2-ax .job-a2v2-axb1 .mySwiper3 .swiper-wrapper {
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.job-cont2 .job-a2v2-ax .job-a2v2-axb1 .mySwiper3 .swiper-wrapper .swiper-slide .img {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2v2-ax .job-a2v2-axb1 .mySwiper3 .swiper-wrapper .swiper-slide .img {
    border-radius: 1.25rem;
  }
}
.job-cont2 .job-a2v2-ax .job-a2v2-axb1 .mySwiper3 .swiper-wrapper .swiper-slide .img img {
  width: 100%;
}
.job-cont2 .job-a2-avc2 {
  padding-top: 4.1875rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}
.job-cont2 .job-a2-avc2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.94) 77.7%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.94) 77.7%);
  border-bottom-left-radius: var(--borderRadius);
  border-bottom-right-radius: var(--borderRadius);
  overflow: hidden;
}
.job-cont2 .job-a2-avc2 .job-as-astxt {
  position: relative;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a {
  width: 50%;
  -webkit-transform: translateX(-12%) translateY(10%);
     -moz-transform: translateX(-12%) translateY(10%);
      -ms-transform: translateX(-12%) translateY(10%);
       -o-transform: translateX(-12%) translateY(10%);
          transform: translateX(-12%) translateY(10%);
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a {
    width: 100%;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a #svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a .ash1-ast1 li .img {
  position: relative;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a .ash1-ast1 li .img .img-container {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-clip-path: url(#myClipPath1);
          clip-path: url(#myClipPath1);
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a .ash1-ast1 li .img .img-container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(bottom, #EB6146 0%, rgba(133, 55, 40, 0) 100%);
  background: -moz-linear-gradient(bottom, #EB6146 0%, rgba(133, 55, 40, 0) 100%);
  background: -o-linear-gradient(bottom, #EB6146 0%, rgba(133, 55, 40, 0) 100%);
  background: linear-gradient(0deg, #EB6146 0%, rgba(133, 55, 40, 0) 100%);
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast1-a .ash1-ast1 li .img .img-container img {
  width: 100%;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .ast2-a {
  width: 48.75%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .ast2-a {
    width: 100%;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p {
  margin-top: 3.625rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p {
    margin-top: 0;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p u {
  display: block;
  font-size: 0;
  width: 4rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p u {
    width: 2rem;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p u img {
  width: 100%;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p .p1 {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.875rem;
  line-height: 1.65em;
  padding-left: 1rem;
  position: relative;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p .p1 {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p .p1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1px;
  height: 80%;
  background: #EB6146;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .mySwiper4 .swiper-slide .as-4va .cont-p .wxa-ax {
  padding-left: 1rem;
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.25rem;
  line-height: 1.6em;
  font-weight: 500;
  margin-top: 1.25rem;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 {
    margin-top: 1.65rem;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 {
  width: 70%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 {
    width: 100%;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 li {
  width: 5.125rem;
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 li {
    margin-right: 1rem;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 li a.a-block {
  display: block;
  font-size: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 li a.a-block img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .ash1 li.on a.a-block {
  border-color: #EB6146;
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .swiper-pagination1 {
  color: rgba(51, 51, 51, 0.4);
  font-size: 1.6875rem;
  line-height: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .swiper-pagination1 {
    display: none;
  }
}
.job-cont2 .job-a2-avc2 .job-as-astxt .weh-asx1 .swiper-pagination1 .swiper-pagination-current {
  color: #333;
}

.job-cont3 {
  padding: 9.1875rem 0 7.625rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .job-cont3 {
    padding: 2.5rem 0;
  }
}
.job-cont3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  z-index: -1;
  background: url(../images/bjs1.png) no-repeat center 5%;
  -o-background-size: cover;
     background-size: cover;
}

.job-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2.25rem;
  margin-top: 2.75rem;
}
@media (max-width: 768px) {
  .job-lista {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.job-lista li {
  background: rgba(255, 255, 255, 0.84);
  padding: 5.125rem 8.5% 3.85rem;
  border-radius: 2.5rem;
}
@media (max-width: 768px) {
  .job-lista li {
    padding: 1.65rem 7.5% 2.25rem;
    border-radius: 1rem;
  }
}
.job-lista li .tit {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5em;
  padding: 0.95rem 0;
  font-weight: 600;
}
@media (max-width: 768px) {
  .job-lista li .tit {
    font-size: 1.25rem;
  }
}
.job-lista li .ashrsx1 {
  padding: 0 0 1.5rem;
}
@media (max-width: 768px) {
  .job-lista li .ashrsx1 {
    padding: 0 0 0.75rem;
    gap: 0.25rem 1.5rem;
  }
}
.job-lista li .ashrsx1 dl {
  color: rgba(60, 61, 61, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
}
.job-lista li .ashrsx1 dl + dl {
  padding-left: 1em;
  margin-left: 1em;
}
@media (max-width: 768px) {
  .job-lista li .ashrsx1 dl + dl {
    padding-left: 0;
    margin-left: 0;
  }
}
.job-lista li .more-b {
  margin-top: 0.75rem;
  border: 1px solid var(--color-zt);
}
@media (max-width: 768px) {
  .job-lista li .more-b {
    margin-top: 0.5rem;
  }
}
.layui-layer.job-tanc {
  width: 60.8854166667% !important;
  background: #FFF;
  box-shadow: 0px 0px 3.125rem 0px rgba(0, 0, 0, 0.05);
  padding: 3rem 3%;
  border-radius: 3.125rem;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc {
    border-radius: 1.125rem;
  }
}
.layui-layer.job-tanc::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -0.75rem;
  width: 89.8461538462%;
  height: 0.75rem;
  z-index: -1;
  background: var(--color-zt);
}
@media (max-width: 768px) {
  .layui-layer.job-tanc::before {
    top: -0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 768px) {
  .layui-layer.job-tanc {
    width: 92% !important;
    padding: 2rem 1.5rem;
  }
}
.layui-layer.job-tanc .layui-layer-close {
  right: 3.75rem;
  top: 2rem;
  background: none;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .layui-layer-close {
    top: 0.5rem;
    right: 1rem;
  }
}
.layui-layer.job-tanc .layui-layer-close::before {
  content: "\e723";
  font-family: "iconfont" !important;
  font-size: 3rem;
  color: var(--color-zt);
  font-weight: 100;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .layui-layer-close::before {
    font-size: 2.65rem;
  }
}
.layui-layer.job-tanc .pead-cont > dt {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont > dt {
    font-size: 1.5rem;
    padding-right: 1.5rem;
  }
}
.layui-layer.job-tanc .pead-cont .asghrt1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .asghrt1 {
    gap: 0.25rem 1rem;
  }
}
.layui-layer.job-tanc .pead-cont .asghrt1 p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
}
.layui-layer.job-tanc .pead-cont .asghrt1 p + p {
  margin-left: 1.25em;
  padding-left: 1.25em;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .asghrt1 p + p {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
}
.layui-layer.job-tanc .pead-cont .p2 {
  color: #636161;
  font-size: 1.125rem;
  line-height: 1.75em;
  max-height: 55vh;
  overflow-y: auto;
}
.layui-layer.job-tanc .pead-cont .p2 p.asxt {
  margin-bottom: 1em;
}
.layui-layer.job-tanc .pead-cont .p2 a {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .p2 {
    font-size: 1rem;
  }
}
.layui-layer.job-tanc .pead-cont .p2 strong {
  color: #636161;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  display: block;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .p2 strong {
    font-size: 1.125rem;
  }
}
.layui-layer.job-tanc .pead-cont .p2 .dhax p {
  position: relative;
}
.layui-layer.job-tanc .pead-cont .p2 .dhax p + p {
  margin-top: 0.5em;
}
.layui-layer.job-tanc .pead-cont .p3 {
  font-size: 1.25rem;
  line-height: 1.5em;
  color: var(--color-zt);
  margin-top: 1.5rem;
  font-weight: 600;
}
.layui-layer.job-tanc .pead-cont .p3 i {
  display: block;
  font-size: 0;
  width: 1.375rem;
  margin-right: 0.75rem;
}
.layui-layer.job-tanc .pead-cont .p3 i img {
  width: 100%;
}
@media (max-width: 768px) {
  .layui-layer.job-tanc .pead-cont .p3 {
    font-size: 1.125rem;
    line-height: 1.35em;
  }
}
.layui-layer.job-tanc .pead-cont .p3 a {
  color: var(--color-zt);
}

.lx-body {
  background: url(../images/bjs4.png) no-repeat center 100%;
  -o-background-size: 105% auto;
     background-size: 105% auto;
}

.lx-cont1 {
  padding-top: 8.875rem;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding-top: 2.5rem;
  }
}
.lx-cont1 .js-a1v1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333333;
  font-size: 3.2rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .lx-cont1 .js-a1v1 {
    font-size: 2rem;
    line-height: 1.45em;
  }
  .lx-cont1 .js-a1v1 br {
    display: none;
  }
  .lx-cont1 .js-a1v1 p {
    display: inline;
  }
}
.lx-cont1 .js-a1v1 u {
  width: 2em;
  height: 0.25rem;
  background: #333333;
  display: inline-block;
  -webkit-transform: translateY(-1rem);
     -moz-transform: translateY(-1rem);
      -ms-transform: translateY(-1rem);
       -o-transform: translateY(-1rem);
          transform: translateY(-1rem);
  margin-right: 0.25rem;
}
.lx-cont1 .js-a1v1 b {
  color: var(--color-zt);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .lx-cont1 .js-a1v1 b {
    display: inline;
  }
}
.lx-cont1 .js-a1v1 b::after {
  position: absolute;
  left: -100%;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: shine 3s infinite;
     -moz-animation: shine 3s infinite;
       -o-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
@media (max-width: 768px) {
  .lx-cont1 .js-a1v1 b::after {
    display: none;
  }
}
.lx-cont1 .js-a1v1 b:hover::after {
  left: 150%;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  -moz-transition: 1s ease;
  transition: 1s ease;
}
.lx-cont1 .lx-a1v1 {
  border-radius: 50%;
  border: 1px solid #FFF;
  background: -webkit-radial-gradient(21.14% -3.52%, 102.44% 102.44%, rgba(255, 255, 255, 0.1) 0%, rgba(235, 97, 70, 0.1) 100%);
  background: -moz-radial-gradient(21.14% -3.52%, 102.44% 102.44%, rgba(255, 255, 255, 0.1) 0%, rgba(235, 97, 70, 0.1) 100%);
  background: -o-radial-gradient(21.14% -3.52%, 102.44% 102.44%, rgba(255, 255, 255, 0.1) 0%, rgba(235, 97, 70, 0.1) 100%);
  background: radial-gradient(102.44% 102.44% at 21.14% -3.52%, rgba(255, 255, 255, 0.1) 0%, rgba(235, 97, 70, 0.1) 100%);
  width: 74.875%;
  aspect-ratio: 1/1;
  position: relative;
  margin: 0 auto;
  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;
  /* 标注点样式 */
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 {
    width: 100%;
  }
}
.lx-cont1 .lx-a1v1 .weha-axx {
  position: absolute;
  right: 5%;
  bottom: 45%;
  z-index: 3;
  border-radius: 1.625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  padding: 2rem 5%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .weha-axx {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: -20%;
    padding: 1.85rem 7.5%;
    border-radius: 1rem;
  }
}
.lx-cont1 .lx-a1v1 .weha-axx u {
  display: block;
  font-size: 0;
}
.lx-cont1 .lx-a1v1 .weha-axx u img {
  height: 2.375rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .weha-axx u img {
    height: 2rem;
  }
}
.lx-cont1 .lx-a1v1 .weha-axx .p1 {
  color: #333333;
  font-size: 1.25rem;
  line-height: 2em;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .weha-axx .p1 {
    font-size: 1.125rem;
    line-height: 1.75em;
  }
}
.lx-cont1 .lx-a1v1 .canvas_case {
  width: 80%;
  height: 80%;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .canvas_case {
    width: 90%;
    height: 90%;
  }
}
.lx-cont1 .lx-a1v1 .canvas_case .element {
  width: 1px;
  height: 1px;
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}
.lx-cont1 .lx-a1v1 .canvas_case .element.hideTo {
  opacity: 0;
  pointer-events: none;
}
.lx-cont1 .lx-a1v1 .canvas_case .element .dot {
  width: 0.46875vw;
  height: 0.46875vw;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -0.23438vw;
  left: -0.23438vw;
}
.lx-cont1 .lx-a1v1 .canvas_case .element .dot i {
  font-size: 1.25rem;
  color: var(--color-zt);
}
.lx-cont1 .lx-a1v1 .canvas_case .element .lab {
  letter-spacing: -0.02em;
  text-align: center;
  width: 10vw;
  font-size: 0.9vw;
  position: absolute;
  top: 0.8vw;
  left: -5vw;
  color: var(--color-zt);
  font-family: sans-serif;
}

.lx-cont2 {
  position: relative;
  padding: 8rem 0 7.875rem;
  z-index: 1;
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 2.58%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 2.58%, rgba(255, 255, 255, 0.94) 77.7%);
  background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 2.58%, rgba(255, 255, 255, 0.94) 77.7%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 2.58%, rgba(255, 255, 255, 0.94) 77.7%);
  border-top-right-radius: var(--borderRadius);
  border-top-left-radius: var(--borderRadius);
  overflow: hidden;
  margin-top: -25.125rem;
}
@media (max-width: 768px) {
  .lx-cont2 {
    margin-top: 6.5rem;
    padding: 2rem 0 2.5rem;
  }
}
.lx-cont2 .wh {
  position: relative;
  z-index: 1;
}
.lx-cont2 .wh form {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form {
    margin-top: 1.5rem;
  }
}
.lx-cont2 .wh form .m_label {
  color: #000000;
  font-size: 1rem;
  line-height: 3.375rem;
  margin-bottom: 0.5rem;
  position: absolute;
  left: 1em;
  top: 0;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .m_label {
    margin-bottom: 0.25rem;
  }
}
.lx-cont2 .wh form .m_label span {
  color: #E6212A;
}
.lx-cont2 .wh form .msg-a1 {
  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;
}
.lx-cont2 .wh form .msg-a1 .tit-a {
  color: #4A4A4A;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5em;
  padding: 0.5rem 0 0.65rem;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a1 .tit-a {
    font-size: 1.25rem;
  }
}
.lx-cont2 .wh form .msg-a1 .inpt {
  width: 31.162464986%;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a1 .inpt {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}
.lx-cont2 .wh form .msg-a1 .inpt input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 3.375rem;
  font-size: 1rem;
  padding: 0 1em;
  border-radius: 2.5rem;
  background: #fff;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a1 .inpt input {
    line-height: 2.85rem;
    padding: 0 0.5em;
  }
}
.lx-cont2 .wh form .msg-a1 .inpt select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 3.375rem;
  line-height: 3.375rem;
  font-size: 1rem;
  padding: 0 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/jtax.svg) no-repeat 96% center #fff;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
  border-radius: 2.5rem;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a1 .inpt select {
    line-height: 2.85rem;
    height: 2.85rem;
    padding: 0 0.5em;
  }
}
.lx-cont2 .wh form .msg-a1 .inpt1 {
  width: 100%;
}
.lx-cont2 .wh form .msg-a1 .inpt1 textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.5rem;
  font-size: 1rem;
  padding: 0.75em 1em;
}
.lx-cont2 .wh form .msg-a3 {
  position: relative;
}
.lx-cont2 .wh form .msg-a3 textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: 1.625rem;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a3 textarea {
    padding: 0.75em 0.5em;
    border-radius: 1rem;
  }
}
.lx-cont2 .wh form .msg-a4 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a4 {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a4 .yszc-cont {
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.lx-cont2 .wh form .msg-a4 .yszc-cont input[type=checkbox] {
  border: none;
  outline: none;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.125rem;
  position: relative;
  margin-right: 0.5rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a4 .yszc-cont input[type=checkbox] {
    margin-top: 0.25rem;
  }
}
.lx-cont2 .wh form .msg-a4 .yszc-cont input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.lx-cont2 .wh form .msg-a4 .yszc-cont input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.lx-cont2 .wh form .msg-a4 .yszc-cont label {
  color: #474747;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .msg-a4 .yszc-cont label {
    width: -webkit-calc(100% - 1.625rem);
    width: -moz-calc(100% - 1.625rem);
    width: calc(100% - 1.625rem);
  }
}
.lx-cont2 .wh form .msg-a4 .yszc-cont label a {
  color: #222;
}
.lx-cont2 .wh form .msg-a4 .yszc-cont label a:hover {
  color: var(--color-zt);
}
.lx-cont2 .wh form .div_aghgha {
  margin-top: 1.5rem;
}
.lx-cont2 .wh form .div_aghgha button {
  margin: 0 auto;
  border: none;
}
@media (max-width: 768px) {
  .lx-cont2 .wh form .div_aghgha {
    margin-top: 0.75rem;
  }
}