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

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

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #565656;
  --color-zt: #E6002D;
  --head-height: 6.25rem;
  --cbasta: 13.5416666667%;
  --pandrd: 4.375rem;
  --pantop: 1.75rem;
  --family: "Inter";
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.78125%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
    --pantop: 0;
  }
}

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

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

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

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

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

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

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

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

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

.more-msl {
  display: inline-block;
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 1rem/3.125rem var(--family);
  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.4rem 0.5625rem;
  border-radius: 3.125rem;
  color: var(--color-zt);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: var(--family);
  border: 1px solid var(--color-zt);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.4rem 0.5rem;
  }
}
.more-b > * {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.more-b span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  -webkit-transition-delay: 0.06s;
     -moz-transition-delay: 0.06s;
       -o-transition-delay: 0.06s;
          transition-delay: 0.06s;
  line-height: 2rem;
  text-transform: capitalize;
  padding: 0 1.25em;
}
.more-b i {
  font-size: 1rem;
  -webkit-transition-delay: 0.12s;
     -moz-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  color: var(--color-zt);
  vertical-align: middle;
  border: 1px solid var(--color-zt);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-weight: 600;
  line-height: 1em;
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}
.more-b:hover {
  color: #fff;
}
.more-b:hover > * {
  color: #fff;
}
.more-b:hover i {
  background: #fff;
  color: var(--color-zt);
  border-color: var(--color-zt);
}
.more-b:hover::after {
  -webkit-transform-origin: center left;
     -moz-transform-origin: center left;
      -ms-transform-origin: center left;
       -o-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.more-b.hs {
  color: #fff;
  background: var(--color-zt);
}
.more-b.hs > * {
  color: #fff;
}
.more-b.hs i {
  background: #fff;
  color: var(--color-zt);
  border-color: var(--color-zt);
}
.more-b.hs::after {
  background: #fff;
}
.more-b.hs:hover {
  color: var(--color-zt);
}
.more-b.hs:hover > * {
  color: var(--color-zt);
}
.more-b.hs:hover i {
  background: var(--color-zt);
  color: #fff;
  border-color: var(--color-zt);
}
.more-b.hs: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;
  background: transparent;
  border-color: #fff;
}
.more-b.bs i {
  background: #fff;
  color: var(--color-zt);
  border-color: #fff;
}
.more-b.bs::after {
  background: #fff;
}
.more-b.bs:hover {
  color: var(--color-zt);
}
.more-b.bs:hover > * {
  color: var(--color-zt);
}
.more-b.bs:hover i {
  background: var(--color-zt);
  color: #fff;
  border-color: var(--color-zt);
}
.more-b.bs: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);
}

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

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: -webkit-calc(70vh - 60px);
    padding-bottom: -moz-calc(70vh - 60px);
    padding-bottom: calc(70vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.202764977%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head2 {
  line-height: var(--head-height);
  position: relative;
  background: #fff;
}
.head .head2 .logo a {
  display: block;
}
.head .head2 .logo a img {
  height: 3.9375rem;
}
.head .head2 .zywena {
  position: relative;
  margin-left: 0.65rem;
}
.head .head2 .zywena a.rhgxt {
  color: #434343;
  font: 500 1.125rem/1em var(--family);
  display: block;
}
.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 600;
}
.head .head2 .zywena .seca {
  position: absolute;
  left: 50%;
  width: 5.5rem;
  top: 3.7rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  row-gap: 9px;
  white-space: nowrap;
  display: none;
  text-align: center;
}
.head .head2 .zywena .seca a {
  color: #333;
  display: block;
  line-height: 1.75em;
  font-size: 1rem;
  font-weight: 500;
}
.head .head2 .zywena .seca a + a {
  border-top: 1px solid #333;
}
.head .head2 .zywena .seca a:hover {
  color: var(--color-zt);
}
.head .head2 .sska {
  line-height: 1.25em;
  padding: 0 0 0 2rem;
}
.head .head2 .sska a {
  color: #434343;
  display: block;
}
.head .head2 .sska a i {
  font-size: 1.25rem;
}
.head.sticky .head2 {
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.9);
}

#menu .nav_a1 li {
  float: left;
  position: relative;
}
#menu .nav_a1 li a {
  display: block;
  color: #1B1C21;
  font-family: var(--family);
}
#menu .nav_a1 li > a {
  font-size: 1.125rem;
  padding: 0 1.5625rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1680px) {
  #menu .nav_a1 li > a {
    padding: 0 1.35em;
  }
}
@media (max-width: 1366px) {
  #menu .nav_a1 li > a {
    padding: 0 0.8em;
  }
}
@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.5em;
  }
}
#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 li > a span::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);
}
#menu .nav_a1 li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
}
#menu .nav_a1 li .sec {
  position: absolute;
  top: -webkit-calc(100% + 0.5rem);
  top: -moz-calc(100% + 0.5rem);
  top: calc(100% + 0.5rem);
  width: auto;
  left: 50%;
  background: white;
  z-index: 9;
  text-align: left;
  border-radius: 5px;
  padding: 1.25em 1.8em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(20px);
     -moz-transform: translateX(-50%) translateY(20px);
      -ms-transform: translateX(-50%) translateY(20px);
       -o-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
}
#menu .nav_a1 li .sec a {
  font: 400 1rem/1.5em var(--family);
  padding: 0.35em 0;
  color: #1B1C21;
  white-space: nowrap;
}
#menu .nav_a1 li .sec a:hover {
  color: var(--color-zt);
}
#menu .nav_a1 li .sec1 {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: white;
  z-index: 999;
  text-align: center;
  padding: 2rem 0 7.125rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
   -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
       transform: translateY(20px);
  text-align: left;
  line-height: 1;
  border-top: 1px solid #E4E4E4;
}
#menu .nav_a1 li .sec1 dl {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid #E4E4E4;
  padding: 0 1.5rem;
}
#menu .nav_a1 li .sec1 dl:last-child {
  border-right: 1px solid #E4E4E4;
}
#menu .nav_a1 li .sec1 dl dt {
  margin-bottom: 1rem;
}
#menu .nav_a1 li .sec1 dl dt a {
  display: block;
  color: #1B1C21;
  font: 500 1.125rem/1em var(--family);
  position: relative;
}
#menu .nav_a1 li .sec1 dl dd a {
  display: block;
  color: #96999C;
  font: 400 1rem/1.5em var(--family);
  padding: 0.2rem 0;
}
#menu .nav_a1 li .sec1 dl dd a:hover {
  color: var(--color-zt);
}
#menu .nav_a1 li:hover .sec,
#menu .nav_a1 li:hover .sec1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(-50%) translateY(0);
     -moz-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
       -o-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
#menu .nav_a1 li:hover > a, #menu .nav_a1 li.active > a {
  color: var(--color-zt);
}
#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

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

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

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

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
         transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
       transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
       transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1, .m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 38px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #333;
  font-family: var(--family);
  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: var(--family);
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: var(--family);
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

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

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}
.pc-banner .mySwipera {
  position: relative;
}
.pc-banner .mySwipera .tcas {
  width: 20%;
  max-width: var(--head-height);
  margin: 0 auto 1rem;
}
.pc-banner .mySwipera .tcas img {
  width: 100%;
}
.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}
.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pc-banner .mySwipera .swiper-slide .img > img.aimg {
  visibility: hidden;
}
@media (max-width: 990px) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg {
    visibility: inherit;
  }
}
.pc-banner .mySwipera .swiper-slide .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .swiper-slide .img #myvideo {
    display: none;
  }
}
.pc-banner .mySwipera .banwez1 {
  position: absolute;
  width: 100%;
  z-index: 99;
  color: #FFFFFF;
  left: 0;
  bottom: 15%;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 {
    text-align: center;
    bottom: 28%;
  }
}
.pc-banner .mySwipera .banwez1 .tit {
  font: 700 3.75rem/1.25em var(--family);
  width: 60%;
  text-shadow: 0px 0px 1.25rem rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
    width: 100%;
  }
}
.pc-banner .mySwipera .er-gat {
  position: absolute;
  left: 0;
  bottom: 4.5%;
  width: 100%;
  z-index: 9;
  text-align: center;
}
.pc-banner a.mouse {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}
.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 600 0.875rem/1.5em var(--family);
  margin-bottom: 0.5em;
}
.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: 0.0625rem;
  height: 2rem;
  margin: 0 auto;
  position: relative;
}
.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
}

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

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

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

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
.swiper-pagination1 {
  text-align: center;
}
.swiper-pagination1 span {
  opacity: 1;
  background: transparent;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.625rem;
  margin: 0 0.5rem;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .swiper-pagination1 span {
    margin: 0 0.35rem;
  }
}
.swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination1.hs span {
  border-color: #817E7E;
}
.swiper-pagination1.hs span.swiper-pagination-bullet-active {
  background: var(--color-zt);
  border-color: var(--color-zt);
}

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

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

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

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

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

.overa {
  overflow: hidden;
}

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

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

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

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

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

.gong-p {
  color: var(--color-ys);
  font: 400 1rem/1.65em var(--family);
}

.title1 {
  text-align: center;
  color: #686868;
}
.title1 .tit {
  font-family: var(--family);
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.85rem;
  }
}
.title1.tl {
  text-align: left;
}

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

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

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

@keyframes rotatedHalf1 {
  0% {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.cont1 {
  padding: 4.25rem 0 7rem;
  background: url(https://imgs-data-brwq.oss-cn-shanghai.aliyuncs.com/denais0709/uploads/20240709/30df24db9882e7e0a45c643e0cd485fc.svg) no-repeat left top;
  -o-background-size: 100% auto;
     background-size: 100% auto;
}
@media (max-width: 768px) {
  .cont1 {
    padding: 2rem 0;
  }
}
.cont1 .a1v1 .a1v1c1 .mySwiper6 {
  margin: 2.5rem 0 1rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1v1c1 .mySwiper6 {
    margin: 1.25rem 0 0.65rem;
  }
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img {
  display: block;
  position: relative;
  background: #F3F4F5;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img u {
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img u img {
  width: 100%;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p {
  position: absolute;
  width: 87.4730021598%;
  left: 50%;
  bottom: 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%);
  padding: 1rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p {
    width: 90%;
  }
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p .tit {
  color: #686868;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p .tit span {
  display: block;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p .more-k {
  background: #FFFFFF;
  width: 3.0625rem;
  height: 3.0625rem;
  border-radius: 50%;
  margin: 1.54rem auto 0;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p .more-k i {
  color: #E6002D;
  font-size: 1.25rem;
  font-weight: 600;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img u {
  opacity: 1;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p {
  background: #fff;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 6%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p .tit {
  text-align: left;
}
.cont1 .a1v1 .a1v1c1 .swiper-slide a.img .cont-p .more-k {
  display: none;
}
.cont1 .a1v2 {
  margin-top: 5.3125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 {
    margin-top: 2rem;
  }
}
.cont1 .a1v2 .a1v2c1 {
  position: relative;
  margin-top: 2.625rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v2 .a1v2c1 .swiper-pagination1 {
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .cont1 .a1v2 .a1v2c1 .swiper-pagination1 {
    display: none;
  }
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .gonmg-jt {
    display: none;
  }
}
.cont1 .a1v2 .a1v2c1 .gonmg-jt > div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.cont1 .a1v2 .a1v2c1 .gonmg-jt > div i {
  color: #B7B7B7;
  font-size: 3.5rem;
}
.cont1 .a1v2 .a1v2c1 .gonmg-jt > div i:hover {
  color: var(--color-zt);
}
.cont1 .a1v2 .a1v2c1 .gonmg-jt > div.swiper-button-next1 {
  right: -webkit-calc(var(--cbasta) / -1.3);
  right: -moz-calc(var(--cbasta) / -1.3);
  right: calc(var(--cbasta) / -1.3);
}
.cont1 .a1v2 .a1v2c1 .gonmg-jt > div.swiper-button-prev1 {
  left: -webkit-calc(var(--cbasta) / -1.3);
  left: -moz-calc(var(--cbasta) / -1.3);
  left: calc(var(--cbasta) / -1.3);
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b1 {
  width: 47.2857142857%;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b1 {
    width: 100%;
  }
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b1 .img img {
  width: 100%;
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 {
  width: 56.7857142857%;
  margin-left: -4.0714285714%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 {
    width: 100%;
    margin-left: 0;
  }
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .tit-a1 {
  margin-left: 13%;
  padding: 3rem 0 2.625rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .tit-a1 {
    margin-left: 0;
    padding: 1.25rem 0;
  }
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .tit-a1 b {
  color: #DADADA;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125em;
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .tit-a1 .tit {
  color: #686868;
  font-size: 2.25rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .tit-a1 .tit {
    font-size: 1.5rem;
  }
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .cont-p {
  background: #F3F4F5;
  padding: 5rem 12%;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .cont-p {
    padding: 2rem;
  }
}
.cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .cont-p .more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cont1 .a1v2 .a1v2c1 .mySwiper1 .swiper-slide .cont-v1 .cont-a1b2 .cont-p .more-b {
    margin-top: 1rem;
  }
}

.cont2 {
  background: url(https://imgs-data-brwq.oss-cn-shanghai.aliyuncs.com/denais0709/uploads/20240709/242026c60e5687e878296d181e68c9ab.jpg) no-repeat right top;
  -o-background-size: cover;
     background-size: cover;
  padding: 5.75rem 0 0;
}
@media (max-width: 768px) {
  .cont2 {
    padding-top: 2rem;
  }
}
.cont2 .a2_list1 {
  margin-top: 2.375rem;
  padding-bottom: 3.375rem;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.cont2 .a2_list1 li {
  width: 25%;
  padding: 2.25rem 1.5%;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li {
    width: 50%;
    padding: 1.5rem 1.8%;
  }
}
.cont2 .a2_list1 li .block {
  text-align: center;
}
.cont2 .a2_list1 li .block i {
  width: 7.5rem;
  height: 7.5rem;
  background: #474E54;
  margin: 0 auto;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .block i {
    width: 6rem;
    height: 6rem;
  }
}
.cont2 .a2_list1 li .block i img {
  width: 56.6666666667%;
}
.cont2 .a2_list1 li .block .wenata {
  margin-top: 1rem;
}
.cont2 .a2_list1 li .block .wenata .tit {
  color: #000000;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .cont2 .a2_list1 li .block .wenata .tit {
    font-size: 1.35rem;
  }
}
.cont2 .a2_list1 li .block .wenata .p {
  margin-top: 0.25rem;
}
.cont2 .a2_list1 li:hover {
  background: #FFF;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}
.cont2 .a2_list1 li:hover .block i {
  background: #E6002D;
}
.cont2 .a2v1 {
  border-top: 1px solid #D3D3D3;
  padding: 1.125rem 0;
}
@media (max-width: 768px) {
  .cont2 .a2v1 {
    padding: 1rem 0;
  }
}
.cont2 .a2v1 .mySwiper2 .swiper-slide a.block {
  display: block;
  font-size: 0;
}
.cont2 .a2v1 .mySwiper2 .swiper-slide a.block img {
  width: 100%;
  -webkit-filter: invert(65%) sepia(0%) saturate(0%) hue-rotate(188deg) brightness(96%) contrast(91%);
          filter: invert(65%) sepia(0%) saturate(0%) hue-rotate(188deg) brightness(96%) contrast(91%);
}
.cont2 .a2v1 .mySwiper2 .swiper-slide a.block:hover img {
  -webkit-filter: inherit;
          filter: inherit;
}

.cont3 {
  padding: 4.8125rem 0 9.75rem;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 2rem 0;
  }
}
.cont3 .a3v1 {
  position: relative;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 {
    margin-top: 1.5rem;
  }
}
.cont3 .a3v1 u {
  display: block;
  font-size: 0;
}
.cont3 .a3v1 u img {
  width: 100%;
}
.cont3 .a3v1 .cont-p {
  background: rgba(243, 244, 245, 0.95);
  width: 55.1428571429%;
  padding: 3.875rem 6% 7.5rem;
  position: absolute;
  left: 4%;
  bottom: -4.625rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .cont-p {
    position: static;
    width: 100%;
    padding: 1.5rem;
  }
}
.cont3 .a3v1 .cont-p .more-b {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .cont-p .more-b {
    margin-top: 1rem;
  }
}

.cont4 {
  background: url(https://imgs-data-brwq.oss-cn-shanghai.aliyuncs.com/denais0709/uploads/20240709/81bc56eebaba945cea0b576d92ac1ca4.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 7.5rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .cont4 {
    padding: 3.5rem 0;
  }
}
.cont4 .p1 {
  padding: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .cont4 .p1 {
    padding: 0.65rem 0 1.25rem;
  }
}
.cont4 .more-b {
  margin: 0 auto;
}

.foot-fot {
  position: relative;
  background: #2B2B2B;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 6.75rem 0 8.25rem;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foot-tit {
  color: #FFFFFF;
  font: 600 1.125rem/1.5em var(--family);
}
.foot-fot .foota1 .foot-tit a {
  color: #FFFFFF;
  display: block;
}
.foot-fot .foota1 .dseca {
  margin-top: 0.8em;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font: 400 1rem/1.875em var(--family);
}
.foot-fot .foota1 .dseca > a:hover {
  color: #fff;
}
.foot-fot .foota1 .dseca p {
  color: rgba(255, 255, 255, 0.5);
  font: 400 1rem/1.875em var(--family);
}
.foot-fot .foota1 .fo-a2 .social-share {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .social-share a {
  color: #fff;
  border: none;
  font-size: 1.4rem;
  background: none;
  font-weight: 400;
}
.foot-fot .foota1 .fo-a2 .social-share a + a {
  margin-left: 0.5rem;
}
.foot-fot .foota1 .fo-a2 .social-share a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.foot-fot .foota1 .fo-a3 .foot-tita {
  margin-bottom: 1rem;
}
.foot-fot .foota1 .fo-a3 .foot-tita a {
  display: block;
  color: #FFFEFF;
  font-size: 1.125rem;
  line-height: 1.5em;
}
.foot-fot .foota1 .fo-a3 .foot-tita a:hover {
  color: var(--color-zt);
}
.foot-fot .foota1 .fo-a3 a.qd-more {
  display: block;
  border: 1px solid #FFF;
  background: #363636;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 2.75rem;
  text-transform: capitalize;
  width: 16.25rem;
  text-align: center;
}
.foot-fot .foota1 .fo-a3 a.qd-more:hover {
  background-color: #FFF;
  color: var(--color-zt);
}
.foot-fot .foota2 {
  color: rgba(255, 255, 255, 0.5);
  font: 400 1rem/1.65em var(--family);
  padding: 0.8em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 990px) {
  .foot-fot .foota2 {
    border-top: none;
  }
}
.foot-fot .foota2 a {
  color: rgba(255, 255, 255, 0.5);
}
.foot-fot .foota2 a:hover {
  color: white;
}
.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;
}

.icon-tuite:before {
  content: "\e62a" !important;
  font-family: "iconfont" !important;
}

.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 {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li {
  margin-top: 1.25rem;
}
.zd_erha li > a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: #fff;
  border-radius: 50%;
  line-height: 3.5rem;
  border: 1px solid #D1D1D1;
}
.zd_erha li > a i {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.zd_erha li > a i img {
  height: 1.75rem;
}
.zd_erha li > a:hover {
  background: var(--color-zt);
}
.zd_erha li > a:hover i img {
  -webkit-filter: invert(100%) sepia(77%) saturate(0%) hue-rotate(56deg) brightness(107%) contrast(101%);
          filter: invert(100%) sepia(77%) saturate(0%) hue-rotate(56deg) brightness(107%) contrast(101%);
}
.zd_erha li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1.5rem;
  width: auto;
  text-align: center;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
     -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
       -o-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 0.4rem;
  white-space: nowrap;
}
.zd_erha li .erghgsb {
  width: 7rem;
  padding: 0.3rem;
}
.zd_erha li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

/*内页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: #A6A6A6;
  font: 400 1rem/2rem var(--family);
  padding: 1.2em 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 var(--family);
}
@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 var(--family);
  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 var(--family);
  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 var(--family);
  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 var(--family);
  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 var(--family);
  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 var(--family);
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em var(--family);
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em var(--family);
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em var(--family);
  padding: 1rem 0 3rem;
}
.shzr-content strong {
  color: #333;
}
.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
.nbanner {
  position: relative;
}
.nbanner .img {
  width: 100%;
  font-size: 0;
}
.nbanner .img img {
  width: 100%;
}
.nbanner .nbanner-wen1 {
  width: 100%;
  z-index: 9;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
  text-align: center;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font: 600 3.75rem/1.25em var(--family);
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}

.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 var(--family);
  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;
  }
}

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

.ny-tit .tit {
  color: #686868;
  font: 600 2.25rem/1.25em var(--family);
}
@media (max-width: 768px) {
  .ny-tit .tit {
    font-size: 1.5rem;
  }
}

@-webkit-keyframes technology-anim {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes technology-anim {
  0% {
    -moz-transform: scale(0);
         transform: scale(0);
    opacity: 0;
  }
  70% {
    -moz-transform: scale(0.7);
         transform: scale(0.7);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes technology-anim {
  0% {
    -o-transform: scale(0);
       transform: scale(0);
    opacity: 0;
  }
  70% {
    -o-transform: scale(0.7);
       transform: scale(0.7);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 0;
  }
}

@keyframes technology-anim {
  0% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(0.7);
       -moz-transform: scale(0.7);
         -o-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
.abt-cont1 {
  padding: 1.5rem 0 4.0625rem;
}
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 0.5rem 0 2rem;
  }
}
.abt-cont1 .title1 .tit {
  line-height: 1.1em;
  font-size: 2.8125rem;
}
@media (max-width: 768px) {
  .abt-cont1 .title1 .tit {
    font-size: 1.8rem;
  }
}
.abt-cont1 .title1 .tit span {
  color: var(--color-zt);
}
.abt-cont1 .p1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .abt-cont1 .p1 {
    margin-top: 1rem;
  }
}
.abt-cont1 .abt-a1v1 {
  margin-top: 2rem;
  position: relative;
}
.abt-cont1 .abt-a1v1 u {
  display: block;
  font-size: 0;
}
.abt-cont1 .abt-a1v1 u img {
  width: 100%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b1 {
    display: none;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li {
  position: absolute;
  z-index: 10;
  text-align: center;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li .name {
  color: #565656;
  font: 400 1rem/1.5em var(--family);
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b1 li .name {
    font-size: 0.5rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li::after {
  content: "";
  display: block;
  position: absolute;
  left: -0.5rem;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  background: #565656;
  border-radius: 50%;
  margin-left: -0.3125rem;
  margin-top: -0.3125rem;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li i {
  display: block;
  position: absolute;
  z-index: 10;
  left: -0.5rem;
  right: auto;
  top: 50%;
  bottom: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: #565656 solid 1px;
  border-radius: 50%;
  margin-left: -1.25rem;
  margin-top: -1.25rem;
  opacity: 0;
  -moz-animation: technology-anim 2s infinite linear;
    -o-animation: technology-anim 2s infinite linear;
       animation: technology-anim 2s infinite linear;
  -webkit-animation: technology-anim 2s infinite linear;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li i:nth-child(2) {
  -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
       animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(1) {
  left: 12%;
  top: 56%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(2) {
  left: 17%;
  top: 47%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(3) {
  left: 21%;
  top: 28%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(4) {
  left: 37%;
  top: 42%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(5) {
  left: 74%;
  top: 29%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(6) {
  left: 77%;
  top: 41%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(7) {
  left: 84%;
  top: 62%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(8) {
  left: 85%;
  top: 81%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li:nth-child(9) {
  left: 42%;
  top: 78%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li.hs::after {
  background: var(--color-zt);
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li.hs i {
  border-color: var(--color-zt);
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li.ls::after {
  background: #384385;
}
.abt-cont1 .abt-a1v1 .abt-a3_b1 li.ls i {
  border-color: #384385;
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 {
  margin-top: -20%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 {
    margin-top: -12%;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li {
  width: 28%;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li:nth-child(2) {
  margin-left: 5%;
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li:nth-child(3) {
  margin-top: 5rem;
  width: 45%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li {
    width: 100%;
    margin-top: 1.2rem;
  }
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li:nth-child(2) {
    margin-left: 0;
  }
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li:nth-child(3) {
    margin-top: 1.2rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li span {
  color: #E60012;
  font: 700 5.625rem/1em var(--family);
  display: block;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li span {
    font-size: 3.125rem;
    width: 1em;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li .cont {
  color: #565656;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li .cont {
    margin-left: 1rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li .cont .name {
  font: 400 1.25rem/1.5em var(--family);
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li .cont .name {
    font-size: 1rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a3_b2 li .cont p {
  font: 400 1.25rem/1.5em var(--family);
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a3_b2 li .cont p {
    font-size: 1rem;
  }
}

.abt-cont2 {
  background: #F3F4F5;
  padding: var(--pandrd) 0;
}
.abt-cont2 .abt-a2_list1 {
  margin-top: 2rem;
  padding-right: 25%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 {
    padding-right: 0;
    margin-top: 1rem;
  }
}
.abt-cont2 .abt-a2_list1 li {
  width: 50%;
  font-weight: 500;
  padding: 0.35rem 0;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 li {
    width: 100%;
    -webkit-align-items: baseline;
       -moz-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.abt-cont2 .abt-a2_list1 li i {
  color: #E6002D;
  font-size: 1.125rem;
  margin-right: 0.65rem;
}
.abt-cont2 .abt-a2_list1 li p {
  color: #565656;
  font-size: 1.125rem;
  line-height: 1.5em;
  width: -webkit-calc(100% - 1.775rem);
  width: -moz-calc(100% - 1.775rem);
  width: calc(100% - 1.775rem);
}

.abt-cont3 {
  padding: 3.875rem 0 8.875rem;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 2rem 0;
  }
}
.abt-cont3 .abt-a3v1 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3v1 {
    margin-top: 1rem;
  }
}
.abt-cont3 .abt-a3v1 .mySwiper3 {
  padding: 0 1px;
}
.abt-cont3 .abt-a3v1 .mySwiper3 .swiper-slide a.block {
  display: block;
  border: 1px solid #EDEDED;
  margin: 1rem 0;
}
.abt-cont3 .abt-a3v1 .mySwiper3 .swiper-slide a.block img {
  width: 100%;
}

.abt-cont4 .abt-a4v1 {
  background: #474E54;
  padding: 4.25rem 4%;
}
@media (max-width: 768px) {
  .abt-cont4 .abt-a4v1 {
    padding: 2.8rem 2%;
  }
}
.abt-cont4 .abt-a4v1 .tit {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25em;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  .abt-cont4 .abt-a4v1 .tit {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 1.25rem;
    font-size: 1.45rem;
  }
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-bottom: 1.8rem;
  }
}
@media (max-width: 450px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.product-list li a.img {
  display: block;
  position: relative;
  background: #F3F4F5;
}
.product-list li a.img u {
  display: block;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.product-list li a.img u img {
  width: 100%;
}
.product-list li a.img .cont-p {
  position: absolute;
  width: 87.4730021598%;
  left: 50%;
  bottom: 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%);
  padding: 1rem;
}
@media (max-width: 768px) {
  .product-list li a.img .cont-p {
    width: 90%;
  }
}
.product-list li a.img .cont-p .tit {
  color: #686868;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
.product-list li a.img .cont-p .tit span {
  display: block;
}
.product-list li a.img .cont-p .more-k {
  background: #FFFFFF;
  width: 3.0625rem;
  height: 3.0625rem;
  border-radius: 50%;
  margin: 1.54rem auto 0;
}
.product-list li a.img .cont-p .more-k i {
  color: #E6002D;
  font-size: 1.25rem;
  font-weight: 600;
}
.product-list li a.img u {
  opacity: 1;
}
.product-list li a.img .cont-p {
  background: #fff;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 6%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.product-list li a.img .cont-p .tit {
  text-align: left;
}
.product-list li a.img .cont-p .more-k {
  display: none;
}

.nbanner-wen2 {
  position: absolute;
  left: 0;
  bottom: 3.25rem;
  z-index: 1;
  width: 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .nbanner-wen2 {
    bottom: 1.5rem;
  }
}
.nbanner-wen2 .tit {
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .nbanner-wen2 .tit {
    font-size: 2rem;
  }
}
.nbanner-wen2 .p1 {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.125em;
  border-left: 0.3rem solid #FFF;
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .nbanner-wen2 .p1 {
    font-size: 1rem;
    width: 100%;
  }
}

.pro-show-cont1 .pro-show-a1v1 {
  padding-bottom: 6.875rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 {
    padding-bottom: 2rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
  width: 60.5%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content img {
    padding: 0.5rem 0;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .tit {
  color: #686868;
  font: 600 2.25rem/1.25em var(--family);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .tit {
    font-size: 1.5rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a2, .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a3, .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a2, .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a3, .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 {
    margin-top: 1.5rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a2 .p1 p {
  position: relative;
  padding-left: 0.75em;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a2 .p1 p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a3 table {
  min-width: 480px;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a3 table tr:nth-child(1) {
  background: #F3F4F5;
  border-top: none;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a3 table tr:nth-child(1) td {
  font-weight: 600;
  border-top: none;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a3 table tr td {
  color: #565656;
  font-size: 1rem;
  border-right: none;
  border-left: none;
  vertical-align: middle;
  text-align: center;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 .p3 {
  background: #F3F4F5;
  padding: 1.5rem 4%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 .p3 .imasgxa {
    width: 100%;
    margin-bottom: 1.125rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 .p3 .imasgxa i {
  display: block;
  width: 2.25rem;
  margin-right: 0.5rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 .p3 .imasgxa i img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .content .cp-a4 .p3 .imasgxa p {
  color: #565656;
  font-size: 1rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 {
  width: 35.7142857143%;
  border-left: 1px solid #DFDFDF;
  padding-left: 3.9285714286%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 {
    display: none;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast {
  margin-top: 5rem;
  position: sticky;
  top: -webkit-calc(var(--head-height) + 1rem);
  top: -moz-calc(var(--head-height) + 1rem);
  top: calc(var(--head-height) + 1rem);
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a1 .inpt {
  margin-top: 1.5rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a1 .inpt input {
  width: 100%;
  border: 1px solid #DFDFDF;
  font-size: 1rem;
  line-height: 3.75rem;
  text-indent: 1em;
  text-transform: capitalize;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a1 .inpt textarea {
  width: 100%;
  border: 1px solid #DFDFDF;
  font-size: 1rem;
  line-height: 1.25rem;
  padding: 1em 1em;
  text-transform: capitalize;
  background: #F3F4F5;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .p1 {
  margin-top: 1rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a3 {
  margin-top: 0.5rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a3 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;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a3 input[type=checkbox] {
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a3 input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .msg-a3 input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .div_aghgha {
  margin-top: 1.5rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b2 .weh-ast form .contact1k .div_aghgha .more-b span {
  padding: 0 1.35em 0 2.25em;
}

.cp-show-body {
  overflow: visible;
}

.cap-cont1 {
  padding: 2rem 0 6.25rem;
}
@media (max-width: 768px) {
  .cap-cont1 {
    padding: 0.5rem 0 2rem;
  }
}
.cap-cont1 .cap_list1 li + li {
  margin-top: 6.375rem;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li + li {
    margin-top: 2rem;
  }
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b1 {
  width: 47.2857142857%;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li .cont-v1 .cont-a1b1 {
    width: 100%;
  }
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b1 .img img {
  width: 100%;
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 {
  width: 56.7857142857%;
  margin-left: -4.0714285714%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 {
    width: 100%;
    margin-left: 0;
  }
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 {
  margin-left: 13%;
  padding: 3rem 0 2.625rem;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 {
    margin-left: 0;
    padding: 1.25rem 0;
  }
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 b {
  color: #DADADA;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125em;
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 .tit {
  color: #686868;
  font-size: 2.25rem;
  line-height: 1.125em;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 .tit {
    font-size: 1.5rem;
  }
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p {
  background: #F3F4F5;
  padding: 5rem 12%;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p {
    padding: 2rem;
  }
}
.cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .more-b {
    margin-top: 1rem;
  }
}
.cap-cont1 .cap_list1 li:nth-child(2n) .cont-v1 .cont-a1b1 {
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .cap-cont1 .cap_list1 li:nth-child(2n) .cont-v1 .cont-a1b1 {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.cap-cont1 .cap_list1 li:nth-child(2n) .cont-v1 .cont-a1b2 {
  margin-left: 0;
  margin-right: -4.0714285714%;
}

.res-cont1 .job-list1 li {
  padding: 2.625rem 0;
  border-bottom: 1px solid #D3D2D2;
  position: relative;
}
@media (max-width: 768px) {
  .res-cont1 .job-list1 li {
    padding: 1.5rem 0;
  }
}
.res-cont1 .job-list1 li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #E6002D;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.res-cont1 .job-list1 li .tit-asx {
  --kd-we:7.5rem;
}
@media (max-width: 768px) {
  .res-cont1 .job-list1 li .tit-asx {
    --kd-we: 4.5rem;
  }
}
.res-cont1 .job-list1 li .tit-asx .wehas-a {
  width: var(--kd-we);
}
.res-cont1 .job-list1 li .tit-asx .wehas-a .img {
  width: var(--kd-we);
  height: var(--kd-we);
  background: #E6002D;
  border-radius: 50%;
}
.res-cont1 .job-list1 li .tit-asx .wehas-a .img img {
  width: 56.6666666667%;
}
.res-cont1 .job-list1 li .tit-asx .cont-p {
  width: -webkit-calc(97% - var(--kd-we));
  width: -moz-calc(97% - var(--kd-we));
  width: calc(97% - var(--kd-we));
}
@media (max-width: 768px) {
  .res-cont1 .job-list1 li .tit-asx .cont-p {
    width: 100%;
  }
}
.res-cont1 .job-list1 li .tit-asx .cont-p .dt {
  margin-top: -webkit-calc(var(--kd-we) / 3.5);
  margin-top: -moz-calc(var(--kd-we) / 3.5);
  margin-top: calc(var(--kd-we) / 3.5);
  cursor: pointer;
}
@media (max-width: 768px) {
  .res-cont1 .job-list1 li .tit-asx .cont-p .dt {
    margin-top: 1rem;
  }
}
.res-cont1 .job-list1 li .tit-asx .cont-p .dt .tit {
  color: #565656;
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .res-cont1 .job-list1 li .tit-asx .cont-p .dt .tit {
    font-size: 1.5rem;
  }
}
.res-cont1 .job-list1 li .tit-asx .cont-p .dt i {
  color: #B7B7B7;
  font-size: 1.5rem;
  font-weight: 600;
}
.res-cont1 .job-list1 li .tit-asx .cont-p .dt i.icon-xiangshangjiantou {
  color: #E6002D;
}
.res-cont1 .job-list1 li .wehha-job {
  margin-top: 0.5rem;
}
.res-cont1 .job-list1 li.active::after {
  width: 100%;
}
.res-cont1 .job-list1 li.active .tit-asx .wehas-a .img {
  background: #E6002D;
}

.res-cont2 {
  padding: 1.25rem 0 5rem;
}
@media (max-width: 768px) {
  .res-cont2 {
    padding: 1rem 0 2rem;
  }
}
.res-cont2 .mySwiper4 a.block {
  background: #F3F4F5;
  padding: 1.75rem 1.75rem 0.5rem;
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .res-cont2 .mySwiper4 a.block {
    margin-top: 1.25rem;
    padding: 1rem 1rem 0.5rem;
  }
}
.res-cont2 .mySwiper4 a.block i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.res-cont2 .mySwiper4 a.block i img {
  width: 100%;
}
.res-cont2 .mySwiper4 a.block .tit {
  text-align: center;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0.5rem 0;
  height: 3em;
  overflow: hidden;
}
.res-cont2 .mySwiper4 .swiper-pagination1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .res-cont2 .mySwiper4 .swiper-pagination1 {
    margin-top: 1rem;
  }
}

.eng-cont1 {
  padding: 0.5rem 0 1.8rem;
}

.eng-cont2 {
  padding: 0 0 3.75rem;
}
@media (max-width: 768px) {
  .eng-cont2 {
    padding-bottom: 2rem;
  }
}
.eng-cont2 .mySwiper5 .swiper-slide a.block {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .eng-cont2 .mySwiper5 .swiper-slide a.block {
    margin-top: 1.25rem;
  }
}
.eng-cont2 .mySwiper5 .swiper-slide a.block i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.eng-cont2 .mySwiper5 .swiper-slide a.block i img {
  width: 100%;
}
.eng-cont2 .mySwiper5 .swiper-slide a.block .tit {
  text-align: center;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  height: 3em;
  overflow: hidden;
  margin: 0.5rem 0;
}
.eng-cont2 .mySwiper5 .swiper-pagination1 {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .eng-cont2 .mySwiper5 .swiper-pagination1 {
    margin-top: 0.5rem;
  }
}

.qhse-cont1 {
  padding: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .qhse-cont1 {
    padding: 0.5rem 0 1.5rem;
  }
}
.qhse-cont1 .p1 {
  margin-top: 1rem;
}
.qhse-cont1 .p2 {
  padding: 1.5rem 0 3rem;
}
@media (max-width: 768px) {
  .qhse-cont1 .p2 {
    padding: 1.25rem 0 2rem;
  }
}
.qhse-cont1 .qhse-list1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .qhse-cont1 .qhse-list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.qhse-cont1 .qhse-list1 li a.block {
  padding: 3.5rem 8%;
  background: #F3F4F5;
  height: 100%;
}
@media (max-width: 768px) {
  .qhse-cont1 .qhse-list1 li a.block {
    padding: 2rem 8%;
  }
}
.qhse-cont1 .qhse-list1 li a.block i {
  display: block;
  width: 3.125rem;
}
.qhse-cont1 .qhse-list1 li a.block i img {
  width: 100%;
}
.qhse-cont1 .qhse-list1 li a.block .wenata {
  width: -webkit-calc(95% - 3.125rem);
  width: -moz-calc(95% - 3.125rem);
  width: calc(95% - 3.125rem);
}
.qhse-cont1 .qhse-list1 li a.block .wenata .tit {
  color: #565656;
  font-size: 1.25rem;
  line-height: 1.5em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.qhse-cont1 .qhse-list1 li a.block:hover {
  background: #474E54;
}
.qhse-cont1 .qhse-list1 li a.block:hover i img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.qhse-cont1 .qhse-list1 li a.block:hover .wenata .tit, .qhse-cont1 .qhse-list1 li a.block:hover .wenata .p {
  color: #FFFFFF;
}
.qhse-cont1 .a2v1 {
  border-top: 1px solid #D3D3D3;
  padding: 1.125rem 0;
}
@media (max-width: 768px) {
  .qhse-cont1 .a2v1 {
    padding: 1rem 0;
  }
}
.qhse-cont1 .a2v1 .mySwiper2 .swiper-slide a.block {
  display: block;
  font-size: 0;
}
.qhse-cont1 .a2v1 .mySwiper2 .swiper-slide a.block img {
  width: 100%;
}

.ser-cont1 {
  padding: 1rem 0 4.5rem;
}
@media (max-width: 768px) {
  .ser-cont1 {
    padding: 0.5rem 0 2rem;
  }
}
.ser-cont1 .ser-a1v1 .p1 {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v1 .p1 {
    margin-top: 1rem;
  }
}
.ser-cont1 .ser-a1v2 {
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v2 {
    margin-top: 1.5rem;
  }
}
.ser-cont1 .ser-a1v2 .abt-a2_list1 {
  margin-top: 2rem;
  padding-right: 25%;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v2 .abt-a2_list1 {
    padding-right: 0;
    margin-top: 1rem;
  }
}
.ser-cont1 .ser-a1v2 .abt-a2_list1 li {
  width: 50%;
  font-weight: 500;
  padding: 0.35rem 0;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v2 .abt-a2_list1 li {
    width: 100%;
    -webkit-align-items: baseline;
       -moz-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.ser-cont1 .ser-a1v2 .abt-a2_list1 li i {
  color: #E6002D;
  font-size: 1.125rem;
  margin-right: 0.65rem;
}
.ser-cont1 .ser-a1v2 .abt-a2_list1 li p {
  color: #565656;
  font-size: 1.125rem;
  line-height: 1.5em;
  width: -webkit-calc(100% - 1.775rem);
  width: -moz-calc(100% - 1.775rem);
  width: calc(100% - 1.775rem);
}
.ser-cont1 .ser-a1v3 {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 {
    margin-top: 1.5rem;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li + li {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li + li {
    margin-top: 2rem;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b1 {
  width: 47.2857142857%;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b1 {
    width: 100%;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b1 .img img {
  width: 100%;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 {
  width: 56.7857142857%;
  margin-left: -4.0714285714%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 {
    width: 100%;
    margin-left: 0;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 {
  margin-left: 13%;
  padding: 3rem 0 2.625rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 {
    margin-left: 0;
    padding: 1.25rem 0;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 b {
  color: #DADADA;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125em;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 .tit {
  color: #686868;
  font-size: 2.25rem;
  line-height: 1.125em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .tit-a1 .tit {
    font-size: 1.5rem;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p {
  background: #F3F4F5;
  padding: 5rem 12%;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .p1 {
  max-height: 21.45em;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .p1 {
    max-height: inherit;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .p1::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .p1::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .p1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p p {
  position: relative;
  padding-left: 1em;
  margin-top: 0.25rem;
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p {
    padding: 2rem;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li .cont-v1 .cont-a1b2 .cont-p .more-b {
    margin-top: 1rem;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li:nth-child(2n) .cont-v1 .cont-a1b1 {
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v3 .cap_list1 li:nth-child(2n) .cont-v1 .cont-a1b1 {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.ser-cont1 .ser-a1v3 .cap_list1 li:nth-child(2n) .cont-v1 .cont-a1b2 {
  margin-left: 0;
  margin-right: -4.0714285714%;
}
.ser-cont1 .ser-a1v4 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ser-cont1 .ser-a1v4 {
    margin-top: 1rem;
  }
}

.lx-cont1 {
  padding: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding: 0.5rem 0 1rem;
  }
}
.lx-cont1 .lx_a1_list1 {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx_a1_list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.lx-cont1 .lx_a1_list1 li {
  background: #F3F4F5;
  padding: 2.5rem 3.5%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx_a1_list1 li {
    padding: 1.5rem 8%;
  }
}
.lx-cont1 .lx_a1_list1 li .tit {
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
}
.lx-cont1 .lx_a1_list1 li .cont-p {
  margin-top: 0.75rem;
}
.lx-cont1 .lx_a1_list1 li .cont-p dl {
  padding: 0.5rem 0;
}
.lx-cont1 .lx_a1_list1 li .cont-p dl dt {
  width: 1.5rem;
  margin-right: 0.75rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx_a1_list1 li .cont-p dl dt {
    width: 1.35rem;
    margin-right: 0.5rem;
  }
}
.lx-cont1 .lx_a1_list1 li .cont-p dl dt img {
  width: 100%;
}
.lx-cont1 .lx_a1_list1 li .cont-p dl dd {
  color: #565656;
  font-size: 1rem;
  line-height: 1.5em;
}

.lx-cont2 {
  padding: 2rem 0 6.6875rem;
}
@media (max-width: 768px) {
  .lx-cont2 {
    padding: 1rem 0 2rem;
  }
}
.lx-cont2 form .contact .msg-a1 .inpt {
  margin-top: 1.5rem;
  width: 48.5714285714%;
}
@media (max-width: 768px) {
  .lx-cont2 form .contact .msg-a1 .inpt {
    width: 100%;
  }
}
.lx-cont2 form .contact .msg-a1 .inpt.w100 {
  width: 100%;
}
.lx-cont2 form .contact .msg-a1 .inpt input {
  width: 100%;
  border: 1px solid #DFDFDF;
  font-size: 1rem;
  line-height: 3.75rem;
  text-indent: 1em;

}.lx-cont2 form .contact .msg-a1 .inpt input::placeholder,.lx-cont2 form .contact .msg-a1 .inpt textarea::placeholder{
  text-transform: capitalize;
}
.lx-cont2 form .contact .msg-a1 .inpt textarea {
  width: 100%;
  border: 1px solid #DFDFDF;
  font-size: 1rem;
  line-height: 1.25rem;
  padding: 1em 1em;

  background: #F3F4F5;
}
.lx-cont2 form .contact .p1 {
  margin-top: 1rem;
}
.lx-cont2 form .contact .p1 a:hover,.gong-p a:hover{
  color: var(--color-zt);

}
.lx-cont2 form .contact .msg-a3 {
  margin-top: 0.5rem;
}
.lx-cont2 form .contact .msg-a3 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;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .lx-cont2 form .contact .msg-a3 input[type=checkbox] {
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
  }
}
.lx-cont2 form .contact .msg-a3 input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.lx-cont2 form .contact .msg-a3 input[type=checkbox]:checked::before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-color: #fff;
}
.lx-cont2 form .contact .div_aghgha {
  margin-top: 1.5rem;
}
.lx-cont2 form .contact .div_aghgha .more-b span {
  padding: 0 1.35em 0 2.25em;
}

/* cookies */
.cookic_fix {
  position: fixed;
  right: 0;
  bottom: 0;
  background: #fff;
  width: 312px;
  padding: 0 0;
  margin-bottom: 24px;
  margin-right: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.22);
  z-index: 999;
}
.cookic_fix .tit {
  font-family: "Poppins";
  font-size: 16px;
  line-height: 1.41;
  font-weight: 700;
  padding: 24px 24px 0;
}
.cookic_fix .tit i {
  font-size: 1rem;
  cursor: pointer;
}
.cookic_fix .text {
  margin-top: 8px;
  -ms-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  font-family: "Poppins";
  font-size: 12px;
  font-weight: 400;
  color: #555555;
  line-height: 1.33;
  color: black;
  text-transform: none;
  padding: 0 24px 24px;
}
.cookic_fix .buttona {
  width: 100%;
  border-top: 1px solid #ddd;
}
.cookic_fix .buttona .more {
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
  text-align: center;
  cursor: pointer;
}
.cookic_fix .buttona .more:nth-child(1) {
  width: 27.5%;
}
.cookic_fix .buttona .more:nth-child(2) {
  width: 27.5%;
}
.cookic_fix .buttona .more:nth-child(3) {
  width: 45%;
}
.cookic_fix .buttona .more + .more {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.case-content {
  padding: var(--pandrd) 0 1rem;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .case-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.case-list li a.img {
  display: block;
}
.case-list li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.case-list li a.img i img {
  width: 100%;
}
.case-list li a.img .tit {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5em;
  color: #666;
  padding: 0.65rem 0;
}

.show-news-content {
  padding: 1rem 0 var(--pandrd);
}
@media (max-width: 768px) {
  .show-news-content {
    padding-top: 0;
  }
}
.show-news-content .pain .shanys {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .show-news-content .pain .shanys {
    margin-top: 1rem;
  }
}
.show-news-content .pain .shanys a:hover {
  color: var(--color-zt);
}

.case-show_bja .title-a {
  text-align: center;
  color: #686868;
  font: 600 2.25rem/1.25em var(--family);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .case-show_bja .title-a {
    font-size: 1.5rem;
  }
}.layui-layer-dialog .layui-layer-padding{
  opacity: 0;
  padding: .3125rem!important;    height: 10px!important; 

}