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

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #333;
  --color-zt: #ED4C22;
  --head-height: 4.25rem;
  --cbasta: 13.5416666667%;
  --pandrd: 5.375rem;
  --bradius: 6.25rem;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.25%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
    --bradius: 2rem;
  }
}

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

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

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

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

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

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

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

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

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

.more-msl {
  display: inline-block;
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 1rem/3.125rem "Poppins";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: 0.875rem;
  }
}
.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-zt);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
   -ms-transform: scale(0);
    -o-transform: scale(0);
       transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
       transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}
.more-msl:hover {
  color: #fff;
}
.more-msl:hover::before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
   -ms-transform: scale(2);
    -o-transform: scale(2);
       transform: scale(2);
}
.more-msl.bs {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.more-msl.bs:before {
  background: #fff;
}
.more-msl.bs:hover {
  color: var(--color-zt);
}
.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}
.more-msl.hs:before {
  background: var(--color-zt);
}
.more-msl.hs:hover {
  color: #fff;
  border-color: var(--color-zt);
}
.more-msl.ls {
  color: var(--color-zt);
  background: transparent;
  border-color: var(--color-zt);
}
.more-msl.ls:before {
  background: var(--color-zt);
}
.more-msl.ls:hover {
  color: #fff;
}

.more-b {
  padding: 0.5rem;
  border-radius: 3.125rem;
  color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  border: 1px solid #B9B9B9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: capitalize;
}
.more-b i {
  background: #000000;
  color: #fff;
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
}
.more-b span {
  display: block;
  padding: 0 1rem 0 1.25rem;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.6rem 1rem;
  }
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: var(--color-zt);
  -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 {
  border-color: var(--color-zt);
  color: #fff;
}
.more-b:hover i {
  background: #fff;
  color: #000;
}
.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: #fff;
  border-color: #fff;
}
.more-b.bs::after {
  background-color: #fff;
}
.more-b.bs i {
  background: #fff;
  color: var(--color-zt);
}
.more-b.bs:hover {
  color: var(--color-zt);
}
.more-b.bs:hover i {
  background: #000;
  color: #fff;
}

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

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: -webkit-calc(70vh - 60px);
    padding-bottom: -moz-calc(70vh - 60px);
    padding-bottom: calc(70vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.202764977%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
  padding: 2.5rem 0;
}
.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: #000000;
}
.head .head2 .logo a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.head .head2 .logo a img {
  height: 3rem;
}
.head .head2 .toubuas {
  line-height: 1.5em;
  font-size: 1.25rem;
  font-weight: 500;
  gap: 0.5rem;
}
.head .head2 .toubuas u {
  display: block;
  font-size: 0;
  width: 1.5625rem;
}
.head .head2 .toubuas u img {
  width: 100%;
}

#menu {
  background: #FFFFFF;
  border-radius: 4.375rem;
  padding: 0 1.65rem;
  position: fixed;
  top: 1.95rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
}
#menu .nav_a1 > li {
  float: left;
  position: relative;
}
#menu .nav_a1 > li a {
  display: block;
  color: var(--as-calore);
  font-family: "Noto Sans SC";
}
#menu .nav_a1 > li > a {
  font-size: 1.25rem;
  padding: 0 1.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  font-weight: 500;
  position: relative;
  height: var(--head-height);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#menu .nav_a1 > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
}
#menu .nav_a1 > li > a > span {
  position: relative;
  display: block;
  overflow: hidden;
}
#menu .nav_a1 > li > a > span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-zt);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
}
#menu .nav_a1 > li > a > span span {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  white-space: nowrap;
  display: block;
  line-height: 1.5em;
}
#menu .nav_a1 > li > a > span span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
     -moz-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
       -o-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  color: var(--color-zt);
}
#menu .nav_a1 > li > a sup {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 0;
  top: 0.14rem;
  background: rgba(237, 76, 34, 0.2);
  font-size: 0.625rem;
  line-height: 1.75em;
  border-radius: 1.25rem;
  padding: 0 0.75em;
}
#menu .nav_a1 > li .sec {
  position: absolute;
  left: 50%;
  top: -webkit-calc(100% + 0.3rem);
  top: -moz-calc(100% + 0.3rem);
  top: calc(100% + 0.3rem);
  width: auto;
  padding: 1rem 2rem;
  border-radius: 1rem;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(10px);
     -moz-transform: translateX(-50%) translateY(10px);
      -ms-transform: translateX(-50%) translateY(10px);
       -o-transform: translateX(-50%) translateY(10px);
          transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 0.2rem -3px rgba(0, 0, 0, 0.06);
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out, -o-transform 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -moz-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out, -moz-transform 0.5s ease-in-out, -o-transform 0.5s ease-in-out;
}
#menu .nav_a1 > li .sec > a {
  color: #222222;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.4rem 0;
  text-align: center;
  white-space: nowrap;
}
#menu .nav_a1 > li .sec > a:hover {
  color: var(--color-zt);
}
#menu .nav_a1 > li:hover .sec {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
#menu .nav_a1 > li:hover > a, #menu .nav_a1 > li.active > a {
  color: var(--color-zt);
}
#menu .nav_a1 > li:hover > a i, #menu .nav_a1 > li.active > a i {
  opacity: 1;
}
#menu .nav_a1 > li:hover > a span::after, #menu .nav_a1 > li.active > a span::after {
  width: 100%;
}

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

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

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

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

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

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1, .m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 38px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #333;
  font-family: "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;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
  padding: 20.625rem 0 22.1875rem;
  z-index: 1;
}
.pc-banner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #E9E9E9;
}
@media (max-width: 768px) {
  .pc-banner {
    padding: 7.625rem 0 10.1875rem;
  }
}
.pc-banner .ban-wen {
  position: relative;
  z-index: 1;
}
.pc-banner .ban-wen .tit {
  color: #000000;
  font-size: 9.5rem;
  font-weight: 600;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .pc-banner .ban-wen .tit {
    font-size: 4rem;
  }
}
.pc-banner .ban-wen .tit span {
  font-weight: 300;
}
.pc-banner .ban-wen .pax li {
  position: absolute;
}
.pc-banner .ban-wen .pax li img {
  width: 100%;
}
.pc-banner .ban-wen .pax li:nth-child(1) {
  top: -7.25rem;
  width: 8.5625rem;
  z-index: 1;
  left: 17%;
}
@media (max-width: 768px) {
  .pc-banner .ban-wen .pax li:nth-child(1) {
    width: 2.65rem;
    top: -2.7rem;
  }
}
.pc-banner .ban-wen .pax li:nth-child(2) {
  top: 50%;
  width: 13.125rem;
  z-index: -1;
  top: 47%;
  left: 73%;
}
@media (max-width: 768px) {
  .pc-banner .ban-wen .pax li:nth-child(2) {
    width: 5.5rem;
  }
}

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

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

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

@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-moz-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-o-keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}
@-webkit-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-moz-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-o-keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-moz-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-o-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
         transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
       transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
       transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

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

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

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

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

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

.gong-pagination span {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin: 0 0.25rem;
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}
.gong-pagination.hs span {
  background: rgba(0, 0, 0, 0.3);
}
.gong-pagination.hs span.swiper-pagination-bullet-active {
  background: #13315B;
}

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

.title1 {
  color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.85rem;
}
@media (max-width: 768px) {
  .title1 {
    padding-bottom: 1.35rem;
  }
}
.title1 .tit {
  font-size: 3.125rem;
  line-height: 1.4em;
  font-weight: 500;
  padding-left: 0.825em;
  position: relative;
}
.title1 .tit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background: var(--color-zt);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .title1 .tit::before {
    top: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.65rem;
  }
}
.title1.bs {
  color: #fff;
}

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

.swiper-pagination1 {
  text-align: center;
}
.swiper-pagination1 span {
  background: rgba(255, 255, 255, 0.2);
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
  opacity: 1;
  margin: 0 0.3125rem !important;
}
.swiper-pagination1 span.swiper-pagination-bullet-active {
  background: var(--color-zt);
}

.cont1 {
  position: relative;
  z-index: 1;
  --bradk: 6.25rem;
  padding: 0 0 -webkit-calc(11.5625rem + var(--bradk));
  padding: 0 0 -moz-calc(11.5625rem + var(--bradk));
  padding: 0 0 calc(11.5625rem + var(--bradk));
  background: #E9E9E9;
}
@media (max-width: 768px) {
  .cont1 {
    --bradk: 2rem;
    padding: 0 0 -webkit-calc(2.5625rem + var(--bradk));
    padding: 0 0 -moz-calc(2.5625rem + var(--bradk));
    padding: 0 0 calc(2.5625rem + var(--bradk));
  }
}
.cont1::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #232323;
  border-top-left-radius: var(--bradk);
  border-top-right-radius: var(--bradk);
}
.cont1::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -2.9375rem);
     -moz-transform: translate(-50%, -2.9375rem);
      -ms-transform: translate(-50%, -2.9375rem);
       -o-transform: translate(-50%, -2.9375rem);
          transform: translate(-50%, -2.9375rem);
  width: 96.9791666667%;
  height: 50%;
  background: var(--color-zt);
  z-index: -2;
  border-top-left-radius: var(--bradk);
  border-top-right-radius: var(--bradk);
}
@media (max-width: 768px) {
  .cont1::before {
    -webkit-transform: translate(-50%, -1rem);
       -moz-transform: translate(-50%, -1rem);
        -ms-transform: translate(-50%, -1rem);
         -o-transform: translate(-50%, -1rem);
            transform: translate(-50%, -1rem);
  }
}
@media (max-width: 768px) {
  .cont1 .a1v1 {
    padding-top: 0.65rem;
  }
}
.cont1 .a1v1 .img {
  display: block;
  font-size: 0;
  border-radius: var(--bradk);
  overflow: hidden;
  -webkit-transform: scale(0.87);
     -moz-transform: scale(0.87);
      -ms-transform: scale(0.87);
       -o-transform: scale(0.87);
          transform: scale(0.87);
  position: relative;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .img {
    -webkit-transform: scale(0.92);
       -moz-transform: scale(0.92);
        -ms-transform: scale(0.92);
         -o-transform: scale(0.92);
            transform: scale(0.92);
  }
}
.cont1 .a1v1 .img img {
  width: 100%;
}
.cont1 .a1v1 .img video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cont1 .a1v2 {
  margin-top: 3.625rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v2 .a1v2-tit {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.5em;
  color: #fff;
  font-weight: 700;
}
.cont1 .a1v2 .a1v2-tit b {
  color: var(--color-zt);
  font-size: 3.35rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2-tit {
    font-size: 1.35rem;
  }
  .cont1 .a1v2 .a1v2-tit b {
    font-size: 2rem;
  }
}
.cont1 .a1v2 .mySwiper1 {
  margin-top: 0.875rem;
}
.cont1 .a1v2 .mySwiper1 .swiper-slide .img u {
  display: block;
  font-size: 0;
}
.cont1 .a1v2 .mySwiper1 .swiper-slide .img u img {
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.cont1 .a1v2 .mySwiper1 .swiper-pagination1 {
  margin-top: 2.125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .mySwiper1 .swiper-pagination1 {
    margin-top: 1rem;
  }
}
.cont1 .a1v3 {
  margin-top: 5.3125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v3 {
    margin-top: 2rem;
  }
}
.cont1 .a1v4 {
  height: 100vh;
  padding: 8rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont1 .a1v4 {
    height: auto;
    padding: 3.5rem 0 0;
  }
}
.cont1 .a1v4 .a1v4-a1 {
  margin-top: 4.4375rem;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list {
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2.375rem;
  max-width: unset;
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
     -moz-perspective: 1000px;
          perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
     -moz-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  position: relative;
  left: 13.125vw;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 .flzs_list {
    position: static;
    display: block;
    padding: 0 var(--cbasta);
    max-width: 100%;
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li {
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 1px 1px 0 rgba(199, 211, 234, 0.12) inset;
  padding: 3.5rem 2.0833333333%;
  width: 28rem;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 .flzs_list li {
    width: 100%;
    padding: 1.85rem 6.5%;
    border-radius: 1.125rem;
  }
  .cont1 .a1v4 .a1v4-a1 .flzs_list li + li {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li u {
  display: block;
  font-size: 0;
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li u img {
  width: 100%;
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .tit {
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
  margin-top: 1.85rem;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 .flzs_list li .tit {
    font-size: 1.5rem;
    margin-top: 1.125rem;
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p {
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 2em;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p {
    font-size: 1rem;
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p dl {
  margin-top: 0.35rem;
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p .p1 i {
  display: block;
  font-size: 0;
  width: 1.35rem;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p .p1 i {
    width: 1.125rem;
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p .p1 i img {
  width: 100%;
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p .p1 p {
  width: -webkit-calc(100% - 1.35rem);
  width: -moz-calc(100% - 1.35rem);
  width: calc(100% - 1.35rem);
  padding-left: 0.5em;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p .p1 p {
    width: -webkit-calc(100% - 1.125rem);
    width: -moz-calc(100% - 1.125rem);
    width: calc(100% - 1.125rem);
  }
}
.cont1 .a1v4 .a1v4-a1 .flzs_list li .cont-p .txt1 {
  font-size: 0.875rem;
  line-height: 1.35em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.125rem;
}

.a1v3-c1 {
  position: relative;
  margin-top: 4.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .a1v3-c1 {
    margin-top: 1.5rem;
  }
}
.a1v3-c1 .mySwiper2 {
  padding: 0 var(--cbasta);
}
.a1v3-c1 .mySwiper2 .swiper-slide .img {
  position: relative;
}
.a1v3-c1 .mySwiper2 .swiper-slide .img u {
  display: block;
  font-size: 0;
  border-radius: 3.125rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .a1v3-c1 .mySwiper2 .swiper-slide .img u {
    border-radius: 1rem;
  }
}
.a1v3-c1 .mySwiper2 .swiper-slide .img u img {
  width: 100%;
}
@media (max-width: 768px) {
  .a1v3-c1 .mySwiper2 .swiper-slide .img u img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p {
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media (max-width: 768px) {
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p {
    position: static;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
    margin-top: 1.5rem;
    color: #fff;
  }
}
.a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p .tit {
  font-size: 2.25rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p .tit {
    font-size: 1.5rem;
  }
}
.a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p .ftit {
  font-size: 1.875rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p .ftit {
    font-size: 1rem;
    margin-top: 0.5em;
  }
}
.a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b {
    color: #fff;
  }
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b i {
    background: #fff;
    color: var(--color-zt);
  }
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b:hover {
    border-color: var(--color-zt);
  }
  .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b:hover::after {
    background: var(--color-zt);
  }
}
.a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p.bs {
  color: #fff;
}
@-webkit-keyframes infinit-rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-moz-keyframes infinit-rotation {
  0% {
    -moz-transform: rotate(0);
         transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
@-o-keyframes infinit-rotation {
  0% {
    -o-transform: rotate(0);
       transform: rotate(0);
  }
  to {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}
@keyframes infinit-rotation {
  0% {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.cursor-dot {
  position: fixed;
  top: 50%;
  left: 50%;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  width: 0.5rem;
  height: 0.5rem;
  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;
}
.cursor-dot .img {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  -webkit-transform: scale(0);
     -moz-transform: scale(0);
      -ms-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
}
.cursor-dot .img > img {
  width: 100%;
  -webkit-animation: infinit-rotation 15s linear infinite;
     -moz-animation: infinit-rotation 15s linear infinite;
       -o-animation: infinit-rotation 15s linear infinite;
          animation: infinit-rotation 15s linear infinite;
}
.cursor-dot .img .flex-z {
  width: 77.7777777778%;
  height: 77.7777777778%;
  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%);
  background: var(--color-zt);
  border-radius: 50%;
}
.cursor-dot .img .flex-z img {
  width: 32.183908046%;
}

.sy-body {
  overflow: visible;
}

.cont2 {
  position: relative;
  margin-top: -webkit-calc(var(--bradius) * -1);
  margin-top: -moz-calc(var(--bradius) * -1);
  margin-top: calc(var(--bradius) * -1);
  z-index: 1;
  padding: 0 0 -webkit-calc(11.5625rem + var(--bradius));
  padding: 0 0 -moz-calc(11.5625rem + var(--bradius));
  padding: 0 0 calc(11.5625rem + var(--bradius));
  background: #232323;
  padding: 9.75rem 0 5.65rem;
}
@media (max-width: 768px) {
  .cont2 {
    padding: 2.75rem 0 2.65rem;
  }
}
.cont2::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #E9E9E9;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
}
.cont2 .a2v1-sa {
  --top: 5.75rem;
  padding-top: var(--top);
}
@media (max-width: 768px) {
  .cont2 .a2v1-sa {
    --top: 1.5rem ;
  }
}
.cont2 .a2_list1 li {
  overflow: hidden;
  position: sticky;
  top: -webkit-calc(var(--top) + 4rem);
  top: -moz-calc(var(--top) + 4rem);
  top: calc(var(--top) + 4rem);
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li {
    padding-bottom: 0;
  }
}
.cont2 .a2_list1 li .a2_v1 {
  padding: 6.5625rem 6.8862275449%;
  border-radius: 3.75rem;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .a2_v1 {
    border-radius: 1.5rem;
    padding: 2.5625rem 5.5%;
  }
}
.cont2 .a2_list1 li .a2_v1 .a2_b1 {
  width: 50.5263157895%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .a2_v1 .a2_b1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cont2 .a2_list1 li .a2_v1 .a2_b1 .tit-ax {
  width: 100%;
}
.cont2 .a2_list1 li .a2_v1 .a2_b1 .tit-ax b {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .a2_v1 .a2_b1 .tit-ax b {
    font-size: 1.35rem;
  }
}
.cont2 .a2_list1 li .a2_v1 .a2_b1 .tit-ax .tit {
  font-size: 2.75rem;
  line-height: 1.25em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .a2_v1 .a2_b1 .tit-ax .tit {
    font-size: 1.75rem;
  }
}
.cont2 .a2_list1 li .a2_v1 .a2_b1 .p1 {
  font-size: 1.35rem;
  line-height: 2.2em;
  width: 100%;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .a2_v1 .a2_b1 .p1 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 2em;
    margin-top: 0.5em;
  }
}
.cont2 .a2_list1 li .a2_v1 .a2_b2 {
  width: 30.8771929825%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .a2_v1 .a2_b2 {
    width: 60%;
    margin: 0 auto;
  }
}
.cont2 .a2_list1 li .a2_v1 .a2_b2 svg {
  display: block;
  vertical-align: middle;
}
.cont2 .a2_list1 li:nth-child(1) .a2_v1 {
  background: #FFFFFF;
  color: #000000;
}
.cont2 .a2_list1 li:nth-child(2) {
  padding-top: 3vmax;
}
.cont2 .a2_list1 li:nth-child(2) .a2_v1 {
  background: var(--color-zt);
  color: #fff;
}
.cont2 .a2_list1 li:nth-child(3) {
  padding-top: 6vmax;
}
.cont2 .a2_list1 li:nth-child(3) .a2_v1 {
  background: #1E1C1B;
  color: #fff;
}
.cont2 .a2-v1 {
  margin-top: 2.5rem;
}
.cont2 .a2-v1 .a2-v1-ax {
  position: relative;
  z-index: 1;
}
.cont2 .a2-v1 .a2-v1-ax::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 33.3333333333%;
  z-index: -2;
  opacity: 0.52;
}
.cont2 .a2-v1 .a2-v1-ax::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  top: 66.6666666667%;
  z-index: -2;
  opacity: 0.52;
}
.cont2 .a2-v1 .a2-v1-ax .diqiu {
  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%);
  z-index: -1;
}
.cont2 .a2-v1 .a2-v1-ax .diqiu #earth {
  width: 43vw;
  height: 43vw;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .cont2 .a2-v1 .a2-v1-ax .diqiu #earth {
    width: 75vw;
    height: 75vw;
  }
}
.cont2 .a2-v1 .a2-v1-ax .diqiu #earth canvas {
  width: 100% !important;
  height: 100% !important;
}
.cont2 .a2-v1 .a2-v1-ax .diqiu #earth .position {
  display: none;
}
.cont2 .a2-v1 .a2-v1-ax .as1 li {
  padding: 4.25rem 0;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cont2 .a2-v1 .a2-v1-ax .as1 li {
    padding: 1.5rem 0;
    margin-top: 0;
  }
}
.cont2 .a2-v1 .a2-v1-ax .as1 li .tit {
  color: rgba(51, 51, 51, 0.7);
  font-size: 2.25rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cont2 .a2-v1 .a2-v1-ax .as1 li .tit {
    width: 100%;
    font-size: 1.5rem;
  }
}
.cont2 .a2-v1 .a2-v1-ax .as1 li .as {
  color: var(--color-zt);
  font-size: 8rem;
  line-height: 1em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .cont2 .a2-v1 .a2-v1-ax .as1 li .as {
    width: 100%;
    font-size: 3.35rem;
    margin-top: 0.5rem;
  }
}

.cont3 {
  position: relative;
  z-index: 1;
  padding: 0 0 -webkit-calc(11.5625rem + var(--bradius));
  padding: 0 0 -moz-calc(11.5625rem + var(--bradius));
  padding: 0 0 calc(11.5625rem + var(--bradius));
  background: #E9E9E9;
  padding: 8.625rem 0;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 2.25rem 0;
  }
}
.cont3::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #fff;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
}
.cont3 .a3v1 .a3a1c1 {
  background: #F6F6F6;
  border-radius: 3.75rem;
  padding: 0.3125rem;
  gap: 0 0.25rem;
}
.cont3 .a3v1 .a3a1c1 li a {
  display: block;
  color: #000000;
  font-size: 1.25rem;
  line-height: 3.25rem;
  padding: 0 1.5em;
  border-radius: 3.75rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .a3a1c1 li a {
    font-size: 1.125rem;
    line-height: 2.865rem;
  }
}
.cont3 .a3v1 .a3a1c1 li.on a, .cont3 .a3v1 .a3a1c1 li:hover a {
  background: #1E1C1B;
  color: #fff;
}
.cont3 .xw_az1 {
  margin-top: 4.0625rem;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 {
    margin-top: 1.5rem;
  }
}
.cont3 .xw_az1 > li {
  display: none;
}
.cont3 .xw_az1 > li .xwa1 li .cont-p {
  width: 42.8571428571%;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa1 li .cont-p {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem;
  }
}
.cont3 .xw_az1 > li .xwa1 li .cont-p .date span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.875rem;
  background: #F6F6F6;
  border-radius: 0.3125rem;
  padding: 0 0.5em;
}
.cont3 .xw_az1 > li .xwa1 li .cont-p .date p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-left: 1em;
}
.cont3 .xw_az1 > li .xwa1 li .cont-p a.tit {
  display: block;
  color: #000000;
  font-size: 2rem;
  line-height: 1.35em;
  font-weight: 600;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa1 li .cont-p a.tit {
    font-size: 1.5rem;
  }
}
.cont3 .xw_az1 > li .xwa1 li .cont-p a.tit:hover {
  color: var(--color-zt);
}
.cont3 .xw_az1 > li .xwa1 li .cont-p .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa1 li .cont-p .p1 {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}
.cont3 .xw_az1 > li .xwa1 li .cont-p a.more-b {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa1 li .cont-p a.more-b {
    margin-top: 1rem;
  }
}
.cont3 .xw_az1 > li .xwa1 li .img {
  width: 50%;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa1 li .img {
    width: 100%;
    border-radius: 1.125rem;
  }
}
.cont3 .xw_az1 > li .xwa1 li .img img {
  width: 100%;
}
.cont3 .xw_az1 > li .xwa2 {
  margin-top: 2.875rem;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa2 {
    margin-top: 1.5rem;
  }
}
.cont3 .xw_az1 > li .xwa2 li {
  width: 23.3571428571%;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa2 li {
    width: 100%;
  }
  .cont3 .xw_az1 > li .xwa2 li + li {
    margin-top: 1.25rem;
  }
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa {
  display: block;
  background: #F6F6F6;
  height: 100%;
  padding: 2.375rem 2rem;
  border-radius: 2.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa2 li a.imgxa {
    border-radius: 1.5rem;
    padding: 1.75rem 1.85rem;
  }
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa .tag {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.5em;
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa .tit {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa2 li a.imgxa .tit {
    font-size: 1.35rem;
  }
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa .data {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa i {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #333333;
}
@media (max-width: 768px) {
  .cont3 .xw_az1 > li .xwa2 li a.imgxa i {
    margin-top: 0.75rem;
  }
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa:hover {
  background: var(--color-zt);
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa:hover .tag {
  color: #fff;
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa:hover .tit {
  color: #fff;
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa:hover .data {
  color: #fff;
}
.cont3 .xw_az1 > li .xwa2 li a.imgxa:hover i {
  color: #fff;
}

.foot-fot {
  position: relative;
  background: #ED4C22;
  border-top-right-radius: var(--bradius);
  border-top-left-radius: var(--bradius);
}
@media (max-width: 990px) {
  .foot-fot {
    background: #232323;
    padding-top: 1.5rem;
    overflow: hidden;
  }
}
.foot-fot .foota3 {
  padding: 5.9375rem 0;
}
@media (max-width: 768px) {
  .foot-fot .foota3 {
    padding: 2rem 0 0;
    display: none;
  }
}
.foot-fot .foota3 .fo-v3 {
  text-align: center;
  color: #fff;
}
.foot-fot .foota3 .fo-v3 .tit {
  font-size: 2.75rem;
  line-height: 1.35em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .foot-fot .foota3 .fo-v3 .tit {
    font-size: 1.65rem;
  }
}
.foot-fot .foota3 .fo-v3 .p1 {
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 500;
  margin: 0.75rem 0;
}
@media (max-width: 768px) {
  .foot-fot .foota3 .fo-v3 .p1 {
    font-size: 1rem;
  }
}
.foot-fot .foota3 .fo-v3 a.more-b {
  margin: 1.25rem auto 0;
}
@media (max-width: 768px) {
  .foot-fot .foota3 .fo-v3 a.more-b {
    margin-top: 0.56rem;
  }
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  background: #232323;
  padding: 7.9375rem 0 5.1875rem;
  border-top-right-radius: var(--bradius);
  border-top-left-radius: var(--bradius);
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foot-tit {
  color: #FFFFFF;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 700;
}
.foot-fot .foota1 .foot-tit a {
  color: #fff;
  display: block;
}
.foot-fot .foota1 .fo-a1 {
  width: 32.1428571429%;
}
.foot-fot .foota1 .fo-a1 .d_nax1 {
  width: 40%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.foot-fot .foota1 .fo-a1 .d_nax1 li + li {
  margin-top: 0.5rem;
}
.foot-fot .foota1 .fo-a1 .d_nax1 li a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.35rem;
  line-height: 1.85em;
}
.foot-fot .foota1 .fo-a1 .d_nax1 li.on a {
  color: var(--color-zt);
}
.foot-fot .foota1 .fo-a1 .d_nax2 {
  width: 60%;
}
.foot-fot .foota1 .fo-a1 .d_nax2 li {
  display: none;
}
.foot-fot .foota1 .fo-a1 .d_nax2 li .a {
  display: block;
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 2em;
  padding-left: 2em;
  margin-top: 0.35rem;
}
.foot-fot .foota1 .fo-a1 .d_nax2 li .txt1 {
  font-size: 0.75rem;
  line-height: 1.35em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0rem;
  padding-left: 2em;
  white-space: nowrap;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.9em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.foot-fot .foota1 .dseca > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: var(--color-zt);
}
.foot-fot .foota1 .dseca > a:hover {
  color: var(--color-zt);
}
.foot-fot .foota1 .dseca > a:hover::after {
  width: 100%;
}
.foot-fot .foota1 .foota1b1 {
  color: #fff;
}
.foot-fot .foota1 .foota1b1 .dlogo img {
  height: 3rem;
}
.foot-fot .foota1 .foota1b1 .p1 {
  font-size: 1.125rem;
  line-height: 2em;
  margin-top: 1.5rem;
}
.foot-fot .foota1 .foota1b1 .p2 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5em;
}
.foot-fot .foota1 .foota1b1 .p2 b {
  font-size: 2.5rem;
  display: block;
  line-height: 1.25em;
  font-weight: 500;
  margin-top: 1.125rem;
}
.foot-fot .foota1 .foota1b1 .social-share {
  margin-top: 1.25rem;
}
.foot-fot .foota1 .foota1b1 .social-share a {
  border: none;
  color: #232323;
  font-size: 1.4rem;
  background: #fff;
  width: 2.9375rem;
  height: 2.9375rem;
  line-height: 2.9375rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  font-weight: 400;
}
.foot-fot .foota1 .foota1b1 .social-share a:hover {
  background: var(--color-zt);
  color: #fff;
}
.foot-fot .foota2 {
  color: #fff;
  font: 400 1.125rem/1.65em "Noto Sans SC";
  padding: 2.8125rem 0;
  background: #232323;
}
@media (max-width: 768px) {
  .foot-fot .foota2 {
    font-size: 1rem;
    padding: 0.25rem 0 1.65rem;
  }
}
.foot-fot .foota2 a {
  color: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.foot-fot .foota2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: var(--color-zt);
}
.foot-fot .foota2 a:hover {
  color: var(--color-zt);
}
.foot-fot .foota2 a:hover::after {
  width: 100%;
}
.foot-fot .foota2 p + p {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

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

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

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}
@media (max-width: 768px) {
  .zd_erha .aat_list {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li::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 #ddd;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  background: #fff;
}

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

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

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

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

.ajhhsd {
  color: #A7A5A5;
  font: 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*/
.ny-body {
  background: #E9E9E9;
}

.nbanner {
  position: relative;
  padding: 17.5rem 0 16.875rem;
}
@media (max-width: 768px) {
  .nbanner {
    padding: 4rem 0;
  }
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #000000;
}
.nbanner .nbanner-wen1 .banner-cont .tit {
  width: 43.4285714286%;
  font-size: 4.375rem;
  line-height: 1.125em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .tit {
    font-size: 2rem;
    width: 100%;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  width: 41.8571428571%;
  font-size: 1.375rem;
  line-height: 1.85em;
}
.nbanner .nbanner-wen1 .banner-cont .p1 p + p {
  margin-top: 0.5em;
}
.nbanner .nbanner-wen1 .banner-cont .p1 span {
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 1.125rem;
    line-height: 1.75em;
    width: 100%;
    margin-top: 1rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p1 .n_src {
  margin-left: auto;
  width: 50%;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 .n_src {
    width: 100%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p1 .n_src li a {
  display: block;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.5em;
  padding: 0.35em 0;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 .n_src li a {
    font-size: 1.25rem;
    padding: 0.125em 0;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p1 .n_src li a:hover {
  color: var(--color-zt);
}

.casebanner {
  padding: 15rem 0 6rem;
}
@media (max-width: 768px) {
  .casebanner {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .casebanner .as1 {
    margin-top: 1rem;
  }
}
.casebanner .as1 li {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.casebanner .as1 li + li {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .casebanner .as1 li + li {
    margin-top: 1rem;
  }
}
.casebanner .as1 li .tit1 {
  color: rgba(51, 51, 51, 0.7);
  font-size: 1.65rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .casebanner .as1 li .tit1 {
    font-size: 1.25rem;
  }
}
.casebanner .as1 li .as {
  color: var(--color-zt);
  font-size: 4.125rem;
  line-height: 1em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .casebanner .as1 li .as {
    font-size: 2.25rem;
  }
}
.casebanner .n_src {
  gap: 1rem 1.5rem;
  margin-top: 5.5rem;
}
@media (max-width: 768px) {
  .casebanner .n_src {
    width: 100%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.75rem;
    gap: 0 1rem;
  }
}
.casebanner .n_src li a {
  display: block;
  font-size: 1.65rem;
  color: #333;
  line-height: 1.5em;
  padding: 0.35em 0;
}
@media (max-width: 768px) {
  .casebanner .n_src li a {
    font-size: 1.25rem;
    padding: 0.125em 0;
  }
}
.casebanner .n_src li a:hover {
  color: var(--color-zt);
}

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

.news-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3rem;
}
@media (max-width: 768px) {
  .news-content {
    padding: 2.5rem 0 1rem;
  }
}
.news-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #fff;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
}
.news-content .a3a1c1 {
  background: #F6F6F6;
  border-radius: 3.75rem;
  padding: 0.3125rem;
  gap: 0 0.25rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.news-content .a3a1c1 li a {
  display: block;
  color: #000000;
  font-size: 1.25rem;
  line-height: 3.25rem;
  padding: 0 1.5em;
  border-radius: 3.75rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .news-content .a3a1c1 li a {
    font-size: 1.125rem;
    line-height: 2.865rem;
  }
}
.news-content .a3a1c1 li.on a, .news-content .a3a1c1 li:hover a {
  background: #1E1C1B;
  color: #fff;
}
.news-content .xwa1 {
  margin-top: 4.0625rem;
}
@media (max-width: 768px) {
  .news-content .xwa1 {
    margin-top: 1.5rem;
  }
}
.news-content .xwa1 li .cont-p {
  width: 42.8571428571%;
}
@media (max-width: 768px) {
  .news-content .xwa1 li .cont-p {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem;
  }
}
.news-content .xwa1 li .cont-p .date span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.875rem;
  background: #F6F6F6;
  border-radius: 0.3125rem;
  padding: 0 0.5em;
}
.news-content .xwa1 li .cont-p .date p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-left: 1em;
}
.news-content .xwa1 li .cont-p a.tit {
  display: block;
  color: #000000;
  font-size: 2rem;
  line-height: 1.35em;
  font-weight: 600;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .news-content .xwa1 li .cont-p a.tit {
    font-size: 1.5rem;
  }
}
.news-content .xwa1 li .cont-p a.tit:hover {
  color: var(--color-zt);
}
.news-content .xwa1 li .cont-p .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .news-content .xwa1 li .cont-p .p1 {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}
.news-content .xwa1 li .cont-p a.more-b {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-content .xwa1 li .cont-p a.more-b {
    margin-top: 1rem;
  }
}
.news-content .xwa1 li .img {
  width: 50%;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-content .xwa1 li .img {
    width: 100%;
    border-radius: 1.125rem;
  }
}
.news-content .xwa1 li .img img {
  width: 100%;
}
.news-content .xwa2 {
  margin-top: 2.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .news-content .xwa2 {
    margin-top: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.news-content .xwa2 li a.imgxa {
  display: block;
  background: #F6F6F6;
  height: 100%;
  padding: 2.375rem 2rem;
  border-radius: 2.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .news-content .xwa2 li a.imgxa {
    border-radius: 1.5rem;
    padding: 1.75rem 1.85rem;
  }
}
.news-content .xwa2 li a.imgxa .tag {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.5em;
}
.news-content .xwa2 li a.imgxa .tit {
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .news-content .xwa2 li a.imgxa .tit {
    font-size: 1.35rem;
  }
}
.news-content .xwa2 li a.imgxa .data {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
.news-content .xwa2 li a.imgxa i {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #333333;
}
@media (max-width: 768px) {
  .news-content .xwa2 li a.imgxa i {
    margin-top: 0.75rem;
  }
}
.news-content .xwa2 li a.imgxa:hover {
  background: var(--color-zt);
}
.news-content .xwa2 li a.imgxa:hover .tag {
  color: #fff;
}
.news-content .xwa2 li a.imgxa:hover .tit {
  color: #fff;
}
.news-content .xwa2 li a.imgxa:hover .data {
  color: #fff;
}
.news-content .xwa2 li a.imgxa:hover i {
  color: #fff;
}

.ny-show_bodyxw {
  padding-top: var(--head-height);
}

.show-news-content {
  padding: 6rem 0 4rem;
}
@media (max-width: 768px) {
  .show-news-content {
    padding: 2rem 0;
  }
}
.show-news-content .show-news-a1_v1 {
  width: clamp(320px, 100%, 56.25rem);
  margin: 0 auto;
}
.show-news-content .show-news-a1_v1 a.fh-mre {
  color: #222222;
  font-size: 1.25rem;
  line-height: 2em;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 a.fh-mre {
    font-size: 1.125rem;
  }
}
.show-news-content .show-news-a1_v1 a.fh-mre i {
  font-size: 1rem;
  display: block;
  margin-right: 0.35rem;
}
.show-news-content .show-news-a1_v1 a.fh-mre:hover {
  color: var(--color-zt);
}
.show-news-content .show-news-a1_v1 .title-a {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25em;
  margin: 0.75em 0 0.5em;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-a {
    font-size: 1.75rem;
    line-height: 1.35em;
    margin: 0.35em 0 0.25em;
  }
}
.show-news-content .show-news-a1_v1 .title-b {
  padding-bottom: 1.35rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-b {
    padding-bottom: 0.75rem;
  }
}
.show-news-content .show-news-a1_v1 .title-b .date-a {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-right: 1.5em;
}
.show-news-content .show-news-a1_v1 .title-b .fen-xiang .social-share a {
  border: none;
  color: #232323;
  font-size: 1.25rem;
  background: #fff;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  margin-right: 0.35rem;
  font-weight: 400;
}
.show-news-content .show-news-a1_v1 .title-b .fen-xiang .social-share a:hover {
  background: var(--color-zt);
  color: #fff;
}
.show-news-content .show-news-a1_v1 .content {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 1rem;
  line-height: 1.75em;
  text-align: justify;
}
.show-news-content .show-news-a1_v1 .content img {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.show-news-content .show-news-a1_v1 .pain {
  padding-top: 1rem;
}
.show-news-content .show-news-a1_v1 .pain .shanys {
  font-size: 1rem;
  color: #333;
}
.show-news-content .show-news-a1_v1 .pain .shanys > div {
  padding: 0.25em 0;
}
.show-news-content .show-news-a1_v1 .pain .shanys a {
  color: #333;
}
.show-news-content .show-news-a1_v1 .pain .shanys a:hover {
  color: var(--color-zt);
}

.lx-banner {
  padding: 12.75rem 0 3.25rem;
}
@media (max-width: 768px) {
  .lx-banner {
    padding: 3.5rem 0 2.25rem;
  }
}
.lx-banner .lx-banwen .tit {
  color: #000000;
  font-size: 11.6875rem;
  line-height: 1.25em;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .lx-banner .lx-banwen .tit {
    font-size: 3.5rem;
  }
}
.lx-banner .lx-banwen .img {
  width: 12.375rem;
}
@media (max-width: 768px) {
  .lx-banner .lx-banwen .img {
    width: 6.5rem;
  }
}
.lx-banner .lx-banwen .img img {
  width: 100%;
}

.lx-cont1 {
  padding: 4.25rem 0 7.0625rem;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding: 1rem 0 4rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 {
  width: 42.8571428571%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 {
    width: 100%;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .tit1 {
  color: #000000;
  font-size: 2.5rem;
  line-height: 1.25em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .tit1 {
    font-size: 1.8rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a {
    margin-top: 1.125rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a li + li {
  margin-top: 1.35rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a li + li {
    margin-top: 1rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a li .tit-a {
  color: var(--color-zt);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5em;
  position: relative;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a li .tit-a::after {
  content: "";
  width: 1em;
  height: 2px;
  background: var(--color-zt);
  display: block;
  margin: 0.25em 0 0.5em;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .ash1a li .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.85em;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 {
  width: 51.0714285714%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 {
    width: 100%;
    margin-top: 1.75rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 .tit1 {
  color: #000000;
  font-size: 2.5rem;
  line-height: 1.25em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 .tit1 {
    font-size: 1.8rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form {
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form {
    margin-top: 1.125rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem 2rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a1 .inpt input {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 1rem;
  line-height: 3.125em;
  background: transparent;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a1 .inpt input {
    line-height: 2.9em;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a1 .inpt input:focus {
  border-color: var(--color-zt);
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a3 {
  margin-top: 1.5625rem;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a3 .inpt textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1em 0;
  background: transparent;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a3 .inpt textarea {
    line-height: 1.4em;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .msg-a3 .inpt textarea:focus {
  border-color: var(--color-zt);
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha {
  margin-top: 2rem;
  gap: 1.5rem;
}

.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgh{
  margin-top: 1.5rem;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgh .yazm input {
  width: 40%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 1rem;
  line-height: 3.125em;
  background: transparent;
  margin-right: 1rem;
}
 .lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgh .yazm img{
  height: 3.125rem;
  cursor: pointer;
 }
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgh .yazm input {
    line-height: 2.9em;
  }
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgh .yazm img{
  height: 2.9em;
 }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgh .yazm input:focus {
  border-color: var(--color-zt);
}


@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha {
    margin-top: 1rem;
    gap: 1rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont label {
  color: rgba(34, 34, 34, 0.7);
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont label {
    width: -webkit-calc(100% - 2rem);
    width: -moz-calc(100% - 2rem);
    width: calc(100% - 2rem);
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont label a {
  color: #222222;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont label a:hover {
  color: var(--color-zt);
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont input[type=checkbox] {
  border: none;
  outline: none;
  background-color: #fff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 1.125rem;
  position: relative;
  margin-right: 0.5rem;
  border-radius: 0.3125rem;
  overflow: hidden;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
  background-size: cover;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .yszc-cont input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
  background-size: cover;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x {
  background: var(--color-zt);
  border: 1px solid var(--color-zt);
  color: #fff;
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 0.5rem;
  border-radius: 2.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x span {
  padding: 0 1em 0 1.35em;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x i {
  background: #fff;
  color: var(--color-zt);
  font-size: 1.125rem;
  width: 2.125rem;
  height: 2.125rem;
  line-height: 2.125rem;
  border-radius: 50%;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x:hover {
  color: var(--color-zt);
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x: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);
}
.lx-cont1 .lx-a1v1 .lx-a1b2 form .div_aghgha .more-x:hover i {
  background: var(--color-zt);
  color: #fff;
}

.foot-fot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.case-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 5rem;
}
@media (max-width: 768px) {
  .case-content {
    padding: 2.5rem 0;
  }
}
.case-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #fff;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
}

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

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

.tiles__line {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .tiles__line {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.25rem;
  }
  .tiles__line + .tiles__line {
    margin-top: 1.25rem;
  }
}

.tiles__line-img {
  --tile-margin: 1.5vw;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: -webkit-calc(16.6666% - var(--tile-margin) * 2);
  width: -moz-calc(16.6666% - var(--tile-margin) * 2);
  width: calc(16.6666% - var(--tile-margin) * 2);
  margin: var(--tile-margin);
  -o-background-size: cover;
     background-size: cover;
  background-position: 50% 50%;
  width: 23vw;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tiles__line-img {
    width: 100%;
    margin: 0;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.tiles__line-img a.img {
  display: block;
  position: relative;
}
.tiles__line-img a.img i {
  display: block;
}
.tiles__line-img a.img i img {
  width: 100%;
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .tiles__line-img a.img i img {
    aspect-ratio: 16/11;
  }
}
.tiles__line-img a.img .cont-p {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  padding: 13% 8%;
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .tiles__line-img a.img .cont-p {
    padding: 13% 6%;
  }
}
.tiles__line-img a.img .cont-p .tit {
  font-size: 1.75rem;
  line-height: 1.35em;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 768px) {
  .tiles__line-img a.img .cont-p .tit {
    font-size: 1.5rem;
  }
}
.tiles__line-img a.img .cont-p .as1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1rem;
}
.tiles__line-img a.img .cont-p .as1 li span {
  display: inline-block;
  border: 1px solid #FFFFFF;
  font-size: 0.875rem;
  line-height: 2.4em;
  padding: 0 1.5em;
  border-radius: 3rem;
}
.tiles__line-img a.img:hover .cont-p {
  opacity: 1;
}

.show-case-a1 {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .show-case-a1 {
    padding-top: 1.5rem;
  }
}
.show-case-a1 .tit {
  color: #191919;
  font-size: 4.4375rem;
  font-weight: 500;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .show-case-a1 .tit {
    font-size: 2rem;
  }
}
.show-case-a1 .ftit {
  color: rgba(25, 25, 25, 0.7);
  font-size: 1.875rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .show-case-a1 .ftit {
    font-size: 1.25rem;
  }
}
.show-case-a1 .ash1a {
  margin-top: 3.85rem;
}
@media (max-width: 768px) {
  .show-case-a1 .ash1a {
    margin-top: 1.25rem;
    gap: 0.5rem;
  }
}
.show-case-a1 .ash1a li {
  color: rgba(25, 25, 25, 0.4);
  font-size: 1.25rem;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  .show-case-a1 .ash1a li {
    font-size: 1.125rem;
  }
  .show-case-a1 .ash1a li:last-child {
    width: 100%;
  }
}
.show-case-a1 .ash1a li b {
  color: rgba(25, 25, 25, 0.7);
  font-size: 1.5rem;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .show-case-a1 .ash1a li b {
    font-size: 1.25rem;
  }
}
.show-case-a1 .ash1a li .p1b {
  gap: 0.5rem;
}
.show-case-a1 .ash1a li .p1b i {
  display: block;
  font-size: 0;
  width: 1.75rem;
}
.show-case-a1 .ash1a li .p1b i img {
  width: 100%;
}
.show-case-a1 .ash1a li .p1b u {
  display: block;
  font-size: 0;
  width: 0.5625rem;
}
.show-case-a1 .ash1a li .p1b u img {
  width: 100%;
}

.ny-show-case_body {
  padding-top: -webkit-calc(var(--head-height) * 2.5);
  padding-top: -moz-calc(var(--head-height) * 2.5);
  padding-top: calc(var(--head-height) * 2.5);
}
.ny-show-case_body .show-case-content {
  background: #fff;
}
.ny-show-case_body .show-case-content .show-case-a2 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a2 {
    margin-top: 1rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a2 img {
  width: 100%;
  aspect-ratio: 1920/800;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a2 img {
    aspect-ratio: 1920/1000;
  }
}
.ny-show-case_body .show-case-content .gong-tit {
  color: #191919;
  font-size: 4.375rem;
  line-height: 1em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .gong-tit {
    font-size: 2rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 {
  background: #FFFFFF;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
  margin-top: -5.8125rem;
  padding: 9.8125rem 0 5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 {
    margin-top: -2rem;
    padding: 2.5rem 0 2rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v1 .gong-tit {
  width: 25%;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v1 .gong-tit {
    width: 100%;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v1 .p1 {
  width: 70%;
  color: #373737;
  font-size: 1.375rem;
  line-height: 2em;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v1 .p1 {
    width: 100%;
    font-size: 1.125rem;
    margin-top: 1rem;
    text-align: justify;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 {
  margin-top: 15.5rem;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 {
    margin-top: 2.75rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa {
  position: relative;
  margin-top: 3.9375rem;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa {
    margin-top: 1.5rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa u {
  display: block;
  font-size: 0;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa u {
    display: none;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa u img {
  width: 100%;
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  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) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 {
    position: static;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    margin-top: 1rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li {
  width: 33.3333333333%;
  text-align: center;
  padding: 0 4%;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li {
    width: 100%;
  }
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li + li {
    margin-top: 1.5rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li .tit {
  color: var(--color-zt);
  font-size: 1.875rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li .tit {
    font-size: 1.5rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li .p1 {
  color: #373737;
  font-size: 1.25rem;
  line-height: 1.6em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li .p1 {
    font-size: 1.125rem;
    margin-top: 0.65rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v2 .show-case-a3v2-cxa .xmthga1 li .p1 span {
  white-space: nowrap;
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 {
  padding: 2.25rem 0 0;
  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;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 {
    padding-top: 0;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 .img {
  width: 60.9285714286%;
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 .img + .img {
  margin-left: -35%;
  margin-top: 25%;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 .img + .img {
    margin-top: 15%;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 .img img {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 853/1186;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 0.75rem 0.1rem rgba(0, 0, 0, 0.05);
  object-position: top;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v3 .img img {
    border-radius: 1rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v4 {
  margin-top: 4rem;
  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) {
  .ny-show-case_body .show-case-content .show-case-a3 .show-case-a3v4 {
    margin-top: 2rem;
  }
}
.ny-show-case_body .show-case-content .show-case-a4 {
  padding: 1.75rem 0 11.875rem;
}
@media (max-width: 768px) {
  .ny-show-case_body .show-case-content .show-case-a4 {
    padding: 1.75rem 0 2.875rem;
  }
  .ny-show-case_body .show-case-content .show-case-a4 .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p {
    color: #333;
  }
  .ny-show-case_body .show-case-content .show-case-a4 .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b {
    color: #333;
    border-color: #B9B9B9;
    margin-top: 1rem;
  }
  .ny-show-case_body .show-case-content .show-case-a4 .a1v3-c1 .mySwiper2 .swiper-slide .img .cont-p a.more-b:hover {
    color: #fff;
    border-color: var(--color-zt);
  }
}

.abt-bodya {
  --color-caption: #fff;
  background: #232323;
}
.abt-bodya .foot-fot::after {
  background: #232323;
}
.abt-bodya .nbanner {
  padding-bottom: 4rem;
}
.abt-bodya .nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}
.abt-bodya .head .head2 .logo a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.abt-bodya .head .head2 .toubuas {
  color: #fff;
}
.abt-bodya .head .head2 .toubuas u img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.ny-title {
  color: #333;
}
.ny-title .tit {
  font-size: 4rem;
  line-height: 1.25em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ny-title .tit {
    font-size: 2rem;
  }
}
.ny-title .txt {
  font-size: 1.375rem;
  line-height: 1.85em;
  width: clamp(320px, 100%, 36.625rem);
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .ny-title .txt {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.abt-cont2 {
  padding-top: 7rem;
}
@media (max-width: 768px) {
  .abt-cont2 {
    padding-top: 4rem;
  }
}

.abt-cont3 {
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 4rem 0 0;
  }
}
.abt-cont3 .ny-title {
  width: 62%;
}
@media (max-width: 768px) {
  .abt-cont3 .ny-title {
    width: 100%;
  }
}
.abt-cont3 .ny-title .txt {
  width: 100%;
}
.abt-cont3 .wehs1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .abt-cont3 .wehs1 {
    width: 100%;
    margin-top: 1.85rem;
  }
}
.abt-cont3 .wehs1 .data {
  font-weight: 600;
  font-size: 10.5rem;
  line-height: 1em;
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .abt-cont3 .wehs1 .data {
    font-size: 4rem;
  }
}
.abt-cont3 .wehs1 p {
  font-size: 1.5rem;
  line-height: 1.5em;
  color: #333;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .abt-cont3 .wehs1 p {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.project {
  padding: 1rem;
  max-width: 1000px;
  margin: 20vh auto;
  display: grid;
  grid-column-gap: 7vw;
  grid-row-gap: 0.5rem;
}

.project--intro {
  grid-template-columns: 1fr;
  grid-template-areas: "label-name" "name" "label-date" "date" "title" "label-mission" "mission";
}

.project--details {
  grid-template-areas: "label-default" "paragraph";
  grid-template-columns: 1fr;
}

.project--left {
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.project--right {
  -webkit-justify-content: end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.project--details p {
  grid-area: paragraph;
  max-width: 400px;
}

.project__label--default {
  grid-area: label-default;
}

.project p {
  line-height: 1.4;
  margin: 0;
  color: var(--color-text-alt);
}

.project__label {
  color: var(--color-label);
}

.project__label--name {
  grid-area: label-name;
}

.project__label--date {
  grid-area: label-date;
}

.project__label--mission {
  grid-area: label-mission;
}

.project__name {
  grid-area: name;
}

.project__date {
  grid-area: date;
}

.project__mission {
  grid-area: mission;
  line-height: 1.4;
}

.project__mission p:first-child {
  grid-area: p1;
}

.project__mission p:child {
  grid-area: p2;
}

.project__mission p {
  color: var(--color-text-alt);
}

.project__title {
  grid-area: title;
  font-size: clamp(2rem, 13vw, 8rem);
  font-weight: 400;
  margin: 10vh 0;
  line-height: 1;
}

.project__heading {
  color: var(--color-label);
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.gallery-wrap--auto {
  height: auto;
}

.gallery-wrap--large {
  height: 110vh;
}

.gallery-wrap--dense {
  margin: 0;
}
.gallery-wrap--dense .gallery__item {
  overflow: hidden;
}
.gallery-wrap--dense .gallery__item .cont-p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: scale(1, 1) !important;
     -moz-transform: scale(1, 1) !important;
      -ms-transform: scale(1, 1) !important;
       -o-transform: scale(1, 1) !important;
          transform: scale(1, 1) !important;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 60%, rgba(255, 90, 1, 0.7450980392));
}
.gallery-wrap--dense .gallery__item .cont-p .tit {
  font-size: 2rem;
  color: #fff;
  padding: 0 6%;
  position: absolute;
  left: 0;
  bottom: 1em;
  width: 100%;
}
.gallery-wrap--dense .gallery__item .cont-p .tit span {
  font-size: 1.25rem;
  margin-left: 1em;
}

.gallery {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.gallery--breakout {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.gallery__item {
  background-position: 50% 50%;
  -o-background-size: cover;
     background-size: cover;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border-radius: 6px;
  position: relative;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.gallery__item-cut {
  overflow: hidden;
  display: grid;
  place-items: center;
}

.gallery__item-inner {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  -o-background-size: cover;
     background-size: cover;
  background-repeat: no-repeat;
}

.caption {
  font-size: clamp(1rem, 3vw, 1.375rem);
  z-index: 101;
  color: var(--color-caption);
  font-weight: 400;
  line-height: 2.5;
}

.gallery--row {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  --size-factor: 1.25;
  --item-height: 20vh;
}

.gallery--row .gallery__item {
  width: auto;
  aspect-ratio: 2/3;
}

.gallery--row .gallery__item--s {
  height: var(--item-height);
}

.gallery--row .gallery__item--m {
  height: -webkit-calc(var(--size-factor) * var(--item-height));
  height: -moz-calc(var(--size-factor) * var(--item-height));
  height: calc(var(--size-factor) * var(--item-height));
}

.gallery--row .gallery__item--l {
  height: -webkit-calc(var(--size-factor) * 2 * var(--item-height));
  height: -moz-calc(var(--size-factor) * 2 * var(--item-height));
  height: calc(var(--size-factor) * 2 * var(--item-height));
}

.gallery--row .gallery__item--xl {
  z-index: 100;
  height: -webkit-calc(var(--size-factor) * 3 * var(--item-height));
  height: -moz-calc(var(--size-factor) * 3 * var(--item-height));
  height: calc(var(--size-factor) * 3 * var(--item-height));
}

.gallery--switch.gallery--row .gallery__item--m,
.gallery--switch.gallery--row .gallery__item--l {
  height: var(--item-height);
}

.gallery--row .caption {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -50vh;
  left: 0;
  padding: 4.5vw;
  max-width: 50%;
  opacity: 0;
}

.gallery--switch.gallery--row .caption {
  bottom: 0;
  opacity: 1;
}

.gallery--one {
  display: grid;
  place-items: center;
}

.gallery--one .gallery__item {
  width: 400%;
  height: 400%;
  -webkit-filter: brightness(1) hue-rotate(90deg);
          filter: brightness(1) hue-rotate(90deg);
}

.gallery--switch.gallery--one .gallery__item {
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0.7) hue-rotate(0deg);
          filter: brightness(0.7) hue-rotate(0deg);
}

.gallery--one .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  font-size: clamp(2rem, 5vw, 3rem);
  display: grid;
  place-items: center;
}

.gallery--switch.gallery--one .caption {
  margin-top: -50vh;
}

.gallery--grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  row-gap: 2.5vw;
  -webkit-column-gap: 3vw;
     -moz-column-gap: 3vw;
          column-gap: 3vw;
}

.gallery--grid .gallery__item {
  height: 33vh;
  width: 33vw;
}

.gallery--switch.gallery--grid {
  gap: 0;
}

.gallery--switch.gallery--grid .gallery__item {
  height: 110vh;
  width: 110vw;
  -webkit-filter: brightness(0.65);
          filter: brightness(0.65);
}

.gallery--grid .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  padding: 0;
  top: 50%;
  left: 50%;
  margin-top: 50vh;
  margin-left: -50vw;
  display: grid;
  place-items: center;
  max-width: none;
  opacity: 0;
}

.gallery--switch.gallery--grid .caption {
  margin-top: -40vh;
  opacity: 1;
}

.gallery--grid .caption p {
  padding: 50vh 30vw 10vh 10vw;
}

.gallery--switch.gallery--grid .caption p {
  margin-top: 0;
}

.gallery--stack {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 2rem;
  padding: 2rem;
  --offset: 1rem;
}

.gallery--stack .gallery__item {
  border-radius: 1.5vw;
  width: 20vw;
  height: 30vw;
  z-index: 1;
}

.gallery--stack-glass .gallery__item {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

.gallery--switch.gallery--stack .gallery__item {
  grid-area: 1/1/2/2;
}

.gallery--stack .caption {
  position: absolute;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  padding: 5vw;
  color: #000;
  opacity: 0;
  z-index: 0;
  font-size: 1.375rem;
}
.gallery--stack .caption span {
  color: var(--color-zt);
  font-size: 1.65rem;
  font-weight: 700;
}

.gallery--stack .caption p {
  margin: 0;
}

.gallery--switch.gallery--stack .caption {
  left: 0;
  opacity: 1;
}

.gallery--stack-inverse .gallery__item:nth-child(6) {
  z-index: 2;
}

.gallery--stack-inverse .gallery__item:nth-child(5) {
  z-index: 3;
}

.gallery--stack-inverse .gallery__item:nth-child(4) {
  z-index: 4;
}

.gallery--stack-inverse .gallery__item:nth-child(3) {
  z-index: 5;
}

.gallery--stack-inverse .gallery__item:nth-child(2) {
  z-index: 6;
}

.gallery--stack-inverse .gallery__item:nth-child(1) {
  z-index: 7;
}

.gallery--switch.gallery--stack .gallery__item:nth-child(2) {
  margin-left: var(--offset);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(3) {
  margin-left: -webkit-calc(var(--offset) * 2);
  margin-left: -moz-calc(var(--offset) * 2);
  margin-left: calc(var(--offset) * 2);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(4) {
  margin-left: -webkit-calc(var(--offset) * 3);
  margin-left: -moz-calc(var(--offset) * 3);
  margin-left: calc(var(--offset) * 3);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(5) {
  margin-left: -webkit-calc(var(--offset) * 4);
  margin-left: -moz-calc(var(--offset) * 4);
  margin-left: calc(var(--offset) * 4);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(6) {
  margin-left: -webkit-calc(var(--offset) * 5);
  margin-left: -moz-calc(var(--offset) * 5);
  margin-left: calc(var(--offset) * 5);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(7) {
  margin-left: -webkit-calc(var(--offset) * 6);
  margin-left: -moz-calc(var(--offset) * 6);
  margin-left: calc(var(--offset) * 6);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(2) {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(3) {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(4) {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(5) {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(6) {
  -webkit-filter: brightness(0.4);
          filter: brightness(0.4);
}

.gallery--switch.gallery--stack-glass .gallery__item {
  opacity: 0.7;
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(2) {
  -webkit-transform: scale(0.98);
     -moz-transform: scale(0.98);
      -ms-transform: scale(0.98);
       -o-transform: scale(0.98);
          transform: scale(0.98);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(3) {
  -webkit-transform: scale(0.96);
     -moz-transform: scale(0.96);
      -ms-transform: scale(0.96);
       -o-transform: scale(0.96);
          transform: scale(0.96);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(4) {
  -webkit-transform: scale(0.94);
     -moz-transform: scale(0.94);
      -ms-transform: scale(0.94);
       -o-transform: scale(0.94);
          transform: scale(0.94);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(5) {
  -webkit-transform: scale(0.92);
     -moz-transform: scale(0.92);
      -ms-transform: scale(0.92);
       -o-transform: scale(0.92);
          transform: scale(0.92);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(6) {
  -webkit-transform: scale(0.9);
     -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
       -o-transform: scale(0.9);
          transform: scale(0.9);
}

.gallery--gridtiny {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 300%;
  padding: 0 2vh;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  gap: 1vh;
}

.gallery--switch.gallery--gridtiny {
  width: 100%;
  gap: 2vh;
}

.gallery--gridtiny .gallery__item {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -webkit-filter: contrast(0.8) saturate(0) brightness(0.6) opacity(1);
          filter: contrast(0.8) saturate(0) brightness(0.6) opacity(1);
}

.gallery--switch.gallery--gridtiny .gallery__item {
  -webkit-filter: contrast(1) saturate(1) brightness(0.8) opacity(0.8);
          filter: contrast(1) saturate(1) brightness(0.8) opacity(0.8);
}

.gallery--gridtiny .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 50%;
  top: 50%;
  margin: -50vh 0 0 -50vw;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 8vw, 4rem);
  opacity: 0;
}

.gallery--switch.gallery--gridtiny .caption {
  opacity: 1;
}

.gallery--switch .gallery__item--center {
  height: 100vh;
  width: 100vw;
  aspect-ratio: auto;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}

.gallery--switch.gallery--bento {
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 15vh;
}

.gallery--bento .gallery__item:nth-child(1) {
  grid-area: 1/1/3/2;
}

.gallery--bento .gallery__item:nth-child(2) {
  grid-area: 1/2/2/3;
}

.gallery--bento .gallery__item:nth-child(3) {
  grid-area: 2/2/4/3;
}

.gallery--bento .gallery__item:nth-child(4) {
  grid-area: 1/3/3/3;
}

.gallery--bento .gallery__item:nth-child(5) {
  grid-area: 3/1/3/2;
}

.gallery--bento .gallery__item:nth-child(6) {
  grid-area: 3/3/5/4;
}

.gallery--bento .gallery__item:nth-child(7) {
  grid-area: 4/1/5/2;
}

.gallery--bento .gallery__item:nth-child(8) {
  grid-area: 4/2/5/3;
}

.gallery--bento .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  font-size: clamp(2rem, 10vw, 5rem);
  display: grid;
  place-items: center;
}

.gallery--switch.gallery--bento .caption {
  margin-top: -50vh;
}

.gallery--grid10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.gallery--switch.gallery--grid10 {
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: 1fr 60vh 1fr;
  grid-gap: 0;
}

.gallery--switch.gallery--grid10 .gallery__item {
  grid-area: 2/2/3/3;
}

.gallery--grid10 .caption {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin: 100vh 0 0 -50vw;
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 8vw, 6rem);
}

.gallery--switch.gallery--grid10 .caption {
  opacity: 1;
  margin-top: -50vh;
}

@media screen and (min-width: 53em) {
  .frame {
    grid-template-columns: auto auto auto 1fr;
    grid-template-areas: "title prev ... sponsor";
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
    justify-items: start;
    grid-gap: 2rem;
  }
  .frame__demos {
    justify-self: end;
  }
  .project--intro {
    grid-template-columns: auto 1fr;
    grid-template-areas: "label-name name" "label-date date" "title title" "label-mission mission";
  }
  .project--details {
    grid-template-areas: "label-default paragraph";
    grid-template-columns: auto auto;
  }
  .project__label {
    text-align: right;
  }
  .project__mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "p1 ..." "... p2";
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .gallery--grid10 {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .gallery--grid10:not(.gallery--switch) .pos-1 {
    grid-area: 1/1;
  }
  .gallery--grid10:not(.gallery--switch) .pos-2 {
    grid-area: 1/2;
  }
  .gallery--grid10:not(.gallery--switch) .pos-3 {
    grid-area: 1/4;
  }
  .gallery--grid10:not(.gallery--switch) .pos-4 {
    grid-area: 1/5;
  }
  .gallery--grid10:not(.gallery--switch) .pos-5 {
    grid-area: 3/6;
  }
  .gallery--grid10:not(.gallery--switch) .pos-6 {
    grid-area: 1/7;
  }
  .gallery--grid10:not(.gallery--switch) .pos-7 {
    grid-area: 1/9;
  }
  .gallery--grid10:not(.gallery--switch) .pos-8 {
    grid-area: 3/10;
  }
  .gallery--grid10:not(.gallery--switch) .pos-9 {
    grid-area: 2/8;
  }
  .gallery--grid10:not(.gallery--switch) .pos-10 {
    grid-area: 4/9;
  }
  .gallery--grid10:not(.gallery--switch) .pos-11 {
    grid-area: 3/8;
  }
  .gallery--grid10:not(.gallery--switch) .pos-12 {
    grid-area: 2/2;
  }
  .gallery--grid10:not(.gallery--switch) .pos-13 {
    grid-area: 3/1;
  }
  .gallery--grid10:not(.gallery--switch) .pos-14 {
    grid-area: 3/4;
  }
  .gallery--grid10:not(.gallery--switch) .pos-15 {
    grid-area: 4/3;
  }
  .gallery--grid10:not(.gallery--switch) .pos-16 {
    grid-area: 4/7;
  }
  .gallery--stack .caption {
    bottom: 35%;
    width: 60vw;
    max-width: 54rem;
  }
  .gallery--switch.gallery--stack .caption {
    left: 40vw;
  }
  body #cdawrap {
    justify-self: end;
  }
}
@media (max-width: 768px) {
  .gallery-wrap {
    height: auto;
  }
  #gallery-1 {
    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;
    padding: 0 4%;
    gap: 1rem 0;
  }
  #gallery-1 .gallery__item {
    width: 48%;
    aspect-ratio: 9/12;
    height: auto;
  }
  #gallery-1 .gallery__item.gallery__item--s1 {
    width: 100%;
    aspect-ratio: 12/8;
  }
  #gallery-1 .caption {
    position: static;
    max-width: 100%;
    opacity: 1;
    padding: 0;
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  #gallery-3 {
    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;
    padding: 0 4%;
    gap: 1rem 0;
    margin-top: 2.5rem;
  }
  #gallery-3 .gallery__item {
    width: 48%;
    height: auto;
    aspect-ratio: 9/15;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #gallery-3 .gallery__item.ast6 {
    display: none;
  }
  #gallery-3 .gallery__item .cont-p .tit {
    font-size: 1.5rem;
    bottom: 0.75em;
  }
  #gallery-3 .gallery__item .cont-p .tit span {
    display: block;
    font-size: 1rem;
    margin-left: 0;
  }
  #gallery-3 .caption {
    position: static;
    max-width: 100%;
    opacity: 1;
    padding: 0;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  #gallery-4 {
    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;
    padding: 0 4%;
    gap: 1rem 0;
    margin-top: 2.5rem;
  }
  #gallery-4 .gallery__item {
    width: 31.333%;
    height: auto;
    aspect-ratio: 9/15;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #gallery-4 .gallery__item.pos-16 {
    display: none;
  }
  #gallery-4 .caption {
    position: static;
    max-width: 100%;
    opacity: 1;
    padding: 0;
    font-size: 2rem;
    margin: 0;
    margin-bottom: 1rem;
    height: auto;
  }
}
.yw-ny-body {
  overflow: visible;
}

.yw-content {
  position: relative;
  z-index: 1;
  --top-a: 4.5rem;
  padding: var(--top-a) 0 3rem;
}
@media (max-width: 768px) {
  .yw-content {
    --top-a: 2.5rem;
    padding: var(--top-a) 0 1rem;
  }
}
.yw-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #fff;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
}
.yw-content .yw_list1 li {
  background: #fff;
  padding: 4rem 0;
  position: sticky;
  top: var(--top-a);
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li {
    padding: 2rem 0;
  }
}
.yw-content .yw_list1 li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.yw-content .yw_list1 li .tit {
  color: #000000;
  font-size: 2.75rem;
  line-height: 1.25em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .tit {
    font-size: 1.85rem;
  }
}
.yw-content .yw_list1 li .cont-p {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p {
    margin-top: 1.25rem;
  }
}
.yw-content .yw_list1 li .cont-p .img {
  width: 51.7142857143%;
  background: #232323;
  border-radius: 1.875rem;
  aspect-ratio: 724/506;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p .img {
    width: 100%;
    border-radius: 1rem;
  }
}
.yw-content .yw_list1 li .cont-p .img img {
  width: 100%;
}
.yw-content .yw_list1 li .cont-p .vontx-ax {
  width: 41.8571428571%;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p .vontx-ax {
    width: 100%;
    margin-top: 0.25rem;
  }
}
.yw-content .yw_list1 li .cont-p .vontx-ax .txt {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p .vontx-ax .txt {
    font-size: 1.125rem;
  }
}
.yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 {
  color: #ED4C22;
  font-size: 1.65rem;
  line-height: 1.5em;
  margin: 1rem 0 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 {
    font-size: 1.35rem;
    margin: 1rem 0 1.25rem;
  }
}
.yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 dl + dl {
  margin-top: 0.5rem;
}
.yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 .p1 i {
  display: block;
  font-size: 0;
  width: 1.35rem;
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 .p1 i {
    width: 1.125rem;
  }
}
.yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 .p1 i img {
  width: 100%;
}
.yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 .p1 p {
  width: -webkit-calc(100% - 1.35rem);
  width: -moz-calc(100% - 1.35rem);
  width: calc(100% - 1.35rem);
}
@media (max-width: 768px) {
  .yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 .p1 p {
    width: -webkit-calc(100% - 1.125rem);
    width: -moz-calc(100% - 1.125rem);
    width: calc(100% - 1.125rem);
  }
}
.yw-content .yw_list1 li .cont-p .vontx-ax .ct-a1 .txt1 {
  color: #666;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.125rem;
  font-weight: 400;
}

.rightfixa {
  position: fixed;
  right: 1.82292%;
  bottom: 20%;
  z-index: 999;
  text-align: center;
}

.rightfixa a.ass {
  display: block;
  width: 5.0625rem;
}

.rightfixa a.ass img {
  width: 100%;
}

.rightfixa .fix_ul1 li {
  position: relative;
  margin-top: 1rem;
}

.rightfixa .fix_ul1 li i {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  position: relative;
  background: #000;
  border-radius: 50%;
  line-height: 3.8rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
  text-align: center;
  /* border: 1px solid #EEEEEE; */
  font-size: 2rem;
  margin: 0 auto;
  cursor: pointer;
  color: #fff;
}

.rightfixa .fix_ul1 li .right_div1 {
  position: absolute;
  z-index: -1;
  padding: 2rem 2rem;
  width: auto;
  text-align: center;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: -100%;
  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 2px 10px 2px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.25rem;
  background: #fff;
  border-radius: 1.25rem;
  white-space: nowrap;
  width: 26rem;
  border: 1px solid #DEDEDE;
}

.rightfixa .fix_ul1 li .right_div1::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  width: 2rem;
  height: 100%;
  top: 0;
}

.rightfixa .fix_ul1 li:hover i {
  background: #FF5C01;
  color: #fff;
}

.rightfixa .fix_ul1 li:hover .right_div1 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.right_div1 .cont-p .as-a1 {
  width: 55%;
  text-align: left;
}

.right_div1 .cont-p .as-a2 {
  width: 35%;
  padding: 0.75rem;
  background: #F4F4F4;
  border-radius: 0.65rem;
}

.right_div1 .cont-p .as-a2 img {
  width: 100%;
}

.right_div1 .cont-p .as-a1 .tit {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5em;
}

.right_div1 .cont-p .as-a1 .p, .right_div1 .cont-p .as-a1 .p a {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.5rem 0 1rem;
}

.right_div1 .cont-p .as-a1 .p span {
  color: #FF5C01;
}

.right_div1 .cont-p .as-a1 .more-b {
  font-size: 0.75rem;
  overflow: hidden;
}

.er-xw-txt {
  color: #333;
  font-size: 2.25rem;
  line-height: 1.5em;
  text-align: center;
  text-wrap: balance;
  font-weight: 500;
}

@media (max-width: 768px) {
  .rightfixa {
    display: none;
  }
  .er-xw-txt {
    font-size: 1.5rem;
  }
}
.case-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.case-list > li + li {
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .case-list > li + li {
    margin-top: 2.25rem;
  }
}
.case-list > li:nth-child(6n+1) {
  width: 80%;
}
.case-list > li:nth-child(6n+1) a.img i img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .case-list > li:nth-child(6n+1) a.img i img {
    aspect-ratio: inherit;
  }
}
.case-list > li:nth-child(6n+2) {
  width: 47%;
  padding-top: 8rem;
}
@media (max-width: 768px) {
  .case-list > li:nth-child(6n+2) {
    padding-top: 0;
  }
}
.case-list > li:nth-child(6n+3) {
  width: 47%;
}
.case-list > li:nth-child(6n+4) {
  width: 80%;
  margin-left: auto;
}
.case-list > li:nth-child(6n+4) a.img i img {
  aspect-ratio: 16/8;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .case-list > li:nth-child(6n+4) a.img i img {
    aspect-ratio: inherit;
  }
}
.case-list > li:nth-child(6n+5) {
  width: 47%;
}
.case-list > li:nth-child(6n+6) {
  width: 47%;
  padding-top: 8rem;
}
@media (max-width: 768px) {
  .case-list > li:nth-child(6n+6) {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .case-list > li {
    width: 100% !important;
  }
  .case-list > li + li {
    margin-top: 1.5rem;
  }
}
.case-list > li a.img {
  display: block;
}
.case-list > li a.img .imasg1 {
  overflow: hidden;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .case-list > li a.img .imasg1 {
    border-radius: 1rem;
  }
}
.case-list > li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.case-list > li a.img i img {
  width: 100%;
}
@media (max-width: 768px) {
  .case-list > li a.img i img {
    aspect-ratio: 16/10 !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.case-list > li a.img .cont-p {
  color: #06070a;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .case-list > li a.img .cont-p {
    padding-top: 0;
  }
}
.case-list > li a.img .cont-p .tit {
  font-size: 2rem;
  line-height: 1.5em;
  margin-top: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .case-list > li a.img .cont-p .tit {
    font-size: 1.5rem;
  }
}
.case-list > li a.img .cont-p .p1 {
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .case-list > li a.img .cont-p .p1 {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
}
.case-list > li a.img .cont-p .as1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .case-list > li a.img .cont-p .as1 {
    margin-top: 0.5rem;
  }
}
.case-list > li a.img .cont-p .as1 li span {
  display: inline-block;
  border: 1px solid #666;
  font-size: 0.875rem;
  line-height: 2.4em;
  padding: 0 1.5em;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .case-list > li a.img .cont-p .as1 li span {
    line-height: 2.124em;
    padding: 0 1.25em;
  }
}
.case-list > li a.img:hover .cont-p .tit {
  color: var(--color-zt);
}

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

.abt-cont4 {
  position: relative;
  z-index: 1;
  padding: 10.875rem 0 14.875rem;
}
@media (max-width: 768px) {
  .abt-cont4 {
    padding: 5rem 0 7rem;
    margin-top: 2.5rem;
  }
}
.abt-cont4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}
.abt-cont4::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-linear-gradient(bottom, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(bottom, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(bottom, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
.abt-cont4 u > img {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.abt-cont4 video {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .abt-cont4 video {
    display: none;
  }
}
.abt-cont4 .wh {
  position: relative;
  z-index: 1;
}
.abt-cont4 .a4v1 {
  text-align: center;
}
.abt-cont4 .a4v1 .entit-at {
  text-align: center;
  color: var(--color-zt);
  font-size: 1.5rem;
  line-height: 1.35em;
  position: relative;
  text-transform: uppercase;
}
.abt-cont4 .a4v1 .entit-at:after {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background: var(--color-zt);
  margin: 0.35rem auto;
}
.abt-cont4 .a4v1 .tit {
  color: #000000;
}
.abt-cont4 .a4v1 .txt {
  color: #000000;
  width: 70%;
  text-wrap: balance;
  word-break: keep-all;
  margin: 1.5rem auto 0;
  line-height: 2.5em;
}
@media (max-width: 768px) {
  .abt-cont4 .a4v1 .txt {
    width: 100%;
    margin: 1rem auto 0;
    line-height: 2em;
  }
}

.abt-cont5 {
  padding: 7rem 0 8rem;
  position: relative;
}
.abt-cont5 .wh {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .abt-cont5 {
    padding: 2.5rem 0 0.5rem;
  }
}
.abt-cont5 .ny-title {
  text-align: center;
}
.abt-cont5 .ny-title .tit {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .abt-cont5 .ny-title .tit {
    font-size: 1.5rem;
  }
}
.abt-cont5 .abt-a5v1 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .abt-cont5 .abt-a5v1 {
    margin-top: 0.65rem;
  }
}
.abt-cont5 .abt-a5v1 .as1a1-x {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .abt-cont5 .abt-a5v1 .as1a1-x {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1rem;
  }
}
@media (max-width: 768px) {
  .abt-cont5 .abt-a5v1 .as1a1-x li:nth-child(n+7) {
    display: none;
  }
}
.abt-cont5 .abt-a5v1 .as1a1-x li a {
  display: block;
  font-size: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  overflow: hidden;
}
.abt-cont5 .abt-a5v1 .as1a1-x li a img {
  width: 100%;
}
.abt-cont5 .abt-a5v1 .as1a1-x li a:hover {
  border-color: var(--color-zt);
}

.abt-body {
  background: #fff;
}
.abt-body .nbanner {
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .abt-body .nbanner {
    padding-bottom: 2rem;
  }
}

.scrollSe {
  position: relative;
  z-index: 1;
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .scrollSe {
    margin-top: 0;
  }
}
.scrollSe::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6.6145833333%;
  height: 4.015vw;
  background: var(--color-zt);
  z-index: -1;
}
@media (max-width: 768px) {
  .scrollSe::before {
    display: none;
  }
}
.scrollSe::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6.6145833333%;
  height: 4.015vw;
  background: var(--color-zt);
  z-index: -1;
}
@media (max-width: 768px) {
  .scrollSe::after {
    display: none;
  }
}
.scrollSe .bottom .box {
  position: relative;
}
.scrollSe .bottom .box .bg {
  display: block;
  font-size: 0;
}
@media (max-width: 768px) {
  .scrollSe .bottom .box .bg {
    display: none;
  }
}
.scrollSe .bottom .box .bg img {
  width: 100%;
}
.scrollSe .bottom .box .left {
  width: 30%;
  text-align: center;
  position: absolute;
  left: 12%;
  top: 32%;
}
@media (max-width: 768px) {
  .scrollSe .bottom .box .left {
    width: 100%;
    position: static;
    text-align: left;
  }
}
.scrollSe .bottom .box .left h4 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-zt);
}
@media (max-width: 768px) {
  .scrollSe .bottom .box .left h4 {
    font-size: 2.75rem;
  }
}
.scrollSe .bottom .box .left h4 span {
  font-weight: 300;
}
.scrollSe .bottom .box .right {
  position: absolute;
  right: 0;
  padding-right: 8%;
  text-align: justify;
  top: 9%;
  width: 43%;
  font-size: 1.375rem;
  line-height: 1.85em;
  color: #000000;
}
.scrollSe .bottom .box .right p:nth-child(2n-1) {
  color: var(--color-zt);
  font-size: 1.65rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .scrollSe .bottom .box .right p:nth-child(2n-1) {
    font-size: 1.35rem;
    margin-top: 0.25rem;
  }
}
.scrollSe .bottom .box .right span {
  white-space: nowrap;
}
@media (max-width: 1366px) {
  .scrollSe .bottom .box .right {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .scrollSe .bottom .box .right {
    width: 100%;
    position: static;
  }
}
@media (max-width: 1024px) {
  .scrollSe .bottom .box .right {
    padding-right: 0;
    top: auto;
    bottom: 4rem;
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .scrollSe .bottom .box .right {
    font-size: 1.125rem;
    line-height: 1.75em;
    width: 100%;
    margin-top: 1rem;
  }
}

.abt-body .nbanner .nbanner-wen1 .banner-cont .tit {
  font-size: 3.75rem;
  line-height: 1.45em;
}
@media (max-width: 768px) {
  .abt-body .nbanner .nbanner-wen1 .banner-cont .tit {
    font-size: 2rem;
  }
}