@charset "UTF-8";
body, html {
  font-size: 0.8333333333vw;
}

*::-webkit-scrollbar {
    width: 3px;
    border-radius: 1.5px;
}

*::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar-track {
    background-color: #eee;
}

*::-webkit-scrollbar-thumb {
    background-color: #bb0f25;
}


@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: "Noto Sans SC", "Montserrat", sans-serif;
}

p {
  padding: 0;
  margin: 0;
}

.wh {
  padding: 0 13.5416666667%;
}
@media (max-width: 1366px) {
  .wh {
    padding: 0 5.78125%;
  }
}
@media (max-width: 768px) {
  .wh {
    padding: 0 4%;
  }
}

.wh1 {
  padding: 0 3.9583333333%;
}
@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: #da251c;
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 1rem/3.125rem "Noto Sans SC";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid #da251c;
  -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: #da251c;
  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: #da251c;
}
.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}
.more-msl.hs:before {
  background: #da251c;
}
.more-msl.hs:hover {
  color: #fff;
  border-color: #da251c;
}
.more-msl.ls {
  color: #da251c;
  background: transparent;
  border-color: #da251c;
}
.more-msl.ls:before {
  background: #da251c;
}
.more-msl.ls:hover {
  color: #fff;
}

.more-b {
  --lscore:#da251c;
  display: inline-block;
  padding: 0.65rem 2.35rem;
  border-radius: 3.125rem;
  border: 1px solid var(--lscore);
  color: var(--lscore);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  line-height: 1.6em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.5rem 1.65rem;
  }
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--lscore);
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 3.125rem;
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.more-b:hover {
  color: #fff;
}
.more-b:hover::after {
  -webkit-transform-origin: center left;
     -moz-transform-origin: center left;
      -ms-transform-origin: center left;
       -o-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.more-b.bs {
  --lscore: #fff;
}
.more-b.bs:hover {
  color: #da251c;
}
.more-b.hs {
  --lscore: #787878;
}
.more-b.hs:hover {
  color: #fff;
}
.more-b.hsh {
  --lscore: #da251c;
  color: #fff;
  background: #da251c;
}
.more-b.hsh::after {
  background: #fff;
}
.more-b.hsh:hover {
  color: #da251c;
}

@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;
  }
  
 @media (max-width: 990px) {
	 .pc-banner .swiper-slide.a {height:auto;padding-bottom:0;}
	 .pc-banner .swiper-slide.a .img > img {
    position:relative !important;
  }
 }
  .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;
  }
}
@media (max-width: 990px) {
  .fullpage-wrapper .fp-section, .fullpage-wrapper .fp-tableCell {
    height: auto !important;
  }
  .fullpage-wrapper .fp-tableCell {
    padding: 20vw 0;
  }
  .section1 .fp-tableCell, .section7 .fp-tableCell {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .fullpage-wrapper .fp-tableCell {
    padding: 3.5rem 0;
  }
  .section1 .fp-tableCell, .section7 .fp-tableCell {
    padding: 0;
  }
}
.section {
  overflow: hidden;
  position: relative;
}

.fp-tableCell {
  position: relative;
}

.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
  --color-bs: #fff;
}
.head .head2 {
  line-height: 5.625rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.head .head2 .logo {
  margin-left: 3.75%;
}
.head .head2 .logo a {
  display: block;
}
.head .head2 .logo a img {
  height: 2.7375rem;
}
.head .head2 .logo a img.b {
  display: none;
}
.head .head2 .zywena {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.head .head2 .zywena a.rhgxt {
  color: #FFFFFF;
  width: 5.625rem;
}
.head .head2 .zywena a.rhgxt i {
  font-size: 1.35rem;
  font-weight: 600;
}


.head .head2 .zywena .seca {
  position: absolute;
  left: 0;
  width: 100%;
  top: 5.625rem;
  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 a:hover {
  color: #da251c;
}


.head .head2 .sska {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.head .head2 .sska a {
  color: #FFFFFF;
  width: 5.625rem;
}
.head .head2 .sska a i {
  font-size: 1.35rem;
}
.head .head2 .anta_w {
  width: 5.625rem;
  line-height: 5.625rem;
  height: 5.625rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.head .head2 .anta_w .menu {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  margin-left: -3px;
}
.head .head2 .anta_w .menu span {
  margin: auto;
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--color-bs);
  position: relative;
  vertical-align: middle;
  -webkit-transition: 0.45s;
  -o-transition: 0.45s;
  -moz-transition: 0.45s;
  transition: 0.45s;
  margin-left: 0.2rem;
}
.head .head2 .anta_w .menu span:before {
  content: "";
  position: absolute;
  top: -0.55rem;
  right: -5px;
  height: 2px;
  width: 1.375rem;
  background: var(--color-bs);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.head .head2 .anta_w .menu span:after {
  content: "";
  position: absolute;
  bottom: -0.55rem;
  height: 2px;
  width: 1.375rem;
  background: var(--color-bs);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  right: -5px;
}
.head .head2 .anta_w .menu.active span:before {
  top: 0px;
  right: 0;
  width: 1.5rem;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.head .head2 .anta_w .menu.active span:after {
  bottom: 0px;
  width: 1.5rem;
  right: 0;
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.head .head2 .anta_w .menu.active span {
  background: transparent;
  -webkit-transition-delay: 0s, 0s;
     -moz-transition-delay: 0s, 0s;
       -o-transition-delay: 0s, 0s;
          transition-delay: 0s, 0s;
}
.head:hover .head2, .head.active .head2, .head.sticky .head2 {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.head:hover .head2 .logo a img.b, .head.active .head2 .logo a img.b, .head.sticky .head2 .logo a img.b {
  display: inline-block;
}
.head:hover .head2 .logo a img.a, .head.active .head2 .logo a img.a, .head.sticky .head2 .logo a img.a {
  display: none;
}
.head:hover .head2 .zywena a.rhgxt, .head.active .head2 .zywena a.rhgxt, .head.sticky .head2 .zywena a.rhgxt {
  color: #434343;
  background: #F3F3F3;
}
.head:hover .head2 .sska a, .head.active .head2 .sska a, .head.sticky .head2 .sska a {
  background: #da251c;
}
.head:hover .head2 .anta_w, .head.active .head2 .anta_w, .head.sticky .head2 .anta_w {
  background: #da251c;
}
.head:hover .head2 #menu .asntax a, .head.active .head2 #menu .asntax a, .head.sticky .head2 #menu .asntax a {
  color: #da251c;
  border-color: #da251c;
}
.head:hover .head2 #menu .asntax a:hover, .head.active .head2 #menu .asntax a:hover, .head.sticky .head2 #menu .asntax a:hover {
  color: #fff;
}
.head:hover .head2 #menu .nav_a1 li a, .head.active .head2 #menu .nav_a1 li a, .head.sticky .head2 #menu .nav_a1 li a {
  color: #434343;
}
.head:hover .head2 #menu .nav_a1 li:hover > a, .head:hover .head2 #menu .nav_a1 li.active > a, .head.active .head2 #menu .nav_a1 li:hover > a, .head.active .head2 #menu .nav_a1 li.active > a, .head.sticky .head2 #menu .nav_a1 li:hover > a, .head.sticky .head2 #menu .nav_a1 li.active > a {
  color: #da251c;
}

.ny-show_bodyxw .head .head2 {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ny-show_bodyxw .head .head2 .logo a img.b {
  display: inline-block;
}
.ny-show_bodyxw .head .head2 .logo a img.a {
  display: none;
}


.ny-show_bodyxw .head .head2 .zywena a.rhgxt {
  color: #434343;
  background: #F3F3F3;
}


.ny-show_bodyxw .head .head2 .sska a {
  background: #da251c;
}
.ny-show_bodyxw .head .head2 .anta_w {
  background: #da251c;
}
.ny-show_bodyxw .head .head2 #menu .asntax a {
  color: #da251c;
  border-color: #da251c;
}
.ny-show_bodyxw .head .head2 #menu .asntax a:hover {
  color: #fff;
}
.ny-show_bodyxw .head .head2 #menu .nav_a1 li a {
  color: #434343;
}
.ny-show_bodyxw .head .head2 #menu .nav_a1 li:hover > a, .ny-show_bodyxw .head .head2 #menu .nav_a1 li.active > a {
  color: #da251c;
}

#menu .asntax {
  margin-left: 1rem;
}
#menu .asntax a {
  padding: 0.45rem 1em;
  color: #fff;
  border-color: #fff;
}
#menu .asntax a + a {
  margin-left: 1rem;
}
#menu .nav_a1 li {
  float: left;
  position: relative;
}
#menu .nav_a1 li a {
  display: block;
  color: #FFFFFF;
  font-family: "Noto Sans SC";
}
#menu .nav_a1 li > a {
  font-size: 1.125rem;
  padding: 0 1.25rem;
  -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.8rem;
  }
}
@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.5rem;
  }
}
#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 li > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #da251c;
  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: center;
  border-radius: 5px;
  padding: 10px 0;
  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 "Noto Sans SC";
  padding: 0.6em 1.85em;
  color: #1B1C21;
  white-space: nowrap;
}
#menu .nav_a1 li .sec a:hover {
  color: #da251c !important;
}
#menu .nav_a1 li .sec dl {
  position: relative;
}
#menu .nav_a1 li .sec dl .as-ast {
  position: absolute;
  left: 100%;
  width: auto;
  min-width: 100%;
  top: 0;
  background: white;
  text-align: center;
  border-radius: 5px;
  padding: 10px 0;
  display: none;
}
#menu .nav_a1 li .sec dl .as-ast a {
  font-size: 0.875rem;
  padding: 0.4em 1.25em;
}
#menu .nav_a1 li .sec dl:hover .as-ast {
  display: block;
}
#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 "Noto Sans SC";
  position: relative;
}
#menu .nav_a1 li .sec1 dl dd a {
  display: block;
  color: #96999C;
  font: 400 1rem/1.5em "Noto Sans SC";
  padding: 0.2rem 0;
}
#menu .nav_a1 li .sec1 dl dd a:hover {
  color: #da251c;
}
#menu .nav_a1 li:hover .sec,
#menu .nav_a1 li:hover .sec1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateX(-50%) translateY(0);
     -moz-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
       -o-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.navigators {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 98;
  overflow: hidden;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  background: #fff;
  border-radius: 0px 0px 0px 100%;
}
.navigators.active {
  height: 240%;
  width: 130%;
}
.navigators.active .weggta {
  opacity: 1;
}
.navigators .kasras {
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.navigators .weggta {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.1s ease 0.2s;
  -o-transition: all 0.1s ease 0.2s;
  -moz-transition: all 0.1s ease 0.2s;
  transition: all 0.1s ease 0.2s;
}
.navigators .xl-nav li .name {
  color: #444444;
  font: 600 1.35rem/2em "Noto Sans SC";
  margin-bottom: 1em;
}
.navigators .xl-nav li .text {
  color: #444444;
  font: 400 1.125rem/2em "Noto Sans SC";
}
.navigators .xl-nav li .text:hover {
  color: #da251c;
}

/* 搜索 */
.searchbox {
  top: 5.625rem;
}

.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: #da251c;
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
     -moz-animation: sticky 1s;
       -o-animation: sticky 1s;
          animation: sticky 1s;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
         transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
       transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
       transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1, .m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 38px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #333;
  font-family: "Montserrat";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: "";
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "Noto Sans SC";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Noto Sans SC";
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav > li .sec dl {
  position: relative;
}
.m-bm-nav > li .sec dl .aniut {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li .sec dl .aniut i {
  font-size: 16px;
}
.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: 5.625rem;
  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(218, 37, 28, 0);
}



.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.pc-banner .mySwipera .swiper-slide .img > img.aimg {
  visibility: hidden;
}
@media (max-width: 990px) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg {
    visibility: inherit;
  }
  
  .pc-banner .mySwipera .swiper-slide .img > img{ width:100% !important; height:auto;}
  
}
.pc-banner .mySwipera .swiper-slide .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.pc-banner .mySwipera .banwez1 {
  position: absolute;
  width: 100%;
  z-index: 99;
  color: #FFFFFF;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 {
    text-align: center;
  }
}
.pc-banner .mySwipera .banwez1 .ast1 {
  width: 60%;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .ast1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.pc-banner .mySwipera .banwez1 .ast2 {
  width: 36.3571428571%;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .ast2 {
    width: 50%;
    margin: 0 auto 0.5rem;
  }
}
.pc-banner .mySwipera .banwez1 .ast2 img {
  width: 100%;
  -webkit-box-reflect: below 0 -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.15) 100%);
  box-reflect: below 0 linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.pc-banner .mySwipera .banwez1 .wh .ban-box{ background:rgba(0,0,0, 0.4); padding:5rem 0; position:relative;}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .wh .ban-box{ padding:1rem 0; }
}



.pc-banner .mySwipera .banwez1 .tit {
  font: 700 3.7125rem/1.25em "Noto Sans SC";
  text-transform: uppercase;
  letter-spacing:0.2rem;
  color:#da251c;
  text-shadow: 1px 1px rgba(0,0,0,0.2);
  padding-left:3.5rem;
}



@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 1.5rem;
  }
}
.pc-banner .mySwipera .banwez1 .p {
  font: 700 2.275rem/1.25em "Noto Sans SC";
  margin-top: 2.5rem;
  text-shadow: 1px 1px rgba(0,0,0,0.5);
  padding-left:35%;


}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .p {
    font-size: 1.1rem;
	margin-top: 1.5rem;
  }
}
.pc-banner .mySwipera .banwez1 a.more-b {
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 a.more-b {
    margin-top: 1.25rem;
    display: none;
  }
}



.pc-banner .mySwipera .er-gat {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 100%;
  z-index: 9;
  text-align: center;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .er-gat .swiper-pagination1 {
    width: 100%;
    position: static;
  }
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 span {
  opacity: 1;
  background: transparent;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.625rem;
  margin-right: 0.5rem;
  border: 1px solid #fff;
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #fff;
  width: 1.5625rem;
}
.pc-banner .gongt-jta {
  position: absolute;
  left: 15%;
  bottom: 5%;
  z-index: 1;
  width: 6rem;
  height: 6rem;
}
@media (max-width: 768px) {
  .pc-banner .gongt-jta {
    display: none;
  }
}
.pc-banner .gongt-jta .ui-loop {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.pc-banner .gongt-jta .path-loop {
  fill: none;
  stroke: #da251c;
  stroke-miterlimit: 10;
  stroke-width: 1px;
}
.pc-banner .gongt-jta .path-loop-bg {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}
.pc-banner .gongt-jta p {
  width: 0.25rem;
  height: 0.25rem;
  background: #fff;
  border-radius: 50%;
  margin: 1rem 1rem;
}
.pc-banner .gongt-jta .swiper-button-prev1, .pc-banner .gongt-jta .swiper-button-next1 {
  width: 0.25rem;
  line-height: 1;
}
.pc-banner .gongt-jta .swiper-button-prev1 img, .pc-banner .gongt-jta .swiper-button-next1 img {
  width: 100%;
}
.pc-banner a.mouse {
  position: absolute;
  bottom: 5%;
  width: 8.25rem;
  right: 15%;
  text-align: center;
  display: block;
  z-index: 9;
  -webkit-animation: run 1s infinite linear;
     -moz-animation: run 1s infinite linear;
       -o-animation: run 1s infinite linear;
          animation: run 1s infinite linear;
}
@media (max-width: 990px) {
  .pc-banner a.mouse {
    right: 30%;
	display:none;
  }
}
.pc-banner a.mouse img {
  width: 100%;
}
@-webkit-keyframes run {
  from {
    bottom: 7%;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}
@-moz-keyframes run {
  from {
    bottom: 7%;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}
@-o-keyframes run {
  from {
    bottom: 7%;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}
@keyframes run {
  from {
    bottom: 7%;
    opacity: 0;
  }
  to {
    bottom: 5%;
    opacity: 1;
  }
}
.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);
  }
}
#fp-nav ul li a span {
  border: 1px solid #fff;
  background: #fff;
}
#fp-nav ul li a.active span {
  background: transparent;
}
#fp-nav ul li:hover a span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
}

.fp-viewing-section6 #fp-nav ul li a span, .fp-viewing-section7 #fp-nav ul li a span {
  border-color: #8A8A8A;
}
.fp-viewing-section6 #fp-nav ul li a.active span, .fp-viewing-section7 #fp-nav ul li a.active span {
  background: #8A8A8A;
}

.section {
  background-repeat: no-repeat;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
}

.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: #787878;
  font: 400 1.125rem/1.65em "Noto Sans SC";
  text-align: justify;
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}
.gong-p.bs {
  color: #fff;
}

.title1 {
  color: #FFFFFF;
  font-size: 2.8125rem;
  line-height: 1.2em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .title1 {
    font-size: 2rem;
  }
}
.title1 .entit {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
  font-family: "Roboto";
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 3.125rem;
  margin-left: -4rem;
}
@media (max-width: 768px) {
  .title1 .entit {
    margin-left: 0;
  }
}
.title1.hs {
  color: #1E1E1E;
}
.title1.hs .entit {
  -webkit-text-stroke: 0.5px #A0A1A1;
}





.cont2 {
  position: relative;
  z-index: 2;
}
.cont2 .p1 {
  width: 43.6428571429%;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .cont2 .p1 {
    width: 100%;
    margin: 1rem 0;
  }
}
@media (max-width: 768px) {
  .cont2 .a2_v1 {
    margin-top: 1.5rem;
  }
}
.cont2 .a2_v2 {
  border-radius: 1.875rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(218, 37, 28, 0.1);
  box-shadow: 0px 0.25rem 0.625rem 0px rgba(218, 37, 28, 0.1);
  padding: 3rem 0;
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .cont2 .a2_v2 {
    border-radius: 0;
    padding: 0;
    margin-top: 1.5rem;
    box-shadow: none;
    border: none;
  }
}
.cont2 .a2_v2 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .cont2 .a2_v2 li {
    width: 50%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding: 0.75rem 0;
  }
}
.cont2 .a2_v2 li .data {
  color: #da251c;
  font-size: 1.625rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cont2 .a2_v2 li .data {
    font-size: 1.125rem;
  }
}
.cont2 .a2_v2 li .data span {
  font-size: 3.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cont2 .a2_v2 li .data span {
    font-size: 2.5rem;
  }
}
.cont2 .a2_v2 li .data sup {
  font-size: 1.875rem;
  vertical-align: top;
  top: auto;
}
@media (max-width: 768px) {
  .cont2 .a2_v2 li .data sup {
    font-size: 1.35rem;
  }
}
.cont2 .a2_v2 li p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .cont2 .a2_v2 li p {
    margin-top: 0.5rem;
  }
}

.section2 {
  position: relative;
}
@media (max-width: 768px) {
  .section2 .fp-tableCell {
    padding-top: 0;
  }
}
.section2 .ast-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .section2 .ast-img {
    position: static;
    width: 100%;
  }
}
.section2 .ast-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}




.section3 {
  padding-right: 6.5rem;
  background:#ff0000;
}

.section3 .content {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
}
.section3 .content .swiper-button-prev,
.section3 .content .swiper-container-rtl .swiper-button-next {
  right: 10%;
  left: unset;
  top: unset;
  bottom: 2.625rem;
}
.section3 .content .swiper-button-next,
.section3 .content .swiper-container-rtl .swiper-button-prev {
  right: 5%;
  top: unset;
  bottom: 2.625rem;
}
.section3 .swiper_box {
  width: 82%;
}
.section3 .swiper_box .swier_index_pro {
  position: relative;
}
.section3 .swiper_box .swier_index_pro .swiper-slide {
  opacity: 0;
  z-index: -1;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section3 .swiper_box .swier_index_pro .swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex {
  display: flex;
  align-items: center;
  justify-content: end;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex .left {
  width: 30%;
  margin-top: -1.875rem;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex .left .title {
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc {
  margin-top: 1.25rem;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc ul li {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  display: flex;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc ul li strong {
  width: 30%;
}
.section3 .swiper_box .swier_index_pro .index_pro_flex .right {
  width: 75%;
  text-align: left;
  padding-right: 3.125rem;
}

.section3 .swiper_box .swier_index_pro .index_pro_flex .right img{ width:70%;}

/*.section3 .swiper_box .swier_index_pro .index_pro_flex .right .bgtext {
  width: 100%;
  font-size: 15.625rem;
  font-weight: 600;
  opacity: 0.3;
 background: linear-gradient(180deg, #FFF 20.67%, rgba(255, 255, 255, 0) 73.33%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: -8rem;
  z-index: 1;
}*/
.section3 .swiper_box .swier_index_pro .index_pro_flex .right .over {
  position: relative;
  z-index: 2;
  text-align:center;
}
.section3 .protab {
  width: 18%;
  position: relative;
  z-index: 9;
  padding-right: 2.1875rem;
}
.section3 .protab::before {
  content: '';
  display: block;
  height: 100%;
  width: 1px;
  border-right: 1px dashed #fff;
  position: absolute;
  right: 0;
}
.section3 .protab .proli {
  position: relative;
}

.section3 .protab .proli ul > li a {
  display: block;
  color: #FFF;
  text-align: right;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.875rem;
}
.section3 .protab .proli ul > li > i {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: -2.5rem;
  top: 0.9375rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.section3 .protab .proli ul > li.active > i,
.section3 .protab .proli ul > li:hover > i {
  background-color: #da251c;
  border: 5px solid #fff;
  width: 1.0625rem;
  height: 1.0625rem;
  right: -2.625rem;
}
.section3 .protab .proli .pro_two .pro_two_li {
  position: relative;
}
.section3 .protab .proli .pro_two .pro_two_li a {
  display: block;
  color: #FFF;
  text-align: right;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 2rem;
}
.section3 .protab .proli .pro_two .pro_two_li.active > i,
.section3 .protab .proli .pro_two .pro_two_li:hover > i {
  display: block;
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 0.6875rem;
  background-color: #da251c;
  border: 3px solid #fff;
  position: absolute;
  right: -2.5rem;
  top: 0.625rem;
}



.section3 .swiper-pagination {
  display: flex;
}
.section3 .swiper-button-next,
.section3 .swiper-button-prev {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: unset;
  border: 1px solid #b3b3b3;
  line-height: 3.5rem;
  text-align: center;
}
.section3 .swiper-button-next i,
.section3 .swiper-button-prev i {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.section3 .swiper-button-prev,
.section3 .swiper-container-rtl .swiper-button-next {
  left: -6.25rem;
}
.section3 .swiper-button-next,
.section3 .swiper-container-rtl .swiper-button-prev {
  right: -6.25rem;
}
.section3 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 1;
  background: unset;
}
.section3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #da251c;
  border: unset;
}
.section3 .swiper-pagination-bullet:only-child {
  display: none !important;
}



@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}


@media (max-width: 1600px) {
	.section3 .swiper_box .swier_index_pro .index_pro_flex .right {
    margin-left: 0;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .left {
    width: 35%;
  }
  
  .section3 .swiper_box .swier_index_pro .index_pro_flex .right img{ width:100%;}
	}


@media (max-width: 1280px) {
	 .section3 .swiper_box {
    width: 80%;
  }

  .section3 .protab {
    width: 20%;
  }
	}
	
	

@media (max-width: 990px) {
	.section3 {
    padding-right: 15px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .right {
    order: 2;
    padding-right: 15px;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .right .bgtext {
    font-size: 6rem;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .section3 .protab {
    display: none;
  }

  .section3 .swiper_box {
    width: 100%;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex {
    flex-wrap: wrap;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .left {
    width: 100%;
    order: 2;
    margin-top: 40px;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .left .mt40 {
    display: none;
  }

  .section3 .top {
    align-items: flex-end;
  }



  .section3 .swiper_box .swier_index_pro .index_pro_flex .right {
    width: 100%;
    margin-top: 0;
    order: 1;
  }

  .section3 .content {
    margin-top: 80px;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .left .title {
    font-size: 1.375rem;
    text-align: center;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc ul li {
    align-items: center;
  }

  .section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc {
    margin-top: 20px;
  }

 .section3 .swiper-pagination {
    justify-content: center;
  }

  /*.all_more {
    width: 8rem;
    line-height: 2.5rem;
  }*/

  .section3 .swiper-pagination-bullet {
    border: 1px solid #fff;
    width: 0.5rem;
    height: 0.5rem;
  }

  .section3 .swiper-button-next,
  .section3 .swiper-button-prev {
    display: none;
  }
  
  .section3 .swiper_box .swier_index_pro {
    padding-bottom: 70px;
  }
  
	}

@media (max-width: 768px) {
	.section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  }
  
  .section3 .swiper_box .swier_index_pro .index_pro_flex .right .bgtext {
    font-size: 5rem;
  }
	
	.section3{
		 position: relative;
		}
		
		.section3::after{
		 content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 6rem;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    z-index: 99;
		}
	.section3::before{
		content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 6rem;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    z-index: 1;
		}
		
	.section3 .swiper_box .swier_index_pro .index_pro_flex .left .desc ul li{ display:none;}	
		
		}




.section5 {
  position: relative;
}
.section5::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media (max-width: 768px) {
  .section5::after {
    display: none;
  }
}
.section5 .yyaslxa li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section5 .yyaslxa li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.section5 .yyaslxa li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section5 .cont3 {
  position: relative;
  z-index: 2;
}
.section5 .cont3 .a3v1 .a3b1 {
  width: 43.6428571429%;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b1 {
    width: 100%;
  }
}
.section5 .cont3 .a3v1 .a3b1 .p1 {
  margin: 1.5rem 0;
}
.section5 .cont3 .a3v1 .a3b2 {
  width: 40.5%;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 {
    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;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li {
  position: relative;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li {
    width: 100%;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: -webkit-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -moz-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -o-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: linear-gradient(90deg, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li + li {
    border: none;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a {
  padding: 1.5rem 7%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a {
    padding: 1.25rem 1.5%;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 {
  width: 65%;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 {
    width: auto;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asimg {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asimg {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asimg img {
  width: 60%;
  opacity: 0.6;
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asjkt {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asjkt {
    margin-left: 0.65rem;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asjkt .tit {
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asjkt .tit {
    font-size: 1.25rem;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asjkt p {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35em;
  text-transform:uppercase;
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a .cont-as1 .asjkt p {
    font-size: 0.75rem;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li a i {
    font-size: 1.25rem;
  }
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li:hover::after, .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li.on::after {
  width: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li:hover a .cont-as1 .asimg img, .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li.on a .cont-as1 .asimg img {
  opacity: 1;
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li:hover a .cont-as1 .asjkt, .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li.on a .cont-as1 .asjkt {
  color: #fff;
}
.section5 .cont3 .a3v1 .a3b2 .a3b2c1 li:hover a i, .section5 .cont3 .a3v1 .a3b2 .a3b2c1 li.on a i {
  color: #fff;
}

.section6 .cont4 .a4v2 {
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .section6 .cont4 .a4v2 {
    margin-top: 1.5rem;
  }
}
.section6 .cont4 .a4v2 .xw_a1 {
  width: 39.2857142857%;
}
@media (max-width: 768px) {
  .section6 .cont4 .a4v2 .xw_a1 {
    width: 100%;
  }
}
.section6 .cont4 .a4v2 .xw_a1 li a.img {
  position: relative;
}
.section6 .cont4 .a4v2 .xw_a1 li a.img i {
  display: block;
  font-size: 0;
  padding-bottom: 83.2422586521%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.section6 .cont4 .a4v2 .xw_a1 li a.img i > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section6 .cont4 .a4v2 .xw_a1 li a.img .data {
  background: #da251c;
  padding: 0.5rem 1rem 0.75rem;
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.section6 .cont4 .a4v2 .xw_a1 li a.img .data b {
  display: block;
  font-size: 2.5rem;
  line-height: 1.1em;
  font-weight: 600;
}
.section6 .cont4 .a4v2 .xw_a1 li a.img .data span {
  font-size: 0.75rem;
  line-height: 1.1em;
  font-weight: 600;
  display: block;
}
.section6 .cont4 .a4v2 .xw_a1 li a.img .tit {
  position: absolute;
  left: 0;
  bottom: 1.65rem;
  width: 100%;
  padding: 0 5%;
  font-size: 1.25rem;
  line-height: 1.5em;
  color: #fff;
}
@media (max-width: 768px) {
  .section6 .cont4 .a4v2 .xw_a1 li a.img .tit {
    font-size: 1.125rem;
  }
}
.section6 .cont4 .a4v2 .xw_a2 {
  width: 57.8571428571%;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
}
@media (max-width: 768px) {
  .section6 .cont4 .a4v2 .xw_a2 {
    width: 100%;
  }
}
.section6 .cont4 .a4v2 .xw_a2 li {
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.05);
  padding: 1.25rem 3%;
  width: 47.6543209877%;
}
@media (max-width: 768px) {
  .section6 .cont4 .a4v2 .xw_a2 li {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.65rem;
  }
  .section6 .cont4 .a4v2 .xw_a2 li:nth-child(n+2) {
    display: none;
  }
}
.section6 .cont4 .a4v2 .xw_a2 li span {
  display: block;
  color: #7E7E7E;
  font-size: 1rem;
  font-weight: 500;
}
.section6 .cont4 .a4v2 .xw_a2 li a.name {
  color: #535353;
  font-size: 1.125rem;
  line-height: 1.5em;
  height: 4.5em;
  overflow: hidden;
  margin: 0.5rem 0 1rem;
}
@media (max-width: 768px) {
  .section6 .cont4 .a4v2 .xw_a2 li a.name {
    height: auto;
  }
}
.section6 .cont4 .a4v2 .xw_a2 li a.name:hover {
  color: #da251c;
}
.section6 .cont4 .a4v2 .xw_a2 li .xw-more {
  width: 2.1875rem;
  height: 2.1875rem;
  border: 1px solid #EAEAEA;
  border-radius: 50%;
}
.section6 .cont4 .a4v2 .xw_a2 li .xw-more i {
  color: #BCBCBC;
}
.section6 .cont4 .a4v2 .xw_a2 li .xw-more:hover {
  background: #da251c;
}
.section6 .cont4 .a4v2 .xw_a2 li .xw-more:hover i {
  color: #fff;
}

.cont5 {
  padding: 4.0625rem 0 3rem;
}
@media (max-width: 768px) {
  .cont5 {
    padding: 2rem 0 1.5rem;
  }
}
.cont5 .mySwiper1 {
  padding: 0 1px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cont5 .mySwiper1 {
    margin-top: 1.5rem;
  }
}
.cont5 .mySwiper1 .swiper-slide a.block {
  display: block;
  font-size: 0;
}
.cont5 .mySwiper1 .swiper-slide a.block img {
  width: 100%;
}
.cont5 .mySwiper1 .swiper-pagination1 {
  text-align: center;
  margin-top: 1rem;
}
.cont5 .mySwiper1 .swiper-pagination1 span {
  opacity: 1;
  background: #D9D9D9;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.625rem;
  margin: 0 0.25rem;
}
.cont5 .mySwiper1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #da251c;
}

.foot-fot {
  position: relative;
  background: #151515;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 5rem;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foot-tit {
  color: #FFFFFF;
  font: 600 1.125rem/1.5em "Noto Sans SC";
}
.foot-fot .foota1 .foot-tit a {
  color: #FFFFFF;
  display: block;
}
.foot-fot .foota1 .dseca {
  margin-top: 0.8em;
}

.foot-fot .foota1 .dseca img{ width:120px !important;}

.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font: 400 1rem/2em "Noto Sans SC";
}
.foot-fot .foota1 .dseca > a:hover {
  color: #fff;
}
.foot-fot .foota1 .dseca p {
  color: rgba(255, 255, 255, 0.6);
  font: 400 1rem/2em "Noto Sans SC";
}
.foot-fot .foota1 .dseca p a {
  color: rgba(255, 255, 255, 0.6);
}
.foot-fot .foota1 .dseca p a:hover {
  color: #fff;
}
.foot-fot .foota1 .fo-a2 .dlogo img {
  height: 3rem;
}
.foot-fot .foota1 .fo-a2 .d_sdha {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .d_sdha li .iamsgh {
  width: 1.25rem;
}
.foot-fot .foota1 .fo-a2 .d_sdha li .iamsgh img {
  width: 100%;
}
.foot-fot .foota1 .fo-a2 .d_sdha li .cont-b {
  width: -webkit-calc(98% - 1.25rem);
  width: -moz-calc(98% - 1.25rem);
  width: calc(98% - 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  font: 400 1rem/2em "Noto Sans SC";
  white-space: nowrap;
}
.foot-fot .foota1 .fo-a2 .social-share {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .social-share a {
  color: #fff;
  border: none;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.3);
}
.foot-fot .foota1 .fo-a2 .social-share a:hover {
  background: #fff;
  color: #333;
}
.foot-fot .foota2 {
  color: #B8B8B8;
  font: 400 1rem/1.65em "Noto Sans SC";
  padding: 0.8em 0;
  border-top: 1px solid rgba(116, 116, 116, 0.65);
  text-align:center;
  display:flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 990px) {
  .foot-fot .foota2 {
    border-top: none;
  }
}
.foot-fot .foota2 a {
  color: #B8B8B8;
}
.foot-fot .foota2 a:hover {
  color: #fff;
}
.foot-fot .foota2 p + p {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}
/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}
.hidden {
  display: none;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}
@media (max-width: 768px) {
  .zd_erha {
    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: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  line-height: 3.5rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
}
.zd_erha li > a i {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.zd_erha li > a i img {
  height: 1.75rem;
}
.zd_erha li > a:hover {
  background: rgba(218, 37, 28, 0.9);
}
.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: #da251c;
  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: #da251c;
  border-color: #da251c;
  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 .page-num-current{ 
  border-color: #da251c;
  color: #fff;
  background: #da251c;
  }
  
.pager li:nth-child(2){ width:auto!important; border:none;}
  
.pager .page-num{
	float:left !important;
	display:block;
	width: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  border: 1px solid #ddd;
  margin: 0 0.125rem;
  height: 2.5rem;
}


.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  background: #fff;
}

.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a, .pager .next > span {
  float: right;
}

.pager .previous > a, .pager .previous > span {
  float: left;
}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: transparent;
}

.ajhhsd {
  color: #A7A5A5;
  font: 400 1.125rem/2rem "Noto Sans SC";
  padding: 1.3em 0;
}
@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 1em 0;
  }
}
.ajhhsd span {
  padding: 0 0.05em;
}
.ajhhsd span:last-child {
  display: none;
}
.ajhhsd a {
  color: #A7A5A5;
}
.ajhhsd a:hover {
  color: #da251c;
}

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}
@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}


@media (max-width: 768px) {
  .mt40 {
    margin-top: 1rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "Noto Sans SC";
  background: transparent;
  color: #999;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "Noto Sans SC";
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.ss-list li {
  padding: 1rem 0;
}
.ss-list li + li {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 0.5rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "Noto Sans SC";
  overflow: hidden;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: #da251c;
  font: 500 1rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Noto Sans SC";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Noto Sans SC";
  padding: 1rem 0 3rem;
}
.shzr-content strong {
  color: #333;
}
.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
.nbanner {
  position: relative;
}
.nbanner .img {
  width: 100%;
  font-size: 0;
}
.nbanner .img img {
  width: 100%;
}
.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 9;
  text-align: center;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font: 600 2.925rem/1.5em "Noto Sans SC";
  font-weight:bold;
  letter-spacing:0.2rem;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p2 {
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: 0rem;
  font-weight: 600;
  margin-top:1rem;
}

.nbanner .nbanner-wen1 .banner-cont .p2 a{ color:#fff;}
.nbanner .nbanner-wen1 .banner-cont .p2 a:hover{ color:#da251c}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1rem;
  }
}
.mbx-cont {
  /*position: absolute;
  left: 0;
  width: 100%;
  bottom: 1.5625rem;*/
  border-bottom:1px solid #eee;
}
.mbx-cont .n_src {
  font-size: 0;
  text-align: center;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .mbx-cont .n_src {
    white-space: nowrap;
    display: block;
  }
}
.mbx-cont .n_src li {
  display: inline-block;
}
.mbx-cont .n_src li + li {
  margin-left: 1px;
}
@media (max-width: 768px) {
  .mbx-cont .n_src li + li {
    /*margin-left: 1.8rem;*/
  }
}
.mbx-cont .n_src li a {
  display: block;
  color: #333;
  font: 500 1.1rem/2em "Noto Sans SC";
  position: relative;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.mbx-cont .n_src li a:hover,
.mbx-cont .n_src li.active a{
	background:#da251c; color:#fff;
	}

.mbx-cont .n_src li.active a{ background:#da251c; color:#fff;}

/*.mbx-cont .n_src li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #da251c;
  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) {
  .mbx-cont .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}
.mbx-cont .n_src li:hover a::after, .nbanner .mbx-cont .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);
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
  left: 0;
  top: 5.625rem;
  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;
  position:relative;
}
.n_mbx .n_src li + li {
  margin-left: 3.75rem;
}
.n_mbx .n_src li a {
  display: block;
  color: #666666;
  font: 500 1rem/3.125rem "Noto Sans SC";
  position: relative;
  text-transform: uppercase;
  padding: 0.85rem 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}


.n_mbx .n_src li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  z-index:99;
  background: #da251c;
  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: #da251c;
}
.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;
  color: #787878;
  font: 400 1.125rem/1.65em "Noto Sans SC";
  text-align: justify;
}
@media (max-width: 768px) {
  .list_content {
    padding: 2rem 0;
    font-size: 1rem;
  }
}

@-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: 5.625rem;
  margin-top: -5.625rem;
}
@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny-title {
  text-align: center;
  color: #1E1E1E;
  font-size: 2.8125rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .ny-title {
    font-size: 2rem;
  }
}
.ny-title .entit {
  color: transparent;
  -webkit-text-stroke: 0.5px #A0A1A1;
  font-family: "Roboto";
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 3.125rem;
  line-height: 1.2em;
}
.ny-title.bs {
  color: #fff;
}
.ny-title.bs .entit {
  -webkit-text-stroke: 0.5px #fff;
}

.abt-cont1,
.manu-cont1{
  padding: 4.125rem 0 4.875rem;
}

.manu-img{ padding:3rem 4rem 0 4rem;}
.manu-img img{ margin-bottom:2rem;}

@media (max-width: 768px) {
  .abt-cont1,
  .manu-cont1 {
    padding: 2rem 0;
  }
  
  .manu-img{ padding:0}
}
.abt-cont1 .p1 {
  padding: 3rem 0 4rem;
}

.abt-cont1 .p1 p{
	text-indent:2em;
	margin-bottom:1rem;
}
@media (max-width: 768px) {
  .abt-cont1 .p1 {
    padding: 1.5rem 0;
  }
}

.abt-cont1 .gong-p{ padding-right:2rem;}
@media (max-width: 768px) {
  .abt-cont1 .gong-p{ padding-right:0;}
}

.abt-cont1 .abt_a1list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
@media (max-width: 768px) {
  .abt-cont1 .abt_a1list1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.abt-cont1 .abt_a1list1 li img {
  width: 100%;
}
.abt-cont1 .a2_v2 {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .abt-cont1 .a2_v2 {
    margin-top: 1.8rem;
  }
}
.abt-cont1 .a2_v2 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .abt-cont1 .a2_v2 li {
    width: 50%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding: 0.75rem 0;
  }
}
.abt-cont1 .a2_v2 li .data {
  color: #da251c;
  font-size: 1.625rem;
  line-height: 1.25em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .abt-cont1 .a2_v2 li .data {
    font-size: 1.125rem;
  }
}
.abt-cont1 .a2_v2 li .data span {
  font-size: 3.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .abt-cont1 .a2_v2 li .data span {
    font-size: 2.5rem;
  }
}
.abt-cont1 .a2_v2 li .data sup {
  font-size: 1.875rem;
  vertical-align: top;
  top: auto;
}
@media (max-width: 768px) {
  .abt-cont1 .a2_v2 li .data sup {
    font-size: 1.35rem;
  }
}
.abt-cont1 .a2_v2 li p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .abt-cont1 .a2_v2 li p {
    margin-top: 0.5rem;
  }
}

.abt-cont2 {
  position: relative;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b1 {
    margin-top: 1.25rem;
  }
}
.abt-cont2 .abt-a2_b1 li img {
  width: 100%;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b1 li img {
    height: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.abt-cont2 .ny-title {
  position: absolute;
  width: 100%;
  top: 16%;
  left: 0;
  text-align: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .abt-cont2 .ny-title {
    position: static;
    color: #1E1E1E;
  }
  .abt-cont2 .ny-title .entit {
    -webkit-text-stroke: 0.5px #A0A1A1;
  }
}
@media (max-width: 768px) {
  .abt-cont2 .weruus {
    position: relative;
  }
}
.abt-cont2 .abt-a2_b2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.abt-cont2 .abt-a2_b2 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b2 li {
    height: 50%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 33.3333333333%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.abt-cont2 .abt-a2_b2 li .cont-p {
  width: 100%;
  margin-top: 11vw;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b2 li .cont-p {
    margin-top: 0;
  }
}
.abt-cont2 .abt-a2_b2 li .cont-p i {
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b2 li .cont-p i {
    width: 5rem;
    height: 5rem;
  }
}
.abt-cont2 .abt-a2_b2 li .cont-p i img {
  width: 60%;
}
.abt-cont2 .abt-a2_b2 li .cont-p .tit {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b2 li .cont-p .tit {
    font-size: 1.25rem;
    margin-top: 0.65rem;
  }
}





.n-content {
  padding: 4rem 0 1rem;
}
@media (max-width: 768px) {
  .n-content {
    padding: 2rem 0 0.5rem;
  }
}

.zzry-list {
  margin: 1.4rem -1.5% 0 -1.5%;
}
@media (max-width: 990px) {
  .zzry-list {
    margin: 0 -1%;
  }
}
@media (max-width: 768px) {
  .zzry-list {
    margin-top: 1.5rem;
  }
}
.zzry-list li {
  width: 33.333333%;
  padding: 0 0.5%;
  
}

.honor li {
  width: 25%;
  padding: 0 0.5%;
  
}

.zzry-list li p{ text-align:center; font-size:1.175rem;}

@media (max-width: 768px) {
  .zzry-list li p{ font-size:1rem;}
}

@media (max-width: 990px) {
  .zzry-list li {
    width: 25%;
    padding: 0 1%;
  }
}
@media (max-width: 768px) {
  .zzry-list li {
    margin-top: 0.8rem;
    width: 50%;
  }
}

@media (max-width: 480px) {
  .zzry-list li {
    margin-top: 0.8rem;
    width: 100%;
  }
}

.zzry-list li a.block {
  display: block;
}
.zzry-list li a.block .img {
  width: 100%;
  overflow: hidden;
  padding: 1rem;
  background-color: #fff;
  border-radius: 1.25rem;
}
.zzry-list li a.block .img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.zzry-list li a.block .img img {
  width: 100%;
}
.zzry-list li a.block h2 {
  text-align: center;
  font: 500 1.125rem/1.5em "Noto Sans SC";
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  .zzry-list li a.block h2 {
    font-size: 1rem;
  }
}



.more {
  width: 12.25rem;
  line-height: 3.375rem;
  border-radius: 3.125rem;
  border: 1px solid var(--more_c);
  display: inline-block;
  --more_c: rgba(0, 0, 0, 0.5);
  position: relative;
  font-style: italic;
  z-index: 9;
}

.more::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  transform: scale(0);
  background: #da251c;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  border-radius: 3.125rem;
  z-index: -1;
}

.more:hover {
  border-color: #da251c;
}

.more:hover div {
  color: #fff;
}

.more:hover div span {
  background: #da251c;
}

.more:hover div span::before {
  opacity: 0.3;
  animation: fangda infinite 2s;
}

.more:hover::before {
  transform: scale(1);
}

.more>div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--more_c);
  font-size: 1rem;
}

.more>div span {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  margin-left: 1rem;
  position: relative;
}

.more>div span::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #da251c;
  opacity: 0;
}



@media (max-width: 767px) {
  .more {
    width: 130px;
    line-height: 40px;
  }
}

.list_download{padding: 4rem 0;}
.list_download .ny-title{ margin-bottom:3.125rem;}

@media (max-width: 767px) {
  .list_download{padding: 2rem 0;}
}

.list_download .bot {
  display: flex;
  padding-top: 2.875rem;
  padding-bottom: 2.575rem;
  border: 1px solid #f8f8f8;
  margin:2.125rem 0;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.05);
}

.list_download .bot li {
  height: 3.4375rem;
  display: flex;
  align-items: center;
  color: #535353;
  font-size: 1.125rem;
  line-height: 1.375rem;
  
}

.list_download .bot li:nth-child(2) {
  color: #7C7C7C;
}



.list_download .more {
  font-style: normal;
  font-weight: 500;
  line-height: 3.4375rem;
}

.list_download .more .iconfont {
  /*transform: rotate(180deg);*/
  font-size: 1rem;
  margin-left: 1rem;
}

.list_download .top,
.list_download .bot {
  padding-left: 4.25rem;
  padding-right: 4.25rem;
}

.list_download .top li:nth-child(1),
.list_download .bot li:nth-child(1) {
  width: 40%;
}

.list_download .top li:nth-child(2),
.list_download .bot li:nth-child(2) {
  width: 25%;
}

.list_download .top li:nth-child(3),
.list_download .bot li:nth-child(3) {
  width: 35%;
  justify-content: center;
  text-align: center;
}

.list_download .top li:nth-child(3) a,
.list_download .bot li:nth-child(3) a {
  width: 10rem;
}

.list_download .top li:nth-child(3) a:not(:first-child),
.list_download .bot li:nth-child(3) a:not(:first-child) {
  margin-left: 1.25rem;
}



@media (max-width: 768px) {
	
.list_download .bot li:nth-child(1) {
    width: 100%;
    margin-bottom: 5px;
  }
  .list_download .bot li:nth-child(2) {
    width:100%;
  }
  .list_download .bot li:nth-child(3) {
    width: 100%;
    justify-content: flex-end;
  }
  .list_download .top li:nth-child(3) a,
  .list_download .bot li:nth-child(3) a {
    width: 8rem;
  }
  .list_download .bot li {
    line-height: 30px;
    height: auto;
  }
  .list_download .bot {
    flex-wrap: wrap;
    padding: 20px 30px;
  }
  .list_download .more {
    line-height: 40px;
    width: 120px;
  }
  .list_download .bot:nth-child(2) {
    border-top: 1px solid #D9D9D9;
  }

}


.lx-cont1 {
  padding: 6rem 0;
  background: #F6F6F6;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding: 2rem 0;
  }
}



.yyxas-a {
  background: #fff;
  padding: 3rem 1rem;
}

.lx-box{ margin-top:3rem;}

.yyxas-a li {
  width: 25%;
  text-align: center;
  display: inline-block;
  border-left: 1px solid #e4e4e4;
}
.yyxas-a li:first-child {
  border-left: none;
}
.yyxas-a li .titaa1 {
  font-size: 1.25rem;
  color: #bb0f25;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: 100%;
}
.yyxas-a li > p {
  font-size: 1rem;
  width: 100%;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
}

@media (max-width: 768px) {
	.yyxas-a {
    padding: 1rem 1rem;
  }
  .yyxas-a li {
    width: 100%;
    border-left: none;
    padding: 2rem;
    border-bottom: 1px solid #e4e4e4;
  }

  .yyxas-a li:last-child {
    border-left: none;
	}
	.yyxas-a:nth-child(2){ padding-bottom:4rem; padding-top:0; margin-top:0;}
	
.yyxas-a:nth-child(2) li:nth-last-child(2),
.yyxas-a:nth-child(2) li:last-child
{
	display:none;
}
}

.lx-cont2 {
  padding: 5.375rem 0 4.6875rem;
}
@media (max-width: 768px) {
  .lx-cont2 {
    padding: 2rem 0;
  }
}
.lx-cont2 .ny-title .gong-p {
  text-align: center;
  color: #9F9F9F;
  font-size: 1.5rem;
  margin-top: 1.65rem;
}

@media (max-width: 768px) {
  .lx-cont2 .ny-title .gong-p {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}
.lx-cont2 form {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .lx-cont2 form {
    margin-top: 0;
  }
}
.lx-cont2 form .m_label1 {
  color: #232425;
  font: 400 0.875rem/1.5em "Noto Sans SC";
  padding-bottom: 0.5em;
}
.lx-cont2 form input {
  width: 100%;
  background: #fff;
  border: 1px solid #DCDCDC;
  padding: 0 1em;
  font-size: 0.875rem;
  line-height: 3.125rem;
  border-radius: 1.5625rem;
}
.lx-cont2 form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #DCDCDC;
  padding: 0.75em 1em;
  font-size: 0.875rem;
  line-height: 1.5rem;
  border-radius: 0.75rem;
}
.lx-cont2 form .inpt {
  margin-top: 1rem;
}
.lx-cont2 form .msg-a1 .inpt {
  width: 31.8571428571%;
}
@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt {
    width: 100%;
  }
}
.lx-cont2 form .div_aghgha {
  margin-top: 1.5rem;
}
.lx-cont2 form .div_aghgha button {
  background: transparent;
}
@media (max-width: 768px) {
  .lx-cont2 form .div_aghgha {
    margin-top: 1rem;
  }
}

.news-content .news-cont1 {
  
  /*padding-bottom: 4.375rem;*/
}
@media (max-width: 768px) {
  .news-content .news-cont1 {
    padding-bottom: 2rem;
  }
}
.news-content .news-cont1 .ny-title {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .ny-title {
    margin-top: 0.5rem;
  }
}
.news-content .news-cont1 .mySwiper2 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .mySwiper2 {
    margin-top: 1.5rem;
  }
}
.news-content .news-cont1 .mySwiper2 .swiper-slide .cont a.img {
  overflow: hidden;
  display: block;
}
.news-content .news-cont1 .mySwiper2 .swiper-slide .cont a.img img {
  width: 100%;
}
.news-content .news-cont1 .mySwiper2 .swiper-slide .cont .cont-p {
  margin-top: 0.85rem;
}
.news-content .news-cont1 .mySwiper2 .swiper-slide .cont .cont-p span {
  display: block;
  color: #7E7E7E;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
}
.news-content .news-cont1 .mySwiper2 .swiper-slide .cont .cont-p a.name {
  display: block;
  color: #535353;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.25rem;
}
.news-content .news-cont1 .mySwiper2 .swiper-slide .cont .cont-p a.name:hover {
  color: #da251c;
}
.news-content .news-cont1 .mySwiper2 .swiper-pagination {
  text-align: center;
  margin-top: 2rem;
  position: static;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .mySwiper2 .swiper-pagination {
    margin-top: 1rem;
  }
}
.news-content .news-cont1 .mySwiper2 .swiper-pagination span {
  opacity: 1;
  background: #939393;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  margin: 0 0.25rem;
}
@media (max-width: 768px) {
  .news-content .news-cont1 .mySwiper2 .swiper-pagination span {
    width: 1rem;
    height: 1rem;
  }
}
.news-content .news-cont1 .mySwiper2 .swiper-pagination span.swiper-pagination-bullet-active {
  background: #da251c;
}

.news-cont2 {
	
	
	}

.news-cont2 .news-list li {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li {
    margin-top: 1.5rem;
  }
}
.news-cont2 .news-list li .data {
  text-align: center;
  width: 10.3571428571%;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li .data {
    display: none;
  }
}
.news-cont2 .news-list li .data b {
  display: block;
  color: #E3E2E1;
  font-size: 5.625rem;
  line-height: 1.05em;
  font-weight: 700;
}
.news-cont2 .news-list li .data p {
  color: #8A8A8A;
  font-size: 1.25rem;
  line-height: 1.1em;
  font-weight: 600;
}
.news-cont2 .news-list li a.img {
  display: block;
  width: 22.1428571429%;
  padding-bottom: 16.4285714286%;
  position: relative;
  height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li a.img {
    width: 100%;
    padding-bottom: 74.1935483871%;
  }
}
.news-cont2 .news-list li a.img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-cont2 .news-list li a.img img {
  width: 100%;
}
.news-cont2 .news-list li .cont-p {
  width: 58.2857142857%;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}
.news-cont2 .news-list li .cont-p a.name {
  display: block;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.5em;
}
.news-cont2 .news-list li .cont-p a.name:hover {
  color: #da251c;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p a.name {
    font-size: 1.25rem;
  }
}
.news-cont2 .news-list li .cont-p .p1 {
  color: #8A8A8A;
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0.65rem 0 1.25rem;
}
@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p .p1 {
    margin: 0.5rem 0 1rem;
  }
}
.news-cont2 .news-list li .cont-p .xw-more {
  width: 2.1875rem;
  height: 2.1875rem;
  border: 1px solid #EAEAEA;
  border-radius: 50%;
}
.news-cont2 .news-list li .cont-p .xw-more i {
  color: #BCBCBC;
}
.news-cont2 .news-list li .cont-p .xw-more:hover {
  background: #da251c;
}
.news-cont2 .news-list li .cont-p .xw-more:hover i {
  color: #fff;
}
.news-cont2 .news-list li:hover .data b {
  color: #da251c;
}

/*新闻详情*/
.ny-show_body {
  padding-top: 5.625rem;
}

.xw-show_bja .heas-xw {
  background: #F3F3F3;
  padding: 1rem 0 1.8rem;
}
@media (max-width: 768px) {
  .xw-show_bja .heas-xw {
    padding: 1rem 0 1.35rem;
  }
}
.xw-show_bja .heas-xw .ajhhsd {
  padding-top: 0;
}
.xw-show_bja .heas-xw .title-a {
  color: #000000;
  font: 600 1.875rem/1.5em "Noto Sans SC";
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .xw-show_bja .heas-xw .title-a {
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.xw-show_bja .heas-xw .data {
  color: #B7B7B7;
  font-size: 1.25rem;
  line-height: 1.25em;
  margin-top: 1.125rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .xw-show_bja .heas-xw .data {
    margin-top: 1rem;
  }
}

.xw_content-v1 {
  padding-bottom: 4.625rem;
}
@media (max-width: 768px) {
  .xw_content-v1 {
    padding-bottom: 2rem;
  }
}
.xw_content-v1 .xw-conta1 {
  width: 67.8571428571%;
}
@media (max-width: 768px) {
  .xw_content-v1 .xw-conta1 {
    width: 100%;
  }
}
.xw_content-v1 .xw-conta1 .xinwn-consss {
  color: #8A8A8A;
  font: 400 1.125rem/1.75em "Noto Sans SC";
  padding: 3rem 0 2rem;
}
.xw_content-v1 .xw-conta1 .xinwn-consss img {
  width: 100%;
}
@media (max-width: 768px) {
  .xw_content-v1 .xw-conta1 .xinwn-consss {
    padding: 1.5rem 0 1rem;
    font-size: 1rem;
  }
}
.xw_content-v1 .xw-conta1 .pain {
  border-top: 1px solid #DADADA;
  padding-top: 1rem;
}
.xw_content-v1 .xw-conta1 .pain a {
  color: #8A8A8A;
  font-size: 1rem;
  line-height: 1.5em;
}
.xw_content-v1 .xw-conta1 .pain a i {
  font-size: 0.75rem;
  font-weight: 600;
}
.xw_content-v1 .xw-conta1 .pain a:hover {
  color: #da251c;
}
.xw_content-v1 .xw-conta1 .pain .fanbha .fhaas {
  color: #da251c;
  font-size: 1rem;
}
.xw_content-v1 .xw-conta1 .pain .fanbha .fhaas img {
  width: 0.8125rem;
  line-height: 1.5em;
  display: block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.xw_content-v1 .xw-conta2 {
  width: 27.1428571429%;
  /*margin-top: 3.65rem;*/
}
@media (max-width: 768px) {
  .xw_content-v1 .xw-conta2 {
    display: none;
  }
}
.xw_content-v1 .xw-conta2 .fen-xiang {
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  padding: 0.5rem 0;
}
.xw_content-v1 .xw-conta2 .fen-xiang > p {
  color: #8A8A8A;
  font-size: 1rem;
  line-height: 1.5em;
}
.xw_content-v1 .xw-conta2 .fen-xiang .social-share a {
  color: #fff;
  font-size: 1.125rem;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  border: none;
  background: #909090;
}
.xw_content-v1 .xw-conta2 .tit {
  color: #000000;
  font: 600 1.5rem/1.5em "Noto Sans SC";
  margin-top: 2rem;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li {
  margin-top: 1.5rem;
  border: 1px solid #E3E3E3;
  border-radius: 0.25rem;
  overflow: hidden;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img {
  display: block;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img i img {
  width: 100%;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img .cont-p {
  padding: 1.5rem 1.5rem 2.5rem;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .xw_content-v1 .xw-conta2 .xw_lista1 li a.img .cont-p {
    padding: 1.5rem;
  }
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img .cont-p .data {
  color: #B7B7B7;
  font-size: 1.25rem;
  line-height: 1.25em;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img .cont-p .tit {
  color: #535353;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 400;
  margin-top: 0.75em;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img:hover .cont-p .tit {
  color: #da251c;
}

.case-content {
  padding: 2rem 0 9.875rem;
}
@media (max-width: 768px) {
  .case-content {
    padding: 1rem 0 2rem;
  }
}
.case-content .case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .case-content .case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .case-content .case-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.case-content .case-list li a.img img {
  width: 100%;
}
.case-content .case-list li a.name {
  display: block;
  text-align: center;
  color: #333;
  font-size: 1rem;
  line-height: 1.5em;
  background: #f0f0f0;
  padding: 1.25em 0;
}
@media (max-width: 768px) {
  .case-content .case-list li a.name {
    padding: 0.85em 0;
  }
}
.case-content .case-list1 li + li {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .case-content .case-list1 li + li {
    margin-top: 2rem;
  }
}
.case-content .case-list1 li a.img {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .case-content .case-list1 li a.img {
    width: 100%;
  }
}
.case-content .case-list1 li a.img img {
  width: 100%;
}
.case-content .case-list1 li .cont-p {
  width: 50%;
  background: #F6F6F6;
}
@media (max-width: 768px) {
  .case-content .case-list1 li .cont-p {
    width: 100%;
  }
}
.case-content .case-list1 li .cont-p .cont-as {
  padding: 0 9%;
}
@media (max-width: 768px) {
  .case-content .case-list1 li .cont-p .cont-as {
    padding: 1.5rem 7%;
  }
}
.case-content .case-list1 li .cont-p .cont-as a.name {
  display: block;
  color: #535353;
  font-size: 2rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .case-content .case-list1 li .cont-p .cont-as a.name {
    font-size: 1.5rem;
  }
}
.case-content .case-list1 li .cont-p .cont-as .p1 {
  color: #535353;
  font-size: 1.25rem;
  line-height: 1.6em;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .case-content .case-list1 li .cont-p .cont-as .p1 {
    font-size: 1rem;
    margin: 0.65rem 0;
  }
}

.cpnanner {
  position: relative;
}
.cpnanner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), -webkit-linear-gradient(bottom, rgba(10, 51, 136, 0.3) 0%, rgba(10, 51, 136, 0.3) 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), -moz-linear-gradient(bottom, rgba(10, 51, 136, 0.3) 0%, rgba(10, 51, 136, 0.3) 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), -o-linear-gradient(bottom, rgba(10, 51, 136, 0.3) 0%, rgba(10, 51, 136, 0.3) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(10, 51, 136, 0.3) 0%, rgba(10, 51, 136, 0.3) 100%);
}
.cpnanner .bj-sp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cpnanner a.more-b {
  margin-top: 1rem;
}

.cp-cont1 {
  background: #F6F6F6;
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .cp-cont1 {
    padding: 2rem 0;
  }
}
.cp-cont1 .cp_a1v1 .cp-a1_sort1 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp_a1v1 .cp-a1_sort1 {
    margin-top: 1rem;
  }
}
.cp-cont1 .cp_a1v1 .cp-a1_sort1 li {
  width: auto;
  margin: 0 0.65rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp_a1v1 .cp-a1_sort1 li {
    margin: 0.5rem 0.5rem;
  }
}
.cp-cont1 .cp_a1v1 .cp-a1_sort1 li a {
  display: block;
  color: #787878;
  font-size: 1.125rem;
  line-height: 1.5em;
  border: 1px solid #B2B2B5;
  text-align: center;
  padding: 0.65rem 1.5em;
  border-radius: 2rem;
}
.cp-cont1 .cp_a1v1 .cp-a1_sort1 li.on a {
  background: #da251c;
  color: #fff;
  border-color: #da251c;
}
.cp-cont1 .cp_a1v1 .cp-a2_list1 {
  margin-top: 4.625rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp_a1v1 .cp-a2_list1 {
    margin-top: 2rem;
  }
}
.cp-list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .cp-list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.cp-list1 li a.img {
  display: block;
}
.cp-list1 li a.img img {
  width: 100%;
}
.cp-list1 li a.img .tit {
  text-align: center;
  color: #787878;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cp-list1 li a.img .tit {
    font-size: 1.125rem;
  }
}

.cp-cont2 {
  padding-top: 4.125rem;
}
@media (max-width: 768px) {
  .cp-cont2 {
    padding-top: 2rem;
  }
}
.cp-cont2 .p1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .cp-cont2 .p1 {
    margin-top: 1.25rem;
  }
}
.cp-cont2 .hyyy-list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .cp-cont2 .hyyy-list1 {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }
}
@media (max-width: 450px) {
  .cp-cont2 .hyyy-list1 {
    display: block;
  }
}
.cp-cont2 .hyyy-list1 li .imgas {
  position: relative;
}
.cp-cont2 .hyyy-list1 li .imgas .img {
  position: relative;
  padding-bottom: 51.09375%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.cp-cont2 .hyyy-list1 li .imgas .img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(11, 50, 148, 0.8) 0%, rgba(3, 16, 46, 0) 100%);
  background: -moz-linear-gradient(left, rgba(11, 50, 148, 0.8) 0%, rgba(3, 16, 46, 0) 100%);
  background: -o-linear-gradient(left, rgba(11, 50, 148, 0.8) 0%, rgba(3, 16, 46, 0) 100%);
  background: linear-gradient(90deg, rgba(11, 50, 148, 0.8) 0%, rgba(3, 16, 46, 0) 100%);
}
.cp-cont2 .hyyy-list1 li .imgas .img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cp-cont2 .hyyy-list1 li .imgas .img img {
  width: 100%;
}
.cp-cont2 .hyyy-list1 li .wehsa-x {
  position: absolute;
  left: 6%;
  bottom: 1.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .cp-cont2 .hyyy-list1 li .wehsa-x {
    text-align: center;
  }
}
.cp-cont2 .hyyy-list1 li .wehsa-x .asimg {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  border: 1px solid #fff;
}
.cp-cont2 .hyyy-list1 li .wehsa-x .asimg img {
  width: 60%;
}
.cp-cont2 .hyyy-list1 li .wehsa-x p {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cp-cont2 .hyyy-list1 li .wehsa-x p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
}

.cp-cont3 {
  padding: 7.1875rem 0;
}
@media (max-width: 768px) {
  .cp-cont3 {
    padding: 2rem 0;
  }
}
.cp-cont3 .hxjs_list1 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 {
    margin-top: 1.5rem;
  }
}
.cp-cont3 .hxjs_list1 li a.img {
  display: block;
  width: 50%;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 li a.img {
    width: 100%;
  }
}
.cp-cont3 .hxjs_list1 li a.img img {
  width: 100%;
}
.cp-cont3 .hxjs_list1 li .cont-p {
  width: 50%;
  padding: 1.5rem 4%;
  background: #F6F6F6;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 li .cont-p {
    width: 100%;
    padding: 1.5rem;
  }
}
.cp-cont3 .hxjs_list1 li .cont-p .cont-ax {
  width: 100%;
}
.cp-cont3 .hxjs_list1 li .cont-p .cont-ax a.name {
  display: block;
  color: #535353;
  font-size: 2rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 li .cont-p .cont-ax a.name {
    font-size: 1.5rem;
  }
}
.cp-cont3 .hxjs_list1 li .cont-p .cont-ax .p1 {
  color: #535353;
  font-size: 1.25rem;
  line-height: 1.65em;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 li .cont-p .cont-ax .p1 {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }
}
.cp-cont3 .hxjs_list1 li .cont-p .cont-ax a.more-b {
  margin-top: 1.65rem;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 li .cont-p .cont-ax a.more-b {
    margin-top: 1rem;
  }
}
.cp-cont3 .hxjs_list1 li:nth-child(2n) a.img {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .cp-cont3 .hxjs_list1 li:nth-child(2n) a.img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.cp-cont31 {
  background: #F6F6F6;
  padding: 5.625rem 0 6.375rem;
}
.cp-cont31 .ny-title {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cp-cont31 {
    padding: 2rem 0;
  }
  .cp-cont31 .ny-title {
    margin-bottom: 1rem;
  }
}
.cp-cont31 .cp_a31v1 .cp-a31_sort1 li {
  width: 10rem;
  margin: 0 0.65rem;
}
@media (max-width: 768px) {
  .cp-cont31 .cp_a31v1 .cp-a31_sort1 li {
    margin: 0.5rem 0.5rem;
  }
}
.cp-cont31 .cp_a31v1 .cp-a31_sort1 li a {
  display: block;
  color: #787878;
  font-size: 1.125rem;
  line-height: 1.5em;
  border: 1px solid #B2B2B5;
  text-align: center;
  padding: 0.65rem 0.25rem;
  border-radius: 2rem;
}
.cp-cont31 .cp_a31v1 .cp-a31_sort1 li.on a {
  background: #da251c;
  color: #fff;
  border-color: #da251c;
}
.cp-cont31 .cp_a31v1 .cp-a31_list1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cp-cont31 .cp_a31v1 .cp-a31_list1 {
    margin-top: 0.5rem;
  }
}
.cp-cont31 .cp_a31v1 .cp-a31_list1 li .wehsxa .img {
  width: 47.9285714286%;
}
@media (max-width: 768px) {
  .cp-cont31 .cp_a31v1 .cp-a31_list1 li .wehsxa .img {
    width: 100%;
    margin-top: 1.125rem;
  }
}
.cp-cont31 .cp_a31v1 .cp-a31_list1 li .wehsxa .img img {
  width: 100%;
}

.cp-cont41 {
  padding: 4.25rem 0 4.375rem;
}
@media (max-width: 768px) {
  .cp-cont41 {
    padding: 2rem 0;
  }
}
.cp-cont41 .p1 {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cp-cont41 .p1 {
    margin-top: 1rem;
  }
  .cp-cont41 .p1 br {
    display: none;
  }
}
.cp-cont41 .cp-a41v1 {
  position: relative;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cp-cont41 .cp-a41v1 {
    margin-top: 1.25rem;
  }
}
.cp-cont41 .cp-a41v1 .cp-a41b1 li {
  position: relative;
}
.cp-cont41 .cp-a41v1 .cp-a41b1 li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .cp-cont41 .cp-a41v1 .cp-a41b1 li img {
    height: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cp-cont41 .cp-a41v1 .cp-a41b2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cp-cont41 .cp-a41v1 .cp-a41b2 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .cp-cont41 .cp-a41v1 .cp-a41b2 li {
    width: 50%;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .cp-cont41 .cp-a41v1 .cp-a41b2 li:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: none;
  }
}
.cp-cont41 .cp-a41v1 .cp-a41b2 li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.cp-cont41 .cp-a41v1 .cp-a41b2 li .cont-p {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cp-cont41 .cp-a41v1 .cp-a41b2 li .cont-p {
    font-size: 1.125rem;
  }
}
.cp-cont41 .cp-a41v1 .cp-a41b2 li:hover, .cp-cont41 .cp-a41v1 .cp-a41b2 li.on {
  background: -webkit-linear-gradient(bottom, #da251c -20%, rgba(44, 44, 44, 0) 80%);
  background: -moz-linear-gradient(bottom, #da251c -20%, rgba(44, 44, 44, 0) 80%);
  background: -o-linear-gradient(bottom, #da251c -20%, rgba(44, 44, 44, 0) 80%);
  background: linear-gradient(0deg, #da251c -20%, rgba(44, 44, 44, 0) 80%);
}

.cp-cont4 {
  background-repeat: no-repeat;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
  padding: 15.125rem 0;
}
@media (max-width: 768px) {
  .cp-cont4 {
    padding: 6rem 0;
  }
}
.cp-cont4 .p1 {
  text-align: center;
  text-wrap: balance;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .cp-cont4 .p1 {
    margin-top: 1rem;
  }
}
.cp-cont4 .yasjr {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cp-cont4 .yasjr {
    margin-top: 1.5rem;
  }
}
.cp-cont4 .yasjr li {
  text-align: center;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .cp-cont4 .yasjr li {
    padding: 0;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.cp-cont4 .yasjr li i {
  display: block;
  font-size: 0;
  width: 4.375rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cp-cont4 .yasjr li i {
    width: 3.5rem;
  }
}
.cp-cont4 .yasjr li i img {
  width: 100%;
}
.cp-cont4 .yasjr li p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .cp-cont4 .yasjr li p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
}
.cp-cont4 .hashrx {
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .cp-cont4 .hashrx {
    margin-top: 1.5rem;
  }
}
.cp-cont4 .hashrx a {
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .cp-cont4 .hashrx a {
    margin: 0 0.5rem;
  }
}

.pro-show-cont1 {
  background: #F6F6F6;
}
.pro-show-cont1 .pro-show-a1v1 {
  padding-top: 2.8125rem;
  padding-bottom: 4.875rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 {
    margin-top: 1rem;
    padding-bottom: 2rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
  width: 53.6428571429%;
  margin-top: 3.625rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
    width: 100%;
    margin-top: 0rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .ny-title {
  text-align: left;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .txt {
  margin: 2rem 0 2.5rem;
  font-size: 1.1rem;
  line-height:2.2rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .txt {
    margin: 1rem 0 1.5rem;
    font-size: 1.125rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tel_cont {
  font-size: 1.25rem;
  color: #666;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tel_cont i {
  display: block;
  font-size: 0;
  width: 1.5rem;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tel_cont i img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tel_cont p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 0.35em;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tel_cont p a{
	color:#666
	}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tel_cont p a:hover{
	color:#da251c
	}

.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .asb-as {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .asb-as {
    margin-top: 1rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .asb-as a + a {
  margin-left: 1.5em;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .asb-as a + a {
    margin-left: 1em;
  }
}
.pro-show-cont1 .pro-show-a1v1 .img_tup {
  width: 37.5%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .mySwiper3 .swiper-slide a.fasta {
  width: 1.5rem;
  font-size: 0;
  display: block;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .mySwiper3 .swiper-slide a.fasta img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .xtast {
  padding: 0 25%;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .xtast {
    padding: 0 15%;
  }
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 {
    padding: 0 1px;
  }
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .img {
  border: 1px solid #D9D9D9;
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .img img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .swiper-slide-thumb-active .img {
  border-color: #da251c;
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .wejhx {
  border: 1px solid #F1F1F1;
}
.pro-show-cont1 .pro-show-a1v1 .img_tup .wejhx img {
  /*width: 100%;*/
}

.pro-show-cont2 {
  margin-top: 4rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}
.pro-show-cont2 .sdjxas1 {
  margin-top: 1rem;
}
.pro-show-cont2 .sdjxas1 li {
  margin-left: 1em;
}
.pro-show-cont2 .sdjxas1 li a {
  font-size: 1.125rem;
  color: #787878;
  display: block;
}
.pro-show-cont2 .sdjxas1 li a:hover {
  color: #da251c;
}
.pro-show-cont2 .content {
  margin-top: 2.5rem;
}

@media (max-width: 1200px) {
  .pro-show-cont2 .content {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .pro-show-cont2 .content {
    margin-top: 1.5rem;
    overflow-x: auto;
  }
}
@media (max-width: 768px) {
  .pro-show-cont2 .content table {
    min-width: 768px;
  }
}

.pro-show-cont2 .content table{ text-align:center;}
.pro-show-cont2 .content table tr:nth-child(2n-1) {
  background: #F6F6F6;
}
.pro-show-cont2 .content table tr:nth-child(1) {
  background: -webkit-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -moz-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -o-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: linear-gradient(90deg, #da251c 0%, rgba(3, 16, 46, 0) 100%);
}
.pro-show-cont2 .content table tr:nth-child(1) td {
  color: #fff;
}

.pro-show-cont2 .content table tr{}
.pro-show-cont2 .content table tr td {
  color: #787878;
  font-size: 1rem;
  padding:0.5rem !important;
}
/*.pro-show-cont2 .content table tr td[colspan="2"] {
  background: -webkit-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -moz-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -o-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: linear-gradient(90deg, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  color: #fff;
}*/

.pro-show-cont3 {
  padding: 0 0 3.625rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 {
    padding: 0 0 2rem;
  }
}
.pro-show-cont3 .p1 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 .p1 {
    margin-top: 1rem;
  }
}

.tit-gont {
  color: #1E1E1E;
  font-size: 2.25rem;
  line-height: 1.35em;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-bottom: 0.35rem;
}
.tit-gont::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150%;
  height: 0.35rem;
  background: -webkit-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -moz-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: -o-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%);
  background: linear-gradient(90deg, #da251c 0%, rgba(3, 16, 46, 0) 100%);
}
@media (max-width: 768px) {
  .tit-gont {
    font-size: 1.8rem;
  }
}

.pro-show-cont5 {
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 {
    margin-top: 2rem;
  }
}
.pro-show-cont5 .pro-show-a5v1 .p1 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 .pro-show-a5v1 .p1 {
    margin-top: 1rem;
  }
}

.pro-show-cont4 {
  background: #F6F6F6;
  padding: 5.3125rem 0;
}
@media (max-width: 768px) {
  .pro-show-cont4 {
    padding: 2rem 0;
  }
}
.pro-show-cont4 .mySwiper4 {
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 .mySwiper4 {
    margin-top: 1.5rem;
  }
}
.pro-show-cont4 .mySwiper4 .swiper-slide > div {
  background: #FFF;
  box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.05);
}
.pro-show-cont4 .mySwiper4 .swiper-slide .over img {
  width: 100%;
}
.pro-show-cont4 .mySwiper4 .swiper-slide .name {
  text-align: center;
  color: #787878;
  font-size: 1.125rem;
  padding: 1rem 0;
  line-height: 1.65em;
}
.pro-show-cont4 .mySwiper4 .swiper-pagination1 {
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 .mySwiper4 .swiper-pagination1 {
    margin-top: 1rem;
  }
}
.pro-show-cont4 .mySwiper4 .swiper-pagination1 span {
  opacity: 1;
  background: #939393;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 .mySwiper4 .swiper-pagination1 span {
    width: 1rem;
    height: 1rem;
  }
}
.pro-show-cont4 .mySwiper4 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #da251c;
}

.tc-cont1 {
  padding: 2.0625rem 0 5.75rem;
}
@media (max-width: 768px) {
  .tc-cont1 {
    padding: 2rem 0;
  }
}

.tc-cont1 .n_src{ width:100%;margin-top: 2rem;}
.tc-cont1 .n_src li a{ background:#f8f8f8; color:#333; padding:1rem 1.5rem; border-bottom:1px solid #fff; font-size:1.125rem;
display:block;
white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis;
  }
  
.tc-cont1 .n_src li.active a,
.tc-cont1 .n_src li a:hover{
	 background:#da251c; 
	 color:#fff;
	 transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}


@media (max-width: 768px) {
  .tc-cont1 .n_src li{
	  width:33.3333%;
	  float:left;
	  text-align:center;
	  border-right:1px solid #fff;
	  }
	  .tc-cont1 .n_src li a{ font-size:1rem;}
}


@media (max-width: 480px) {
  .tc-cont1 .n_src li{
	  width:50%;
	  float:left;
	  text-align:center;
	  }
}

.tc-cont1 .tc-a1list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:0 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .tc-cont1 .tc-a1list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 450px) {
  .tc-cont1 .tc-a1list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.tc-cont1 .tc-a1list1 li .over {
  border: 1px solid #f0f0f0;
  padding-bottom: 100%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.tc-cont1 .tc-a1list1 li .over > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tc-cont1 .tc-a1list1 li .over img {
  width: 100%;
}
.tc-cont1 .tc-a1list1 li .name {
  text-align: center;
  color: #787878;
  font-size: 1.125rem;
  padding: 1rem 0;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .tc-cont1 .tc-a1list1 li .name {
    font-size: 1rem;
  }
}
.tc-cont1 .mySwiper5 {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .tc-cont1 .mySwiper5 {
    margin-top: 1.5rem;
  }
}
.tc-cont1 .mySwiper5 .swiper-slide .over {
  border: 1px solid #f0f0f0;
  padding-bottom: 70%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.tc-cont1 .mySwiper5 .swiper-slide .over > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tc-cont1 .mySwiper5 .swiper-slide .over img {
  width: 100%;
}
.tc-cont1 .mySwiper5 .swiper-slide .name {
  text-align: center;
  color: #787878;
  font-size: 1.25rem;
  padding: 1rem 0;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .tc-cont1 .mySwiper5 .swiper-slide .name {
    font-size: 1rem;
  }
}
.tc-cont1 .mySwiper5 .swiper-pagination1 {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .tc-cont1 .mySwiper5 .swiper-pagination1 {
    margin-top: 1rem;
  }
}
.tc-cont1 .mySwiper5 .swiper-pagination1 span {
  opacity: 1;
  background: #939393;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .tc-cont1 .mySwiper5 .swiper-pagination1 span {
    width: 1rem;
    height: 1rem;
  }
}
.tc-cont1 .mySwiper5 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #da251c;
}

.tc-cont2 {
  padding-bottom: 5rem;
  background: #F6F6F6;
}
@media (max-width: 768px) {
  .tc-cont2 {
    padding-bottom: 2rem;
  }
}
.tc-cont2 .ny-title {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .tc-cont2 .ny-title {
    padding: 2rem 0;
  }
}
.tc-cont2 .heng1x {
  text-align: center;
}
.tc-cont2 .heng1x img {
  width: 100%;
}
.tc-cont2 .heng1x p {
  color: #787878;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.65rem;
}

.tc-cont2-k {
  background: #F6F6F6;
  padding: 5.3125rem 0;
  border-top: 0.25rem solid #fff;
}
@media (max-width: 768px) {
  .tc-cont2-k {
    padding: 2.25rem 0;
  }
}
.tc-cont2-k .asrt_list {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .tc-cont2-k .asrt_list {
    margin-top: 1.5rem;
  }
}
.tc-cont2-k .asrt_list li .fang {
  width: 50%;
  display: block;
}
@media (max-width: 768px) {
  .tc-cont2-k .asrt_list li .fang {
    width: 100%;
  }
}
.tc-cont2-k .asrt_list li .fang img {
  width: 100%;
}
.tc-cont2-k .asrt_list li .cont-txt {
  width: 50%;
  padding: 0 5%;
  background-color: #fff;
}
@media (max-width: 768px) {
  .tc-cont2-k .asrt_list li .cont-txt {
    width: 100%;
    padding: 1.5rem 6%;
  }
}
.tc-cont2-k .asrt_list li .cont-txt .cont-txtas .name {
  display: block;
  color: #535353;
  font-size: 2rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .tc-cont2-k .asrt_list li .cont-txt .cont-txtas .name {
    font-size: 1.4rem;
  }
}
.tc-cont2-k .asrt_list li .cont-txt .cont-txtas .p1 {
  color: #535353;
  font-size: 1.25rem;
  line-height: 1.55em;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .tc-cont2-k .asrt_list li .cont-txt .cont-txtas .p1 {
    font-size: 1rem;
  }
}
.tc-cont2-k .asrt_list li:nth-child(2n) .fang {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .tc-cont2-k .asrt_list li:nth-child(2n) .fang {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.tc-cont3-k {
  background: #F6F6F6;
  padding: 5.125rem 0;
}
@media (max-width: 768px) {
  .tc-cont3-k {
    padding: 2rem 0;
  }
}
.tc-cont3-k .mySwiper61 a.block {
  background: #FFF;
  box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.05);
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .tc-cont3-k .mySwiper61 a.block {
    margin-top: 1.5rem;
  }
}
.tc-cont3-k .mySwiper61 a.block i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.tc-cont3-k .mySwiper61 a.block i img {
  width: 100%;
}
.tc-cont3-k .mySwiper61 a.block .tit {
  text-align: center;
  color: #787878;
  font-size: 1.125rem;
  padding: 1.25rem 0;
}
@media (max-width: 768px) {
  .tc-cont3-k .mySwiper61 a.block .tit {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
.tc-cont3-k .mySwiper61 .swiper-pagination1 {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .tc-cont3-k .mySwiper61 .swiper-pagination1 {
    margin-top: 1rem;
  }
}
.tc-cont3-k .mySwiper61 .swiper-pagination1 span {
  opacity: 1;
  background: #939393;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .tc-cont3-k .mySwiper61 .swiper-pagination1 span {
    width: 1rem;
    height: 1rem;
  }
}
.tc-cont3-k .mySwiper61 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #da251c;
}

.tc-cont3 {
  padding: 5.125rem 0;
}
@media (max-width: 768px) {
  .tc-cont3 {
    padding: 2rem 0;
  }
}
.tc-cont3 .tc-a3v1 {
  background: #F6F6F6;
  padding: 2.5rem 3rem 2.5rem 0;
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
}
.tc-cont3 .tc-a3v1 .tc-a3b1 {
  border-right: 1px solid #DEDEDE;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 .tc-a3b1 {
    padding: 0;
    border-right: none;
    width: 100%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.tc-cont3 .tc-a3v1 .tc-a3b1 li {
  text-align: right;
  padding: 0.8rem 0;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 .tc-a3b1 li {
    padding: 0.25rem 0;
    text-align: center;
  }
}
.tc-cont3 .tc-a3v1 .tc-a3b1 li a {
  padding: 0 1em;
  color: #535353;
  font-size: 1.25rem;
  line-height: 1.65em;
  position: relative;
}
.tc-cont3 .tc-a3v1 .tc-a3b1 li.on a {
  color: #da251c;
}
.tc-cont3 .tc-a3v1 .tc-a3b1 li.on a::after {
  content: "";
  position: absolute;
  right: -0.25rem;
  top: 0;
  width: 0.5rem;
  height: 100%;
  background: #da251c;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 .tc-a3b1 li.on a::after {
    display: none;
  }
}
.tc-cont3 .tc-a3v1 .tc-a3b2 {
  width: 85.6923076923%;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 .tc-a3b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li {
  display: none;
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li .ashr-as {
  margin: 0 -1.5%;
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li .ashr-as dl {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1.5%;
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li .ashr-as dl img {
  width: 100%;
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li .wenata {
  margin-top: 1rem;
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li .wenata h2 {
  color: #535353;
  font-size: 2rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 .tc-a3b2 li .wenata h2 {
    font-size: 1.35rem;
  }
}
.tc-cont3 .tc-a3v1 .tc-a3b2 li .wenata .p {
  color: #787878;
  font-size: 1.125rem;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .tc-cont3 .tc-a3v1 .tc-a3b2 li .wenata .p {
    font-size: 1rem;
  }
}




.pro-show1-cont1 .tit-at1 {
  margin-top: 2rem;
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
  line-height: 1.25em;
  padding-left: 0.5em;
  border-left: 0.5rem solid #da251c;
}
@media (max-width: 768px) {
  .pro-show1-cont1 .tit-at1 {
    margin-top: 1rem;
    font-size: 1.65rem;
  }
}
.pro-show1-cont1 .pro-show1-a1v1 {
  margin-top: 2rem;
  padding-bottom: 4.875rem;
}
@media (max-width: 768px) {
  .pro-show1-cont1 .pro-show1-a1v1 {
    padding-bottom: 2rem;
    margin-top: 1.5rem;
  }
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 {
  width: 47.8571428571%;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 img {
  width: 100%;
}
@media (max-width: 768px) {
  .pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .tab-cont {
  margin-top: 1.25rem;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .tab-cont table {
  border: none;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .tab-cont table tr:nth-child(1) {
  background: -webkit-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%) !important;
  background: -moz-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%) !important;
  background: -o-linear-gradient(left, #da251c 0%, rgba(3, 16, 46, 0) 100%) !important;
  background: linear-gradient(90deg, #da251c 0%, rgba(3, 16, 46, 0) 100%) !important;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .tab-cont table tr:nth-child(1) td {
  color: #fff;
  font-size: 1.125rem;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .tab-cont table tr td {
  color: #787878;
  font-size: 1rem;
  min-width: 7.5rem;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .tab-cont table tr:nth-child(2n-1) {
  background: #F6F6F6;
}
.pro-show1-cont1 .pro-show1-a1v1 .pro-show-a1b1 .img-pca {
  margin-top: 1.5rem;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup {
  width: 45.7142857143%;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .mySwiper3 .swiper-slide a.fasta {
  width: 1.5rem;
  font-size: 0;
  display: block;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .mySwiper3 .swiper-slide a.fasta img {
  width: 100%;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .xtast {
  padding: 0 25%;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .xtast {
    padding: 0 15%;
  }
}
@media (max-width: 768px) {
  .pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 {
    padding: 0 1px;
  }
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .img {
  border: 1px solid #D9D9D9;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .img img {
  width: 100%;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .swiper-slide-thumb-active .img {
  border-color: #da251c;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup .img {
  border: 1px solid #f0f0f0;
}
.pro-show1-cont1 .pro-show1-a1v1 .img_tup img {
  width: 100%;
}
@media (max-width: 768px) {
  .pro-show1-cont1 .pro-show1-a1v1 .img_tup {
    width: 100%;
  }
}

.content-ast img {
  text-align: center;
}

.pro-show-cont2 .content-ast table tr:nth-child(1) {
  background: #F6F6F6;
}

.pro-show-cont2 .content-ast table tr:nth-child(1) td {
  color: #787878;
}

@media (max-width: 768px) {
  .pro-show-cont2 .content-ast table {
    min-width: auto;
  }
}

.list_content-case .pro-show-a1v1 {
  margin-top: 2.8125rem;
  padding-bottom: 4.875rem;
}
@media (max-width: 768px) {
  .list_content-case .pro-show-a1v1 {
    margin-top: 1rem;
    padding-bottom: 2rem;
  }
}
.list_content-case .pro-show-a1v1 .pro-show-a1b1 {
  width: 43.6428571429%;
}
@media (max-width: 768px) {
  .list_content-case .pro-show-a1v1 .pro-show-a1b1 {
    width: 100%;
    margin-top: 0rem;
  }
}
.list_content-case .pro-show-a1v1 .pro-show-a1b1 .ny-title .tit {
  text-align: left;
}
.list_content-case .pro-show-a1v1 .pro-show-a1b1 .txt {
  margin-top: 1rem;
}
.list_content-case .pro-show-a1v1 .img_tup {
  width: 47.5%;
}
@media (max-width: 768px) {
  .list_content-case .pro-show-a1v1 .img_tup {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.list_content-case .pro-show-a1v1 .img_tup .cp-show-img .mySwiper3 .swiper-slide a.fasta {
  width: 1.5rem;
  font-size: 0;
  display: block;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}
.list_content-case .pro-show-a1v1 .img_tup .cp-show-img .mySwiper3 .swiper-slide a.fasta img {
  width: 100%;
}
.list_content-case .pro-show-a1v1 .img_tup .cp-show-img .xtast {
  padding: 0 25%;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .list_content-case .pro-show-a1v1 .img_tup .cp-show-img .xtast {
    padding: 0 15%;
  }
}
@media (max-width: 768px) {
  .list_content-case .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 {
    padding: 0 1px;
  }
}
.list_content-case .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .img {
  border: 1px solid #D9D9D9;
}
.list_content-case .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .img img {
  width: 100%;
}
.list_content-case .pro-show-a1v1 .img_tup .cp-show-img .xtast .mySwiper41 .swiper-slide-thumb-active .img {
  border-color: #da251c;
}
.list_content-case .pro-show-a1v1 .img_tup .wejhx {
  border: 1px solid #F1F1F1;
}
.list_content-case .pro-show-a1v1 .img_tup .wejhx img {
  width: 100%;
}

.ast1-x21 {
  background: #fff !important;
}
.ast1-x21 .cp-list1 {
  gap: 2rem;
  margin-top: 2rem;
}
.ast1-x21 .cp-list1.cpas-list1 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .ast1-x21 .cp-list1.cpas-list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.ast1-x21:nth-child(2n) {
  background: #F6F6F6 !important;
}

.list_contenta1 {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .list_contenta1 {
    padding: 2.25rem 0;
  }
}
.list_contenta1 .lx-a1v1 {
  background: #EFF0F1;
  padding: 3.5rem;
}
.list_contenta1 .lx-a1v1 .lx-a1b1 {
  width: 39.2857142857%;
}
@media (max-width: 768px) {
  .list_contenta1 .lx-a1v1 .lx-a1b1 {
    width: 100%;
  }
}
.list_contenta1 .lx-a1v1 .lx-a1b1 .tit1 {
  color: #444444;
  font: 400 1.5rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .list_contenta1 .lx-a1v1 .lx-a1b1 .tit1 {
    font-size: 1.25rem;
  }
}
.list_contenta1 .lx-a1v1 .lx-a1b1 .p {
  color: #787878;
  font-size: 1rem;
  line-height: 1.75em;
  margin: 1rem 0 1.5rem;
}
@media (max-width: 768px) {
  .list_contenta1 .lx-a1v1 .lx-a1b1 .p {
    margin: 0.75rem 0;
  }
}
.list_contenta1 .lx-a1v1 .lx-a1b1 .p a {
  color: #787878;
  font-weight: 500;
}
.list_contenta1 .lx-a1v1 .lx-a1b1 .p a:hover {
  color: #da251c;
}
.list_contenta1 .lx-a1v1 .lx-a1b2 .img {
  width: 9rem;
  padding: 0.65rem;
  background: rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .list_contenta1 .lx-a1v1 .lx-a1b2 .img {
    width: 7.5rem;
    padding: 0.35rem;
  }
}
.list_contenta1 .lx-a1v1 .lx-a1b2 .img img {
  width: 100%;
}
.list_contenta1 .lx-a1v1 .lx-a1b2 .cont-p {
  color: #7E8285;
  font: 400 1rem/2em "Noto Sans SC";
  margin-left: 1em;
}
@media (max-width: 768px) {
  .list_contenta1 .lx-a1v1 .lx-a1b2 .cont-p {
    line-height: 1.5em;
  }
}

.dow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .dow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  .dow-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.dow-list li {
  text-align: center;
}
.dow-list li .tit {
  color: #333;
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}

.tcerm {
  position: relative;
  cursor: pointer;
}
.tcerm .wehxa {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 7.5rem;
  padding: 0.625rem;
  border-radius: 0.35rem;
  background: #fff;
  box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.15);
  display: none;
}
.tcerm .wehxa img {
  width: 100%;
}
.tcerm:hover .wehxa {
  display: block;
}

.cp-show-body {
  overflow: visible !important;
}