
body, html {
  font-size: -webkit-calc(100vw / 120);
  font-size: -moz-calc(100vw / 120);
  font-size: calc(100vw / 120);
}

@media (min-width: 1024px) and (max-width: 1366px) {
  body, html {
    font-size: -webkit-calc(100vw / 100);
    font-size: -moz-calc(100vw / 100);
    font-size: calc(100vw / 100);
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  body, html {
    font-size: -webkit-calc(100vw / 90);
    font-size: -moz-calc(100vw / 90);
    font-size: calc(100vw / 90);
  }
}

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

@media (max-width: 1366px) {
  .wh {
    padding: 0 5.78125%;
  }
}

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

.wh1 {
  padding: 0 2.86458%;
}

@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: #323232;
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 500 1rem/3.125rem "Noto Sans SC";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  background: transparent;
  border: 1px solid #CACACA;
  -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: .875rem;
  }
}

.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0453a2;
  color: #fff;
  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;
  border-color: #0453a2;
}

.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: #6D6D6D;
  border: none;
  background: #fff;
}

.more-msl.bs:before {
  background: #0453a2;
}

.more-msl.bs:hover {
  color: #fff;
  border-color: #0453a2;
}

.more-b {
  display: inline-block;
  padding: 0.38rem 2rem;
  border-radius: 3.125rem;
  color: #A9A9A9;
  overflow: hidden;
  position: relative;
  border: 1px solid #A9A9A9;
  z-index: 1;
  font-family: 'Noto Sans SC';
}

.more-b > * {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.more-b span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  -webkit-transition-delay: .06s;
     -moz-transition-delay: .06s;
       -o-transition-delay: .06s;
          transition-delay: .06s;
  line-height: 2.2rem;
}

@media (max-width: 768px) {
  .more-b span {
    font-size: 1rem;
  }
}

.more-b i {
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 0.5em;
  -webkit-transition-delay: .12s;
     -moz-transition-delay: .12s;
       -o-transition-delay: .12s;
          transition-delay: .12s;
  color: #A9A9A9;
  font-weight: 700;
  vertical-align: middle;
}

.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  border-radius: 3.125rem;
  background-color: #0453a2;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.more-b:hover {
  border-color: #0453a2;
}

.more-b:hover > * {
  -webkit-transform: translateX(0.75rem);
     -moz-transform: translateX(0.75rem);
      -ms-transform: translateX(0.75rem);
       -o-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
  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 {
  border-color: #fff;
  color: #fff;
}

.more-b.bs i {
  color: #fff;
}

.more-b.bs:hover {
  border-color: #0453a2;
}

.more-b.ls {
  border-color: #0453a2;
  color: #fff;
  background: #0453a2;
}

.more-b.ls i {
  color: #fff;
}

.more-b.ls::after {
  background-color: #000;
}

.more-b.ls:hover {
  border-color: #000;
}

.more-b.bsb {
  border-color: #fff;
  color: #010101;
  background: #fff;
}

.more-b.bsb i {
  color: #010101;
}

.more-b.bsb:hover {
  border-color: transparent;
  color: #fff;
}

.more-b.bsb:hover i {
  color: #fff;
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}

@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
}

.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}

@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: -webkit-calc(90vh - 60px);
    padding-bottom: -moz-calc(90vh - 60px);
    padding-bottom: calc(90vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.20276%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}

.head .head2 {
  line-height: 6.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.head .head2 .logo a {
  display: block;
}

.head .head2 .logo a img {
  height: 2.1875rem;
}

.head .head2 .sska {
  line-height: 1em;
  margin-left: 0.8em;
}

.head .head2 .sska, .head .head2 .zywena {
  font-size: 1rem;
  color: #fff;
  position: relative;
}
.head .head2 .zywena .secsdf{
  width: 150px;
  border: 1px solid #EDEDED;
  background: #FFF;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
  padding: 1rem 0rem;
  text-align: center;
  transition: 200ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  position: absolute;
  top: 100%;
  left: 0;
}
.head .head2 .zywena:hover .secsdf{
  transition: 200ms ease-in-out;
    transform: scaleY(1);
}
.head .head2 .zywena .secsdf a{
  display: block;
  line-height:30px;
  text-decoration: none;
  font-size: 1rem;
  color: #000;  text-decoration: none;
transition: 400ms ease-in-out;
-moz-transition: 400ms ease-in-out;
/* Firefox 4 */
-webkit-transition: 400ms ease-in-out;
/* Safari and Chrome */
-o-transition: 400ms ease-in-out;
}
.head .head2 .sska a, .head .head2 .zywena a {
  font: 500 1rem/1em "Noto Sans SC";
  color: #fff;
}
.head .head2 .zywena .secsdf a:hover{
  background: #0453a2;
  color: #FFF !important;  
transition: 400ms ease-in-out;
-moz-transition: 400ms ease-in-out;
/* Firefox 4 */
-webkit-transition: 400ms ease-in-out;
/* Safari and Chrome */
-o-transition: 400ms ease-in-out;
 
  
}
.head .head2 .sska i, .head .head2 .zywena i {
  color: #fff;
  font-size: 1.25rem;
  margin-right: 0.4em;
}
.head .head2 .sska a, .head .head2 .zywena a:hover{
  color: #0453a2 !important;
}

.head .head2 .zywena {
  text-align: center;
  margin-left: 1em;
  margin-right: 1rem;
  position: relative;
}
.wehsst {
  color: #fff;
}
#menu {
  margin-right: 1vw;
}

#menu .nav_a1 li {
  float: left;
}

#menu .nav_a1 li a {
  display: block;
  color: #fff;
  font-family: "Noto Sans SC";
}


#menu .nav_a1 li > a {
  font-size: 1.125rem;
  padding: 0 1em;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

@media (max-width: 1680px) {
  #menu .nav_a1 li > a {
    padding: 0 1.35em;
  }
}

@media (max-width: 1366px) {
  #menu .nav_a1 li > a {
    padding: 0 0.8em;
  }
}

@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.5em;
  }
}

#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}

#menu .nav_a1 li > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #fff;
  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 .sec {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: white;
  z-index: 999;
  text-align: left;
  border-bottom-left-radius: .9375rem;
  border-bottom-right-radius: .9375rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
   -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
       transform: translateY(20px);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  padding: 2.5rem 0;
}

#menu .nav_a1 li .sec .xgagf-a a {
  font: 500 1rem/1.5em "";
  padding: 0.78em 0;
  color: rgba(0, 0, 0, 0.5);
  width: 48%;
  display: block;
  border-bottom: 1px solid rgba(190, 190, 190, 0.3);
  position: relative;
}

#menu .nav_a1 li .sec .xgagf-a a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  background: #0453a2;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  height: 1px;
}

#menu .nav_a1 li .sec .xgagf-a a:hover {
  color: #0453a2;
}

#menu .nav_a1 li .sec .xgagf-a a:hover::after {
  width: 100%;
}

#menu .nav_a1 li .sec:after {
  content: '';
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border-width: 10px;
  cursor: pointer;
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
  border-top: none;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  z-index: 99;
  display: none;
}

#menu .nav_a1 li .sec .wehxh-v {
  width: 58.85417%;
  margin: 0 auto;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#menu .nav_a1 li .sec .wehxh-v .xgagf-a {
  width: 51.32743%;
}

#menu .nav_a1 li .sec .wehxh-v .xgagf-b {
  width: 44.24779%;
}

#menu .nav_a1 li .sec .wehxh-v .xgagf-b a.img {
  display: block;
  font-size: 0;
  padding-bottom: 41%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

#menu .nav_a1 li .sec .wehxh-v .xgagf-b a.img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#menu .nav_a1 li .sec .wehxh-v .xgagf-b a.img img {
  width: 100%;
}

#menu .nav_a1 li:hover .sec {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
   -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
       transform: translateY(1px);
}

#menu .nav_a1 li:hover > a, #menu .nav_a1 li.active > a {
  font-weight: 700;
}

#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.nav-img {
  padding-bottom: 40%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

.nav-img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Ã¦ÂÅ“Ã§Â´Â¢ */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  display: none;
}

.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25%;
}

.inp {
  width: 100%;
  height: 100px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.bu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
}

.bu .iconfont {
  font-size: 3.125rem;
}

.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: white;
  cursor: pointer;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.search-con:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}

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

.head .head2:hover {
  background: #fff;
  border-bottom: 1px solid rgba(190, 190, 190, 0.3);
}

.head .head2:hover .logo a img {
  -webkit-filter: invert(51%) sepia(94%) saturate(6433%) hue-rotate(190deg) brightness(93%) contrast(101%);
          filter: invert(51%) sepia(94%) saturate(6433%) hue-rotate(190deg) brightness(93%) contrast(101%);
}

.head .head2:hover #menu .nav_a1 li a {
  color: rgba(0, 0, 0, 0.7);
}

.head .head2:hover #menu .nav_a1 li a:hover {
  color: #0453a2;
}

.head .head2:hover #menu .nav_a1 li > a span::after {
  background: #0453a2;
}

.head .head2:hover .sska i, .head .head2:hover .zywena i, .head .head2:hover .sska a, .head .head2:hover .zywena a, .head .head2:hover .sska a, .head .head2:hover .zywena {
  color: rgba(0, 0, 0, 0.7);
}

.head.sticky .head2 {
  background: #fff;
  border-bottom: 1px solid rgba(190, 190, 190, 0.3);
}

.head.sticky .head2 .logo a img {
  -webkit-filter: invert(51%) sepia(94%) saturate(6433%) hue-rotate(190deg) brightness(93%) contrast(101%);
          filter: invert(51%) sepia(94%) saturate(6433%) hue-rotate(190deg) brightness(93%) contrast(101%);
}

.head.sticky .head2 #menu .nav_a1 li a {
  color: rgba(0, 0, 0, 0.7);
}

.head.sticky .head2 #menu .nav_a1 li a:hover {
  color: #0453a2;
}

.head.sticky .head2 #menu .nav_a1 li > a span::after {
  background: #0453a2;
}

.head.sticky .head2 .sska i, .head.sticky .head2 .zywena i, .head.sticky .head2 .sska a, .head.sticky .head2 .zywena a {
  color: rgba(0, 0, 0, 0.7);
}

/*Ã¦â€°â€¹Ã¦Å“ÂºÃ§Â«Â¯Ã¥Â¤Â´Ã©Æ’Â¨*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999999;
  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: 36px;
  max-width: 40%;
}

.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 .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .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: 600;
}

.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}

.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.m-bm-nav .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}

.m-bm-head.white .m-bm-head-box .m-bm-navbtn span, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:after, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}

.m-bm-head.white .m-bm-menu {
  background: #fff;
}

.m-bm-head.white .m-bm-nav > li, .m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}

.m-bm-head.white .m-bm-nav > li > a, .m-bm-head.white .m-bm-nav .aniut i, .m-bm-head.white .m-bm-nav > li .sec a, .m-bm-head.white .mrhgxt {
  color: #000;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}

/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pc-banner .mySwipera {
  height: 100%;
}

.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
}

.pc-banner .mySwipera .swiper-slide .img > img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}

.pc-banner .mySwipera .swiper-slide .img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .swiper-slide .img::after {
    display: none;
  }
}

.pc-banner .mySwipera .banwez {
  width: 100%;
  z-index: 99;
  text-align: center;
  color: #FFFFFF;
}

.pc-banner .mySwipera .banwez dt {
  font: 900 3.375rem/1.1em "Poppins";
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez dt {
    font-size: 2rem;
  }
}

.pc-banner .mySwipera .banwez dd {
  font: 600 3.75rem/1.25em "Noto Sans SC";
  margin-top: 0.15em;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez dd {
    font-size: 1.6rem;
    margin-top: 0.3em;
  }
}

.pc-banner .mySwipera .banwez a.more-msl {
  display: block;
  margin: 0 auto;
  margin-top: 2em;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez a.more-msl {
    margin-top: 1em;
  }
}

.pc-banner .mySwipera .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 3%;
  width: 100%;
}

.pc-banner .mySwipera .swiper-pagination span {
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  width: .875rem;
  height: .875rem;
  border-radius: 50%;
  margin: 0 .4375rem;
}

.pc-banner .mySwipera .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .swiper-pagination span {
    margin: 0 .2375rem;
  }
}

.viewMore--3t8jh {
  position: absolute;
  left: 49.3%;
  bottom: 3%;
  width: auto;
  height: 5rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  -webkit-transform: scale(1.1) translateY(-0.6rem);
  -ms-transform: scale(1.1) translateY(-0.6rem);
  -moz-transform: scale(1.1) translateY(-0.6rem);
    -o-transform: scale(1.1) translateY(-0.6rem);
       transform: scale(1.1) translateY(-0.6rem);
  z-index: 9;
}

@media (max-width: 768px) {
  .viewMore--3t8jh {
    left: 47.3%;
  }
}

.arrow--23PRO {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@-webkit-keyframes arrowMove0--3web3 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    opacity: .9;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    transform: translateY(0.13rem) rotate(-45deg);
    opacity: .6;
  }
}

@-moz-keyframes arrowMove0--3web3 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .9;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: .6;
  }
}

@-o-keyframes arrowMove0--3web3 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
       transform: translateY(0) rotate(-45deg);
    opacity: .9;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -o-transform: translateY(0.13rem) rotate(-45deg);
       transform: translateY(0.13rem) rotate(-45deg);
    opacity: .6;
  }
}

@keyframes arrowMove0--3web3 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
      -o-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .9;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
      -o-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: .6;
  }
}

.arrow-0--2Z3_7 {
  content: "";
  display: block;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  width: 1.6875rem;
  height: 1.6875rem;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-animation-name: arrowMove0--3web3;
  -moz-animation-name: arrowMove0--3web3;
    -o-animation-name: arrowMove0--3web3;
       animation-name: arrowMove0--3web3;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
}

@-webkit-keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

@-moz-keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

@-o-keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
       transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -o-transform: translateY(0.13rem) rotate(-45deg);
       transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

@keyframes arrowMove1--2gBO- {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
      -o-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .6;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
      -o-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: .3;
  }
}

.arrow-1--3ffAv {
  content: "";
  display: block;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  width: 1.6875rem;
  height: 1.6875rem;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-animation-name: arrowMove1--2gBO-;
  -moz-animation-name: arrowMove1--2gBO-;
    -o-animation-name: arrowMove1--2gBO-;
       animation-name: arrowMove1--2gBO-;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
  margin: -0.9375rem 0 0;
}

@-webkit-keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

@-moz-keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

@-o-keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
       transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -o-transform: translateY(0.13rem) rotate(-45deg);
       transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

@keyframes arrowMove2--JKEw4 {
  from {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
      -o-transform: translateY(0) rotate(-45deg);
         transform: translateY(0) rotate(-45deg);
    opacity: .3;
  }
  to {
    -webkit-transform: translateY(0.13rem) rotate(-45deg);
    -moz-transform: translateY(0.13rem) rotate(-45deg);
      -o-transform: translateY(0.13rem) rotate(-45deg);
         transform: translateY(0.13rem) rotate(-45deg);
    opacity: 0;
  }
}

.mouse {
  cursor: pointer;
}

.arrow-2--12bmK {
  content: "";
  display: block;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  width: 1.6875rem;
  height: 1.6875rem;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: -o-linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 50%, transparent 50%);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -webkit-animation-name: arrowMove2--JKEw4;
  -moz-animation-name: arrowMove2--JKEw4;
    -o-animation-name: arrowMove2--JKEw4;
       animation-name: arrowMove2--JKEw4;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
       animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
       animation-duration: 1s;
  margin: -0.9375rem 0 0;
}

#myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  #myvideo {
    display: none;
  }
}

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

@media (max-width: 768px) {
  .label_el {
    -webkit-text-stroke-width: 0.3px;
  }
}

@-webkit-keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-moz-keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -moz-transform: scale(1.2);
         transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}

@-o-keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -o-transform: scale(1);
       transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -o-transform: scale(1.2);
       transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

/* Ã¥â€ºÂ¾Ã§â€°â€¡Ã¥Å Â¨Ã§â€Â» */
.fang {
  overflow: hidden;
  display: block;
}

.fang img {
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .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 .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.xz:hover img {
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.fp-viewing-section2 .head, .fp-viewing-section3 .head, .fp-viewing-section4 .head, .fp-viewing-section5 .head {
  display: none;
}

@media (max-width: 990px) {
  .fp-tableCell, .fp-section.fp-table, .fp-slide.fp-table {
    height: auto !important;
  }
  .section2, .section4 {
    padding: 8rem 0;
  }
}

@media (max-width: 768px) {
  .section2, .section3, .section4 {
    padding: 2.5rem 0;
  }
}

.section {
  position: relative;
}

.section .fg-bj {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.section .fg-bj .bj-sda {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.08, 1.08);
     -moz-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
       -o-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
  -webkit-transition: all 5s linear;
  -o-transition: all 5s linear;
  -moz-transition: all 5s linear;
  transition: all 5s linear;
}

.section.active .fg-bj .bj-sda {
  -webkit-transform: scale(1, 1);
     -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
       -o-transform: scale(1, 1);
          transform: scale(1, 1);
}

.gong-p {
  color: #323232;
  font: 500 1.25rem/1.6em "Noto Sans SC";
  text-align: justify;
}

@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}

.title_a1 .tit {
  color: #000000;
  font-family: 'Noto Sans SC';
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25em;
}

@media (max-width: 768px) {
  .title_a1 .tit {
    font-size: 2rem;
  }
}

.title_a1 .ftit {
  color: #0453a2;
  font-family: 'Montserrat';
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .title_a1 .ftit {
    font-size: 1.25rem;
  }
}

.title_a1.bs .tit, .title_a1.bs .ftit {
  color: #fff;
}

@-webkit-keyframes yunMove {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

@-moz-keyframes yunMove {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

@-o-keyframes yunMove {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

@keyframes yunMove {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

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

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

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

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

.section2 {
  position: relative;
  background: url(../images/bj2.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}

.section2 .a2_v1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .section2 .a2_v1 {
    display: none;
  }
}

.section2 .a2_v1 .a2_b1 {
  width: 50%;
  position: relative;
  overflow: hidden;
  -o-background-size: cover;
     background-size: cover;
}

.section2 .a2_v1 .a2_b1 .img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  -webkit-animation: yunMove 30s infinite linear;
     -moz-animation: yunMove 30s infinite linear;
       -o-animation: yunMove 30s infinite linear;
          animation: yunMove 30s infinite linear;
  width: 200%;
  height: 30%;
}

.section2 .a2_v1 .a2_b1 .img img {
  height: 100%;
}

.section2 .a2_v1 .a2_b2 {
  width: 50%;
  position: relative;
}

.section2 .a2_v1 .a2_b2 u {
  display: block;
  font-size: 0;
  width: 54%;
  opacity: 0.5;
  left: 0;
  display: block;
  font-size: 0;
}

.section2 .a2_v1 .a2_b2 u b {
  display: block;
  font-size: 0;
  -webkit-animation: rotatedHalf1 13s infinite linear;
     -moz-animation: rotatedHalf1 13s infinite linear;
       -o-animation: rotatedHalf1 13s infinite linear;
          animation: rotatedHalf1 13s infinite linear;
}

.section2 .a2_v1 .a2_b2 u img {
  width: 100%;
}

.section2 .a2_v1 .a2_b2 i {
  display: block;
  font-size: 0;
  width: 97%;
  opacity: 0.5;
}

.section2 .a2_v1 .a2_b2 i img {
  width: 100%;
}

.section2 .a2_v2 {
  position: relative;
  z-index: 1;
}

.section2 .a2_v2 .a2_v2-a .a2d2 {
  width: 36.11111%;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2d2 {
    width: 100%;
    display: none;
  }
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 u {
  display: block;
  font-size: 0;
  -webkit-animation: rotatedHalf1 13s infinite linear;
     -moz-animation: rotatedHalf1 13s infinite linear;
       -o-animation: rotatedHalf1 13s infinite linear;
          animation: rotatedHalf1 13s infinite linear;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 u img {
  width: 100%;
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 i {
  display: block;
  font-size: 0;
  width: 97%;
  opacity: 0.5;
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 i img {
  width: 100%;
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 b {
  display: block;
  font-size: 0;
  width: 50%;
  z-index: 2;
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 b img {
  width: 100%;
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 p {
  display: block;
  font-size: 0;
  width: 41.15385%;
  z-index: 3;
}

.section2 .a2_v2 .a2_v2-a .a2d2 .a2e1 p img {
  width: 100%;
}

.section2 .a2_v2 .a2_v2-a .a2_v2a1 {
  width: 30%;
  z-index: 9;
  position: relative;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a1 {
    width: 100%;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a1 .cont-p {
  color: #fff;
  text-align: justify;
  font-family: Noto Sans SC;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65em;
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a1 .cont-p {
    margin-top: 1rem;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a1 a.more-b {
  margin-top: 1.375rem;
  background: #fff;
  color: #6D6D6D;
  border: none;
}

.section2 .a2_v2 .a2_v2-a .a2_v2a1 a.more-b i {
  color: #6D6D6D;
}

.section2 .a2_v2 .a2_v2-a .a2_v2a1 a.more-b:hover i {
  color: #fff;
}

.section2 .a2_v2 .a2_v2-a .a2_v2a2 {
  width: 34.44444%;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a2 {
    width: 100%;
    margin-top: 1rem;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 {
  padding-left: 15%;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 {
    padding-left: 0;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li {
  width: 50%;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li {
    text-align: center;
    margin: 1rem 0;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li .data span {
  color: #FFF;
  text-align: justify;
  font-family: Montserrat;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li .data span {
    font-size: 2.5rem;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li .data sup {
  color: #FFF;
  text-align: justify;
  font-family: Noto Sans SC;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1em;
  vertical-align: top;
  top: 0;
}

@media (max-width: 768px) {
  .section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li .data sup {
    font-size: 1.25rem;
  }
}

.section2 .a2_v2 .a2_v2-a .a2_v2a2 .jas-sd1 li p {
  color: #FFF;
  font-family: Noto Sans SC;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
}

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

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

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

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

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

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

.section3 .title_a1 {
  position: absolute;
  left: 0;
  width: 100%;
  top: 10.9375rem;
  text-align: center;
  z-index: 9;
}

@media (max-width: 768px) {
  .section3 .title_a1 {
    display: none;
  }
}

.section3 .title_a1 .tit {
  color: #fff;
}

.section3 .title_a1 .ftit {
  color: #fff;
}

.section3 .a3_v2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section3 .a3_v2 dl {
  height: 100%;
}

.section3 .a3_v2 dl img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 990px) {
  .section3 .a3_v2 dl img {
    height: 50vh;
  }
  .viewMore--3t8jh{
    display: none;
  }
  .pc-banner .viewMore--3t8jh{
    display: block;
  }
}

@media (max-width: 768px) {
  .section3 .a3_v2 dl img {
    height: 100%;
  }
}

.section3 .a3_v1 {
  z-index: 9;
  position: relative;
}

.section3 .a3_v1 .a3_b1 li {
  width: 25%;
  height: 100vh;
  padding: 0 2%;
  text-align: center;
  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;
  position: relative;
  overflow: hidden;
}

@media (max-width: 990px) {
  .section3 .a3_v1 .a3_b1 li {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li {
    height: 40vh;
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section3 .a3_v1 .a3_b1 li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.section3 .a3_v1 .a3_b1 li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  background: -webkit-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -moz-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -o-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: linear-gradient(0deg, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  width: 100%;
  height: 100%;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.section3 .a3_v1 .a3_b1 li:nth-child(2)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #109cd9;
  -webkit-animation: scroll2 2.1s linear infinite;
     -moz-animation: scroll2 2.1s linear infinite;
       -o-animation: scroll2 2.1s linear infinite;
          animation: scroll2 2.1s linear infinite;
}

.section3 .a3_v1 .a3_b1 li:nth-child(3)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #109cd9;
  -webkit-animation: scroll2 1.8s linear infinite;
     -moz-animation: scroll2 1.8s linear infinite;
       -o-animation: scroll2 1.8s linear infinite;
          animation: scroll2 1.8s linear infinite;
}

.section3 .a3_v1 .a3_b1 li:nth-child(4)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #109cd9;
  -webkit-animation: scroll2 2.4s linear infinite;
     -moz-animation: scroll2 2.4s linear infinite;
       -o-animation: scroll2 2.4s linear infinite;
          animation: scroll2 2.4s linear infinite;
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li:nth-child(5) {
    width: 100%;
  }
}

.section3 .a3_v1 .a3_b1 li:nth-child(5)::after {
  content: '';
  position: absolute;
  left: -1px;
  height: 60px;
  top: 0;
  width: 2px;
  background: #109cd9;
  -webkit-animation: scroll2 1.5s linear infinite;
     -moz-animation: scroll2 1.5s linear infinite;
       -o-animation: scroll2 1.5s linear infinite;
          animation: scroll2 1.5s linear infinite;
}

.section3 .a3_v1 .a3_b1 li .cont-p {
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  margin-bottom: 10.9375rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li .cont-p {
    margin-bottom: 0;
  }
}

.section3 .a3_v1 .a3_b1 li .cont-p u {
  display: block;
  font-size: 0;
  width: 5.625rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li .cont-p u {
    width: 3.5rem;
  }
}

.section3 .a3_v1 .a3_b1 li .cont-p u img {
  width: 100%;
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(97deg) brightness(108%) contrast(105%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(97deg) brightness(108%) contrast(105%);
}

.section3 .a3_v1 .a3_b1 li .cont-p .tit {
  font: 600 1.75rem/1.5em "Noto Sans SC";
  margin: 1rem 0 0.8rem;
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li .cont-p .tit {
    font-size: 1.35rem;
    margin: 0.5rem 0 0.4rem;
  }
}

.section3 .a3_v1 .a3_b1 li .cont-p .p {
  font: 400 1rem/1.5em "Noto Sans SC";
  text-align: left;
  display: none;
}

.section3 .a3_v1 .a3_b1 li .cont-p a.more-b {
  margin-top: 2.75rem;
  display: none;
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li .cont-p a.more-b {
    margin-top: 1rem;
  }
}

.section3 .a3_v1 .a3_b1 li:hover::before,.section3 .a3_v1 .a3_b1 li.on::before {
  bottom: 0;
}

.section3 .a3_v1 .a3_b1 li:hover .cont-p,.section3 .a3_v1 .a3_b1 li.on .cont-p  {
  margin-bottom: 5.625rem;
}

@media (max-width: 768px) {
  .section3 .a3_v1 .a3_b1 li:hover .cont-p,.section3 .a3_v1 .a3_b1 li.on .cont-p {
    margin-bottom: 0;
  }
}

.section3 .a3_v1 .a3_b1 li:hover .cont-p .p,.section3 .a3_v1 .a3_b1 li.on .cont-p .p  {
  display: block;
}

.section3 .a3_v1 .a3_b1 li:hover .cont-p a.more-b,.section3 .a3_v1 .a3_b1 li.on .cont-p a.more-b {
  display: inline-block;
}

.section4 {
  background: url(../images/e51e34e04ec5575652a3ca1e8e21016a.png) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}

@media (max-width: 768px) {
  .section4 .a4_vb1 .xw-sort1 {
    width: 100%;
    margin-top: 1rem;
  }
}

.section4 .a4_vb1 .xw-sort1 li + li {
  margin-left: 1.5em;
}

.section4 .a4_vb1 .xw-sort1 li a {
  display: block;
  color: #000000;
  font: 400 1rem/1.5em "Noto Sans SC";
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.7em 2.25em;
  border-radius: 1.6rem;
}

.section4 .a4_vb1 .xw-sort1 li:hover a {
  color: #FFFFFF;
  background: #0453a2;
  border-color: #0453a2;
}

.section4 .a4_v2 {
  padding-left: 12.5%;
  margin-top: 2rem;
}

@media (max-width: 1366px) {
  .section4 .a4_v2 {
    padding-left: 5.78125%;
  }
}

@media (max-width: 768px) {
  .section4 .a4_v2 {
    padding: 0 4%;
    margin-top: 1rem;
  }
}

.section4 .a4_v2 .cont-p {
  border-radius: .625rem;
  background: #FFF;
  box-shadow: 0px 0.15rem 0.8rem 0px rgba(0, 117, 204, 0.2);
  padding: 1.625rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.section4 .a4_v2 .cont-p .xw-as1 .data {
  width: 6.25rem;
}

.section4 .a4_v2 .cont-p .xw-as1 .data b {
  display: block;
  color: #0453a2;
  font-family: Montserrat;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.section4 .a4_v2 .cont-p .xw-as1 .data p {
  color: rgba(8, 8, 8, 0.5);
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.section4 .a4_v2 .cont-p .xw-as1 a.name {
  width: -webkit-calc(100% - 6.375rem);
  width: -moz-calc(100% - 6.375rem);
  width: calc(100% - 6.375rem);
  color: rgba(0, 0, 0, 0.8);
  font: 600 1.125rem/1.4em "Noto Sans SC";
}

.section4 .a4_v2 .cont-p .xw-as2 {
  color: rgba(0, 0, 0, 0.6);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin: 1rem 0;
}

.section4 .a4_v2 .cont-p .img a {
  display: block;
  font-size: 0;
  overflow: hidden;
}

.section4 .a4_v2 .cont-p .img a img {
  width: 100%;
}

.section4 .a4_v2 .cont-p:hover, .section4 .a4_v2 .cont-p.on {
  background: #0453a2;
}

.section4 .a4_v2 .cont-p:hover .xw-as1 .data b, .section4 .a4_v2 .cont-p:hover .xw-as1 .data p, .section4 .a4_v2 .cont-p.on .xw-as1 .data b, .section4 .a4_v2 .cont-p.on .xw-as1 .data p {
  color: #fff;
}

.section4 .a4_v2 .cont-p:hover .xw-as1 a.name, .section4 .a4_v2 .cont-p.on .xw-as1 a.name {
  color: #fff;
}

.section4 .a4_v2 .cont-p:hover .xw-as2, .section4 .a4_v2 .cont-p.on .xw-as2 {
  color: #fff;
}

.section4 .a4_v2 .a4_v2b1 {
  width: 38.73659%;
}

@media (max-width: 768px) {
  .section4 .a4_v2 .a4_v2b1 {
    display: none;
  }
}

.section4 .a4_v2 .a4_v2b1 .mySwiper3 {
  padding: .625rem;
}

.section4 .a4_v2 .a4_v2b2 {
  width: 60.48868%;
}

@media (max-width: 768px) {
  .section4 .a4_v2 .a4_v2b2 {
    width: 100%;
  }
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 {
  padding: .625rem;
  padding-right: 24%;
}

@media (max-width: 1366px) {
  .section4 .a4_v2 .a4_v2b2 .mySwiper2 {
    padding-right: 5.78125%;
  }
}

@media (max-width: 768px) {
  .section4 .a4_v2 .a4_v2b2 .mySwiper2 {
    padding: 0;
  }
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .swiper-pagination {
  background: #E8E8E8;
  width: 100%;
  top: auto;
  height: 4px;
  bottom: 0;
  position: static;
  border-radius: 0.2rem;
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #0453a2;
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .jata-a {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .section4 .a4_v2 .a4_v2b2 .mySwiper2 .jata-a {
    margin-top: 1.5rem;
  }
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .jata-a .swiper-pagination {
  width: -webkit-calc(95% - 7.625rem);
  width: -moz-calc(95% - 7.625rem);
  width: calc(95% - 7.625rem);
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .jata-a .jtas-b {
  width: 7.625rem;
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .jata-a .jtas-b > div {
  background: #0453a2;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
}

.section4 .a4_v2 .a4_v2b2 .mySwiper2 .jata-a .jtas-b > div i {
  color: #fff;
  font: 500 1rem/1em "Noto Sans SC";
}

@media (max-width: 990px) {
  .foot-fot {
    position: relative;
  }
  .foot-fot .m-bm-head-box .m-bm-navbtn span, .foot-fot .m-bm-head-box .m-bm-navbtn:after, .foot-fot .m-bm-head-box .m-bm-navbtn:before {
    background: #000;
  }
  .foot-fot .m-bm-nav > li, .foot-fot .m-bm-nav > li .sec {
    border-color: rgba(51, 51, 51, 0.1);
  }
  .foot-fot .m-bm-nav > li > a, .foot-fot .m-bm-nav .aniut i, .foot-fot .m-bm-nav > li .sec a, .foot-fot .mrhgxt {
    color: #000;
  }
}

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

.section5 .foot-fot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

@media (max-width: 990px) {
  .section5 .foot-fot {
    position: relative;
  }
}

.section5 .fp-tableCell {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
}

.section5 .bjasd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* background: -webkit-linear-gradient(298deg, #0453a2 11.55%, #0262AA 86.83%);
  background: -moz-linear-gradient(298deg, #0453a2 11.55%, #0262AA 86.83%);
  background: -o-linear-gradient(298deg, #0453a2 11.55%, #0262AA 86.83%); */

}

.section5 .bjasd canvas {
  opacity: 0.2;
}

.section5 .a5_v1 {
  width: 100%;
  height: 54%;
  background:url(../images/8d1a6a1045fbd7de5a7b519d753dba86.jpg) no-repeat right bottom;
  background-size: cover;
}

@media (max-width: 990px) {
  .section5 .a5_v1 {
    padding: 4rem 0;
    height: auto;
  }
}

@media (max-width: 768px) {
  .section5 .a5_v1 {
    padding: 2.5rem 0;
  }
}

.section5 .a5_v1 .wh {
  width: 100%;
}

.section5 .a5_v1 .mySwiper10 {
  margin-top: 1.5rem;
  overflow: hidden;
  padding: 0 1px;
}

@media (max-width: 768px) {
  .section5 .a5_v1 .mySwiper10 {
    margin-top: 1rem;
  }
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img .biankuang {
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img .biankuang_1 {
  height: 1px;
  top: 0;
  left: 0;
  width: 0;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img .biankuang_2 {
  height: 0;
  top: 0;
  left: 0;
  width: 1px;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img .biankuang_3 {
  height: 0;
  bottom: 0;
  right: 0;
  width: 1px;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img .biankuang_4 {
  height: 1px;
  bottom: 0;
  right: 0;
  width: 0;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img img {
  width: 100%;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img:hover .biankuang_1 {
  width: 100%;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img:hover .biankuang_2 {
  height: 100%;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img:hover .biankuang_3 {
  height: 100%;
}

.section5 .a5_v1 .mySwiper10 .swiper-slide .img:hover .biankuang_4 {
  width: 100%;
}

.section5 .a5_v1 .picMarquee-left {
  margin-top: 1.5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section5 .a5_v1 .picMarquee-left {
    margin-top: 1rem;
  }
}

.section5 .a5_v1 .picMarquee-left li {
  width: 13.4375rem;
  margin-right: 1.5625rem;
}

.section5 .a5_v1 .picMarquee-left li .img {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section5 .a5_v1 .picMarquee-left li .img .biankuang {
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
}

.section5 .a5_v1 .picMarquee-left li .img .biankuang_1 {
  height: 1px;
  top: 0;
  left: 0;
  width: 0;
}

.section5 .a5_v1 .picMarquee-left li .img .biankuang_2 {
  height: 0;
  top: 0;
  left: 0;
  width: 1px;
}

.section5 .a5_v1 .picMarquee-left li .img .biankuang_3 {
  height: 0;
  bottom: 0;
  right: 0;
  width: 1px;
}

.section5 .a5_v1 .picMarquee-left li .img .biankuang_4 {
  height: 1px;
  bottom: 0;
  right: 0;
  width: 0;
}

.section5 .a5_v1 .picMarquee-left li .img img {
  width: 100%;
}

.section5 .a5_v1 .picMarquee-left li .img:hover .biankuang_1 {
  width: 100%;
}

.section5 .a5_v1 .picMarquee-left li .img:hover .biankuang_2 {
  height: 100%;
}

.section5 .a5_v1 .picMarquee-left li .img:hover .biankuang_3 {
  height: 100%;
}

.section5 .a5_v1 .picMarquee-left li .img:hover .biankuang_4 {
  width: 100%;
}

.section5 .foot-fot {
  width: 100%;
}

.foot-fot {
  position: relative;
  background: #FFFFFF;
}

.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 2.625rem 0 5.1875rem;
}

@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}

.foot-fot .foota1 .foot-tit {
  color: rgba(0, 0, 0, 0.7);
  font: 600 1.125rem/1.5em "Noto Sans SC";
}

.foot-fot .foota1 .foot-tit a {
  color: rgba(0, 0, 0, 0.7);
  display: block;
}

.foot-fot .foota1 .dseca {
  margin-top: 0.6em;
}

.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  font: 400 1rem/1.8em "Noto Sans SC";
}

.foot-fot .foota1 .dseca > a:hover {
  color: #0453a2;
}

.foot-fot .foota1 .dseca p {
  color: rgba(0, 0, 0, 0.5);
  font: 500 1rem/1.8em "Noto Sans SC";
}

.foot-fot .foota1 .fo-a2 .dlogo img {
  height: 2.1875rem;
}

.foot-fot .foota1 .fo-a2 .rtaas-a {
  margin-top: 2rem;
}

.foot-fot .foota1 .fo-a2 .rtaas-a p {
  color: rgba(0, 0, 0, 0.5);
  font: 400 1rem/1.2em "Noto Sans SC";
}

.foot-fot .foota1 .fo-a2 .rtaas-a b {
  display: block;
  color: #0453a2;
  font: 600 1.625rem/1.3em "Montserrat";
}

.foot-fot .foota1 .fo-a2 .fenxasd {
  margin-top: 0.75rem;
}

.foot-fot .foota1 .fo-a2 .fenxasd a {
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: #fff;
  margin: 0 0.3rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  text-align: center;
  border: 1px solid #9C9C9C;
  position: relative;
  z-index: 1;
}
.foot-fot .foota1 .fo-a2 .fenxasd .erm-a {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -9.625rem;
  background: #fff;
  padding: 0.3rem;
  border-radius: 0.6rem;
  width: 7.5rem;
  box-shadow: 0 0.25rem 1rem 0.25rem rgba(0, 20, 60, 0.2);
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  margin: 0 auto;
  z-index: -1;
}

.foot-fot .foota1 .fo-a2 .fenxasd .erm-a:before {
  content: "";
  border: 10px solid transparent;
  border-top-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.foot-fot .foota1 .fo-a2 .fenxasd .erm-a img {
  width: 100%;
}

.foot-fot .foota1 .fo-a2 .fenxasd a:hover .erm-a {
  opacity: 1;
  top: -8rem;
}

.foot-fot .foota1 .fo-a2 .fenxasd a i {
  color: #9C9C9C;
  font-size: 1.25rem;
  line-height: 2.375rem;
}

.foot-fot .foota1 .fo-a2 .fenxasd a:hover {
  background: #0453a2;
  border-color: #0453a2;
}

.foot-fot .foota1 .fo-a2 .fenxasd a:hover i {
  color: #fff;
}

.foot-fot .foota1 .fo-a3 {
  text-align: center;
}

.foot-fot .foota1 .fo-a3 .erma {
  display: block;
  font-size: 0;
}

.foot-fot .foota1 .fo-a3 .erma img {
  width: 7.4375rem;
  margin: 0 auto;
}

.foot-fot .foota1 .fo-a3 p {
  color: rgba(0, 0, 0, 0.5);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 0.5em;
}

.foot-fot .foota2 {
  background: #E4E4E4;
  color: #969696;
  font: 400 0.875rem/1.65em "Noto Sans SC";
  padding: 1em 0;
  text-align: center;
}

@media (max-width: 768px) {
  .foot-fot .foota2 {
    padding: 0.85em 0;
  }
}

.foot-fot .foota2 a {
  color: #969696;
}

.foot-fot .foota2 a:hover {
  /* font-weight: 600; */
  color: #0453a2;
}

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

.foot1-m .derma-m {
  width: 30%;
  max-width: 100px;
  margin: 1.5em auto 0;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}

/*Ã¦â€°â€¹Ã¦Å“ÂºÃ¥Âºâ€¢Ã©Æ’Â¨*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}

.hidden {
  display: none;
}

.dbb {
  height: 50px;
}

.zd_erha {
  position: fixed;
  right: 1.3%;
  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.tops {
  display: none;
}

.zd_erha .aat_list li + li {
  margin-top: 1.25rem;
}

.zd_erha li.topa {
  display: none;
}

.zd_erha li > a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: #000000;
  border-radius: 50%;
  line-height: 3.15rem;
  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 .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 .7s;
  -o-transition: all .7s;
  -moz-transition: all .7s;
  transition: all .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);
}

#fp-nav.fp-left {
  left: 2%;
}

.fp-viewing-section1 #fp-nav ul li a span, .fp-viewing-section1 .fp-slidesNav ul li a span, .fp-viewing-section2 #fp-nav ul li a span, .fp-viewing-section2 .fp-slidesNav ul li a span, .fp-viewing-section3 #fp-nav ul li a span, .fp-viewing-section3 .fp-slidesNav ul li a span, .fp-viewing-section5 #fp-nav ul li a span, .fp-viewing-section5 .fp-slidesNav ul li a span {
  background: #fff;
}

.fp-viewing-section1 .zd_erha li > a {
  display: none;
}

.vis {
  visibility: hidden;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 160;
}

.loading .mask {
  position: absolute;
  width: 200vw;
  height: 200vw;
  left: -50.3vw;
  top: -webkit-calc(50vh - 100vw);
  top: -moz-calc(50vh - 100vw);
  top: calc(50vh - 100vw);
  background: #fff;
  border: 81vw solid #fff;
  border-radius: 50%;
  -webkit-transition: background 1s ease-in-out, -webkit-transform 1s ease-in-out 1s;
  transition: background 1s ease-in-out, -webkit-transform 1s ease-in-out 1s;
  -o-transition: background 1s ease-in-out, -o-transform 1s ease-in-out 1s;
  -moz-transition: background 1s ease-in-out, transform 1s ease-in-out 1s, -moz-transform 1s ease-in-out 1s;
  transition: background 1s ease-in-out, transform 1s ease-in-out 1s;
  transition: background 1s ease-in-out, transform 1s ease-in-out 1s, -webkit-transform 1s ease-in-out 1s, -moz-transform 1s ease-in-out 1s, -o-transform 1s ease-in-out 1s;
}

@media (max-width: 1024px) {
  .loading .mask {
    width: 300vw;
    height: 300vw;
    left: -100vw;
    top: -webkit-calc(50vh - 150vw);
    top: -moz-calc(50vh - 150vw);
    top: calc(50vh - 150vw);
    border: 105vw solid #fff !important;
  }
}

.loading .mask.on {
  background: transparent;
  transform: scale(4);
  -webkit-transform: scale(4);
  -moz-transform: scale(4);
  -o-transform: scale(4);
  -ms-transform: scale(4);
}

@media (max-width: 1024px) {
  .loading .mask.on {
    -webkit-transform: scale(9);
       -moz-transform: scale(9);
        -ms-transform: scale(9);
         -o-transform: scale(9);
            transform: scale(9);
  }
}

.loading .box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 38vw;
  height: 38vw;
  -webkit-animation: fadeIn 0.5s ease-in-out;
     -moz-animation: fadeIn 0.5s ease-in-out;
       -o-animation: fadeIn 0.5s ease-in-out;
          animation: fadeIn 0.5s ease-in-out;
  overflow: hidden;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}

@media (max-width: 1024px) {
  .loading .box {
    width: 90vw !important;
    height: 90vw !important;
  }
}

.loading .box svg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.loading .box svg path {
  fill: none;
  stroke: #0453a2;
  stroke-width: 1px;
  -webkit-transition: stroke 1s ease-in-out, opacity 0.3s ease-in-out 1s;
  -o-transition: stroke 1s ease-in-out, opacity 0.3s ease-in-out 1s;
  -moz-transition: stroke 1s ease-in-out, opacity 0.3s ease-in-out 1s;
  transition: stroke 1s ease-in-out, opacity 0.3s ease-in-out 1s;
}

.loading .box svg path.on {
  stroke: rgba(255, 255, 255, 0.2);
  opacity: 0;
}

.loading .box svg#cls1 {
  height: 100%;
  width: 100%;
}

.loading .box svg#cls2 {
  width: 1px;
  height: 73.65%;
  left: 18.4%;
  top: 11.6%;
  display: none;
}

.loading .box svg#cls3 {
  width: 1px;
  height: 50%;
  left: 50%;
  top: 50%;
}

.loading .box svg#cls4 {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0%;
}

.loading .box svg#cls5 {
  width: 55.7%;
  top: 1%;
  left: 3%;
  display: none;
}

.loading .box svg#cls6 {
  width: 81%;
  top: 1%;
  left: 18.4%;
  display: none;
}

.loading .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 38vw;
  height: 38vw;
  -webkit-animation: fadeIn 0.5s ease-in-out;
     -moz-animation: fadeIn 0.5s ease-in-out;
       -o-animation: fadeIn 0.5s ease-in-out;
          animation: fadeIn 0.5s ease-in-out;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}

@media (max-width: 1024px) {
  .loading .dot {
    width: 90vw !important;
    height: 90vw !important;
  }
}

.loading .dot > li {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #0453a2;
  background-color: #fff;
  opacity: 0;
}

.loading .dot > li:nth-of-type(1) {
  left: -webkit-calc(0% - 6px);
  left: -moz-calc(0% - 6px);
  left: calc(0% - 6px);
  top: -webkit-calc(0% - 6px);
  top: -moz-calc(0% - 6px);
  top: calc(0% - 6px);
}

.loading .dot > li:nth-of-type(2) {
  left: -webkit-calc(18.4% - 6px);
  left: -moz-calc(18.4% - 6px);
  left: calc(18.4% - 6px);
  top: -webkit-calc(11.6% - 6px);
  top: -moz-calc(11.6% - 6px);
  top: calc(11.6% - 6px);
  display: none;
}

.loading .dot > li:nth-of-type(3) {
  left: -webkit-calc(50% - 6px);
  left: -moz-calc(50% - 6px);
  left: calc(50% - 6px);
  top: -webkit-calc(50% - 6px);
  top: -moz-calc(50% - 6px);
  top: calc(50% - 6px);
}

.loading .dot > li:nth-of-type(4) {
  top: -webkit-calc(50% - 6px);
  top: -moz-calc(50% - 6px);
  top: calc(50% - 6px);
  left: -webkit-calc(0% - 6px);
  left: -moz-calc(0% - 6px);
  left: calc(0% - 6px);
}

.loading .dot > li:nth-of-type(5) {
  top: -webkit-calc(1% - 6px);
  top: -moz-calc(1% - 6px);
  top: calc(1% - 6px);
  left: -webkit-calc(3% - 6px);
  left: -moz-calc(3% - 6px);
  left: calc(3% - 6px);
  display: none;
}

.loading .dot > li:nth-of-type(6) {
  top: -webkit-calc(1% - 6px);
  top: -moz-calc(1% - 6px);
  top: calc(1% - 6px);
  left: -webkit-calc(18.4% - 6px);
  left: -moz-calc(18.4% - 6px);
  left: calc(18.4% - 6px);
  display: none;
}

.loading .dot .txt {
  position: absolute;
  width: 8rem;
  top: -webkit-calc(100% + 2.5rem);
  top: -moz-calc(100% + 2.5rem);
  top: calc(100% + 2.5rem);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #0453a2;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-family: 'Montserrat';
}

.loading .logosvg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37vw;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .loading .logosvg {
    width: 88vw !important;
  }
}

.loading .logosvg.on {
  opacity: 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: 600;
}

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

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #0453a2;
  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: #0453a2;
  border-color: #0453a2;
  vertical-align: middle;
}

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

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

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

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

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

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

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

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
}

@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

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

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

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

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

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

.ajhhsd {
  color: #8E8E8E;
  font: 400 1rem/2rem "Noto Sans SC";
  padding: 1.3em 0;
}

@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 1em 0;
  }
}

.ajhhsd span {
  padding: 0 0.05em;
}

.ajhhsd span:last-child {
  display: none;
}

.ajhhsd a {
  color: #8E8E8E;
}

.ajhhsd a:hover {
  color: #0453a2;
}

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}

@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}

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

.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}

@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.nav-page li {
  padding-bottom: 1em;
}

.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}

.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "Noto Sans SC";
  color: #333;
}

@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}

.nav-page li .sec {
  margin-top: 0.5em;
}

.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "Noto Sans SC";
  color: #777;
  margin-right: 1em;
}

.nav-page li .sec a:hover {
  color: #0453a2;
}

@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: #0453a2;
  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 {
  display: block;
  font-size: 0;
}

.nbanner .img img {
  width: 100%;
}

.nbanner .nbanner-wen1 {
  width: 100%;
}

.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}

.nbanner .nbanner-wen1 .banner-cont .p1 {
  font: 600 3.75rem/1.4em "Noto Sans SC";
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}

.nbanner .nbanner-wen1 .banner-cont .p2 {
  font: 600 2.5rem/1.4em "Poppins";
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1.125rem;
  }
}

.nbanner .nbanner-wen1 .banner-cont .p3 {
  font: 400 1.5rem/1.5em "Poppins";
  text-transform: uppercase;
  width: 70%;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p3 {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
}

.n_mbx {
  position: relative;
  left: 0;
  width: 100%;
  z-index: 9;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .n_mbx {
    border-bottom: 1px solid #f0f0f0;
  }
}

.n_mbx .wh .n_src {
  text-align: center;
  margin-top: -5rem;
}

@media (max-width: 768px) {
  .n_mbx .wh .n_src {
    margin-top: 0;
  }
}

.n_mbx .wh .n_src li {
  display: inline-block;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.n_mbx .wh .n_src li + li {
  border-left: 1px solid #fff;
}

.n_mbx .wh .n_src li a {
  display: block;
  font: 400 1.125rem/2rem "Noto Sans SC";
  color: rgba(0, 0, 0, 0.7);
  padding: 1.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .n_mbx .wh .n_src li a {
    padding: 1rem 0;
  }
}

.n_mbx .wh .n_src li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #0453a2;
  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 .wh .n_src li a {
    font-size: 1rem;
  }
}

.n_mbx .wh .n_src li a:hover {
  color: #0453a2;
}

.n_mbx .wh .n_src li a:hover::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.n_mbx .wh .n_src li.active a {
  color: #0453a2;
}

.n_mbx .wh .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);
}

.mbx {
  color: #A1A1A1;
  font: 500 .875rem/2em "Noto Sans SC";
  margin: 1em 0;
}

.mbx i {
  font-size: 1rem;
  margin-right: 0.5em;
}

.mbx a {
  color: #A1A1A1;
}

.mbx a:hover {
  color: #0453a2;
}

.ny-content {
  margin-bottom: 6.25rem;
}

@media (max-width: 768px) {
  .ny-content {
    margin-bottom: 2rem;
  }
}

.list_content {
  padding: 4rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font: 400 1rem/1.7em "Noto Sans SC";
}

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

@-webkit-keyframes scale2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

#abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
  height: 6.25rem;
  margin-top: -6.25rem;
}

@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny_tit .tit {
  color: #000000;
  font-family: 'Noto Sans SC';
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25em;
}

@media (max-width: 768px) {
  .ny_tit .tit {
    font-size: 2rem;
  }
}

.ny_tit .ftit {
  color: #999;
  font-family: 'Montserrat';
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ny_tit .ftit {
    font-size: 1.25rem;
  }
}

.ny_tit.bs .tit, .ny_tit.bs .ftit {
  color: #fff;
}

.ny-abt-body {
  overflow: visible;
}

.abt-cont1 {
  padding: 6.6875rem 0 5.4375rem;
  background: url(../fonts/a17817edd9aad419a520e1a8cb0b8caa.svg) no-repeat center bottom;
  -o-background-size: 100% auto;
     background-size: 100% auto;
}

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

.abt-cont1 .abt-a1v1 .abt_a1b1 {
  width: 44.14286%;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt_a1b1 {
    width: 100%;
  }
}

.abt-cont1 .abt-a1v1 .abt_a1b1 .cont-p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.7em "Noto Sans SC";
  margin-top: 2rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt_a1b1 .cont-p {
    margin-top: 1rem;
  }
}

.abt-cont1 .abt-a1v1 .abt_a1b1 .cont-p p {
  margin-top: 1em;
}

.abt-cont1 .abt-a1v1 .abt_a1b2 {
  width: 50%;
  position: relative;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt_a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.abt-cont1 .abt-a1v1 .abt_a1b2 .mySwiper11 {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.abt-cont1 .abt-a1v1 .abt_a1b2 .mySwiper11 .swiper-slide .img {
  display: block;
  font-size: 0;
}

.abt-cont1 .abt-a1v1 .abt_a1b2 .mySwiper11 .swiper-slide .img img {
  width: 100%;
}

.abt-cont1 .abt-a1v1 .abt_a1b2 .mySwiper11 .swiper-pagination1 {
  margin-top: 1rem;
  position: absolute;
  left: 0;
  bottom: 1rem;
  text-align: center;
  z-index: 1;
}

.abt-cont1 .abt-a1v1 .abt_a1b2 .mySwiper11 .swiper-pagination1 span {
  background: #fff;
}

.abt-cont1 .abt-a1v1 .abt_a1b2 .mySwiper11 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0453a2;
}

.abt-cont1 .ashr-as {
  margin-top: 2rem;
}

.abt-cont1 .ashr-as li {
  border-bottom: 1px solid #f0f0f0;
  width: 24%;
}

@media (max-width: 768px) {
  .abt-cont1 .ashr-as li {
    width: 49%;
  }
}

.abt-cont1 .ashr-as li .sz {
  color: #0453a2;
  font: 700 2.6rem/1em "Montserrat";
  width: 45%;
  padding: 1.5rem 0;
  position: relative;
  text-align: center;
}

@media (max-width: 768px) {
  .abt-cont1 .ashr-as li .sz {
    padding: 1.2rem 0;
    width: 35%;
  }
}

.abt-cont1 .ashr-as li .sz::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #0453a2;
}

@media (max-width: 768px) {
  .abt-cont1 .ashr-as li .sz {
    font-size: 1.4rem;
  }
}

.abt-cont1 .ashr-as li .sz b {
  font-size: 1rem;
  vertical-align: top;
  line-height: 1;
}

.abt-cont1 .ashr-as li p {
  padding: 1.5rem 0;
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.7em "Noto Sans SC";
  width: 50%;
}

@media (max-width: 768px) {
  .abt-cont1 .ashr-as li p {
    padding: 1rem 0;
    width: 60%;
  }
}

.abt-cont1 .ashr-as li:last-child .sz {
  font-size: 2.1rem;
}

@media (max-width: 768px) {
  .abt-cont1 .ashr-as li:last-child .sz {
    font-size: 1.2rem;
  }
}

.abt-cont2 {
  position: relative;
}

.abt-cont2 .abt-a2_b1 dl img {
  width: 100%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2_b1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .abt-cont2 .abt-a2_b1 dl {
    width: 100%;
    height: 100%;
  }
  .abt-cont2 .abt-a2_b1 dl img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.abt-cont2 .abt-a2_list1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 {
    position: static;
  }
}

.abt-cont2 .abt-a2_list1 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1%;
  text-align: center;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 li {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    padding: 3rem 4%;
  }
  .abt-cont2 .abt-a2_list1 li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
}

.abt-cont2 .abt-a2_list1 li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  background: -webkit-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -moz-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -o-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: linear-gradient(0deg, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  width: 100%;
  height: 100%;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.abt-cont2 .abt-a2_list1 li .cont-p {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.abt-cont2 .abt-a2_list1 li u {
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
}

.abt-cont2 .abt-a2_list1 li u img {
  width: 50%;
}

.abt-cont2 .abt-a2_list1 li .tit {
  color: #F4F4F4;
  font: 600 1.625rem/1.5em "Noto Sans SC";
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 li .tit {
    font-size: 1.45rem;
    margin-top: 1rem;
  }
}

.abt-cont2 .abt-a2_list1 li .txt {
  color: #F4F4F4;
  font: 400 1.25rem/1.5em "Noto Sans SC";
  margin-top: 1rem;
  height: 0;
  overflow: hidden;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2_list1 li .txt {
    font-size: 1.125rem;
  }
}

.abt-cont2 .abt-a2_list1 li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.abt-cont2 .abt-a2_list1 li:hover::before {
  bottom: 0;
}

.abt-cont2 .abt-a2_list1 li:hover u {
  background: #fff;
}

.abt-cont2 .abt-a2_list1 li:hover u img {
  -webkit-filter: invert(64%) sepia(98%) saturate(7495%) hue-rotate(191deg) brightness(97%) contrast(102%);
          filter: invert(64%) sepia(98%) saturate(7495%) hue-rotate(191deg) brightness(97%) contrast(102%);
}

.abt-cont2 .abt-a2_list1 li:hover .txt {
  height: auto;
}

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

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

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

@keyframes rotate-anim {
  0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.gong-jt .swiper-button-prev1, .gong-jt .swiper-button-next1 {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 3.375rem;
  height: 3.375rem;
  line-height: 3.375rem;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 768px) {
  .gong-jt .swiper-button-prev1, .gong-jt .swiper-button-next1 {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }
}

.gong-jt .swiper-button-prev1 i, .gong-jt .swiper-button-next1 i {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .gong-jt .swiper-button-prev1 i, .gong-jt .swiper-button-next1 i {
    font-size: 1rem;
  }
}

.gong-jt .swiper-button-prev1 {
  left: 0;
}

.gong-jt .swiper-button-next1 {
  right: 0;
}

.abt-cont3 {
  background: url(../images/bj1.png) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 6.5rem 0;
}

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

.abt-cont3 .abt-a3_v2 {
  margin: 6rem 0 3.5rem;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 {
    margin: 1.5rem 0;
  }
}

.abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li {
  display: none;
}

.abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .cont-p .tit {
  color: #0453a2;
  font: 700 10rem/1em "Montserrat";
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  width: 50%;
  text-align: right;
  padding-right: 0.5em;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .cont-p .tit {
    width: 100%;
    font-size: 3.6rem;
    line-height: 1.5em;
    border: none;
    text-align: left;
  }
}

.abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .cont-p .p {
  color: #000000;
  font: 400 1.5rem/1.5em "Noto Sans SC";
  width: 50%;
  padding: 0 2em;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .cont-p .p {
    width: 100%;
    font-size: 1.125rem;
    padding: 0;
  }
}

.abt-a3v1 {
  position: relative;
}

.abt-a3v1::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  height: 1px;
  background: #C1C2C4;
}

.abt-a3v1 .mySwiper1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 4%;
}

.abt-a3v1 .mySwiper1::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: url(../images/yyash.svg) center no-repeat;
  -o-background-size: 12.875rem;
     background-size: 12.875rem;
  width: 12.875rem;
  height: 12.875rem;
  fill: #FFF;
  -webkit-filter: drop-shadow(0px 0.125rem 0.25rem rgba(0, 117, 204, 0.06));
          filter: drop-shadow(0px 0.125rem 0.25rem rgba(0, 117, 204, 0.06));
}

@media (max-width: 768px) {
  .abt-a3v1 .mySwiper1::after {
    -o-background-size: 9.4rem;
       background-size: 9.4rem;
    width: 9.4rem;
    height: 9.4rem;
  }
}

.abt-a3v1 .mySwiper1 .swiper-slide {
  height: 12.875rem;
  position: relative;
}

@media (max-width: 768px) {
  .abt-a3v1 .mySwiper1 .swiper-slide {
    height: 9.4rem;
  }
}

.abt-a3v1 .mySwiper1 .swiper-slide::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 1px solid #C0C2C3;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.abt-a3v1 .mySwiper1 .swiper-slide .time {
  color: #000000;
  font: 500 1.625rem/1.5em "Montserrat";
  text-align: center;
  position: absolute;
  left: 0;
  top: 55%;
  width: 100%;
}

@media (max-width: 768px) {
  .abt-a3v1 .mySwiper1 .swiper-slide .time {
    font-size: 1.4rem;
    top: 60%;
  }
}

.abt-a3v1 .mySwiper1 .swiper-slide.swiper-slide-active::after {
  display: none;
}

.abt-a3v1 .mySwiper1 .swiper-slide.swiper-slide-active .time {
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #0453a2;
  font: 700 3.125rem/1.2em "Montserrat";
}

@media (max-width: 768px) {
  .abt-a3v1 .mySwiper1 .swiper-slide.swiper-slide-active .time {
    font-size: 2.25rem;
  }
}

.abt-a3v1 .mySwiper1 .arrow .swiper-button-prev1, .abt-a3v1 .mySwiper1 .arrow .swiper-button-next1 {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 3.375rem;
  height: 3.375rem;
  line-height: 3.375rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #C1C2C4;
  text-align: center;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 768px) {
  .abt-a3v1 .mySwiper1 .arrow .swiper-button-prev1, .abt-a3v1 .mySwiper1 .arrow .swiper-button-next1 {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }
}

.abt-a3v1 .mySwiper1 .arrow .swiper-button-prev1 i, .abt-a3v1 .mySwiper1 .arrow .swiper-button-next1 i {
  color: #C1C2C4;
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .abt-a3v1 .mySwiper1 .arrow .swiper-button-prev1 i, .abt-a3v1 .mySwiper1 .arrow .swiper-button-next1 i {
    font-size: 1rem;
  }
}

.abt-a3v1 .mySwiper1 .arrow .swiper-button-prev1 {
  left: 0;
}

.abt-a3v1 .mySwiper1 .arrow .swiper-button-next1 {
  right: 0;
}

.abt-cont4 {
  background: url(../images/bj4.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 14rem 0 10.9375rem;
  position: relative;
}

@media (max-width: 768px) {
  .abt-cont4 {
    padding: 2.25rem 0;
  }
}

.abt-cont4 u {
  display: block;
  width: 6.5rem;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .abt-cont4 u {
    display: none;
  }
}

.abt-cont4 u img {
  width: 100%;
}

.abt-cont4 .abt-a4b1 {
  width: 40.35714%;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b1 {
    width: 100%;
    margin-top: 0;
  }
}

.abt-cont4 .abt-a4b1 .p {
  color: #fff;
  font: 400 1.25rem/1.6em "Noto Sans SC";
  padding: 1.2rem 0 1.8rem;
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b1 .p {
    font-size: 1rem;
    padding: 0.85rem 0 1.25rem;
  }
}

.abt-cont4 .abt-a4b1 .p p {
  padding-left: 1em;
  position: relative;
}

.abt-cont4 .abt-a4b1 .p p::before {
  content: "Ã‚Â·";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.abt-cont4 .abt-a4b2 {
  width: 56.28571%;
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 {
    padding: 0 1%;
  }
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p {
  position: relative;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p i {
  display: block;
  font-size: 0;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p i img {
  width: 100%;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: 38%;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text h2 {
  font: 600 1.375rem/1.5em "Noto Sans SC";
  height: 3em;
  overflow: hidden;
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text h2 {
    font-size: 1rem;
  }
}

@media (max-width: 450px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text h2 {
    font-size: 1.25rem;
  }
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text p {
  font: 600 1rem/1.5em "Noto Sans SC";
  margin-top: 13%;
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text p {
    font-size: 0.85rem;
    margin-top: 22%;
  }
}

@media (max-width: 450px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text p {
    font-size: 1rem;
    margin-top: 18%;
  }
}

.abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text b {
  font: 600 2.5rem/1.5em "Montserrat";
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 .swiper-slide .cont-p .text b {
    font-size: 1.25rem;
  }
}

.abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-prev1, .abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-next1 {
  position: static;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  margin-top: 1.5625rem;
}

@media (max-width: 768px) {
  .abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-prev1, .abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-next1 {
    margin-top: 1rem;
  }
}

.abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-prev1:hover, .abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-next1:hover {
  background: #fff;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-prev1:hover i, .abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-next1:hover i {
  color: #0453a2;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-next1 {
  margin-left: 1rem;
}

.abt-cont5 {
  background: url(../images/2ed00de2bbc22a83adacc9dd1372556e.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.6875rem 0 21.125rem;
}

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

.abt-cont5 .abt-a5b1 {
  width: 40.35714%;
}

@media (max-width: 768px) {
  .abt-cont5 .abt-a5b1 {
    width: 100%;
  }
}

.abt-cont5 .abt-a5b1 .p {
  color: #fff;
  font: 400 1.25rem/1.6em "Noto Sans SC";
  padding: 1.2rem 0 1.8rem;
}

@media (max-width: 768px) {
  .abt-cont5 .abt-a5b1 .p {
    font-size: 1rem;
  }
}

.jjfa-cont {
  position: relative;
  overflow: hidden
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li u {
  display: block;
  font-size: 0;
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li u img {
  width: 100%;
    max-height: 100vh;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont1 .jjfa-a1list1 li u {
    padding-bottom: 80vh;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .jjfa-cont .jjfa-cont1 .jjfa-a1list1 li u > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p {
  width: 43rem;
  height: 43rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  top: 45%;
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p {
    width: 90vw;
    height: 90vw;
  }
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont {
  color: #fff;
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont > i {
  display: block;
  width: 5.625rem;
  font-size: 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont > i {
    width: 4rem;
  }
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont > i img {
  width: 100%;
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont .tit {
  text-align: center;
  font: 600 3rem/1.5em "Noto Sans SC";
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont .tit {
    font-size: 2rem;
  }
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont .p {
  font: 400 1rem/1.8em "Noto Sans SC";
  padding: 0.5rem 12% 2rem;
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont .p {
    padding: 0.2rem 5% 1rem;
    line-height: 1.6em;
  }
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont a.more-b {
  color: #0453a2;
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont a.more-b i {
  color: #0453a2;
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont a.more-b:hover {
  border-color: #0453a2;
}

.jjfa-cont .jjfa-cont1 .jjfa-a1list1 li .cont-p .cont a.more-b:hover i {
  color: #fff;
}

.jjfa-cont .jjfa-cont2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  text-align: center;
  padding: 2.5rem 0;
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont2 .jjfa-a2list2 li {
    width: -webkit-calc(100%/3);
    width: -moz-calc(100%/3);
    width: calc(100%/3);
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont2 .jjfa-a2list2 li {
    padding: 1.5rem 0;
  }
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li .cont-p {
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 9;
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li .cont-p > i {
  display: block;
  width: 4.375rem;
  font-size: 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont2 .jjfa-a2list2 li .cont-p > i {
    width: 2.5rem;
  }
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li .cont-p > i img {
  width: 100%;
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li .cont-p .tit {
  text-align: center;
  font: 600 1.5rem/1.5em "Noto Sans SC";
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .jjfa-cont .jjfa-cont2 .jjfa-a2list2 li .cont-p .tit {
    font-size: 1rem;
  }
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  background: -webkit-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -moz-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -o-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: linear-gradient(0deg, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  width: 100%;
  height: 100%;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.jjfa-cont .jjfa-cont2 .jjfa-a2list2 li:hover::before, .jjfa-cont .jjfa-cont2 .jjfa-a2list2 li.on::before {
  bottom: 0;
}

.jjfa-banner .nbanner-wen1 .banner-cont > i {
  display: block;
  width: 5.625rem;
  font-size: 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .jjfa-banner .nbanner-wen1 .banner-cont > i {
    width: 4rem;
  }
}

.jjfa-banner .nbanner-wen1 .banner-cont > i img {
  width: 100%;
 
}

.jjfa-banner .nbanner-wen1 .banner-cont .p1 {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .jjfa-banner .nbanner-wen1 .banner-cont .p1 {
    font-size: 1.8rem;
  }
}

.jjfa-banner .mbxdh {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.jjfa-banner .mbxdh .ajhhsd {
  color: #fff;
}

.jjfa-banner .mbxdh .ajhhsd a {
  color: #fff;
}

.jjfa-banner .mbxdh .ajhhsd a:hover {
  color: #0453a2;
}

.gong-txt {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1.125rem/1.6em "Noto Sans SC";
}

@media (max-width: 768px) {
  .gong-txt {
    font-size: 1rem;
  }
}

.jjfa-cont3 {
  padding: 8.4375rem 0 10.625rem;
}

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

.jjfa-cont3 .jjfa-a3b1 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .jjfa-cont3 .jjfa-a3b1 {
    margin-top: 1rem;
  }
}

.jjfa-cont3 .jjfa-a3b2 {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .jjfa-cont3 .jjfa-a3b2 {
    margin-top: 1rem;
  }
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 {
  width: 20.71429%;
}

@media (max-width: 768px) {
  .jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 {
    width: 100%;
  }
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 .tit p {
  color: rgba(0, 0, 0, 0.8);
  font: 600 1.125rem/1.6em "Noto Sans SC";
  padding-left: 1em;
  position: relative;
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 .tit p::before {
  content: "Ã‚Â·";
  position: absolute;
  left: 0;
  top: 0;
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 .txt {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 .txt {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 .txt b {
  color: rgba(0, 0, 0, 0.8);
  font: 600 1.125rem/1.6em "Noto Sans SC";
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c1 .txt .p {
  color: #797979;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  margin-top: 0.34rem;
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c2 {
  width: 29.5%;
}

@media (max-width: 768px) {
  .jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c2 {
    width: 38%;
  }
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c2 img {
  width: 100%;
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c3 {
  width: 43.85714%;
}

@media (max-width: 768px) {
  .jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c3 {
    width: 57%;
  }
}

.jjfa-cont3 .jjfa-a3b2 .jjfa-a3b2c3 img {
  width: 100%;
}

@-webkit-keyframes scale-anim {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes scale-anim {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes scale-anim {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes scale-anim {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.jjfa-cont4 {
  position: relative;
}

.jjfa-cont4 .heng1 {
  width: 100%;
  font-size: 0;
}

.jjfa-cont4 .heng1 img {
  width: 100%;
}

.jjfa-cont4 .jjfa-a4_v1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.jjfa-cont4 .jjfa-a4_v1 .wh {
  width: 100%;
  height: 100%;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 {
  position: relative;
  width: 100%;
  height: 100%;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa {
  background: transparent;
  border-radius: 50%;
  width: 16.25rem;
  height: 16.25rem;
  border: .1875rem solid #00FFFF;
  text-align: center;
  position: relative;
  display: none;
  position: absolute;
  left: -218%;
  bottom: 295%;
}

@media (max-width: 768px) {
  .jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa {
    display: none !important;
  }
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -51%;
  width: .1875rem;
  height: 8rem;
  background: #00FFFF;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa > div {
  width: 100%;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa i {
  display: block;
  width: 70%;
  font-size: 0;
  margin: 0 auto;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa i img {
  width: 100%;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa p {
  text-align: center;
  color: #FFFFFF;
  font: 600 1.125rem/1.5em "Noto Sans SC";
  margin-top: 1rem;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .wehxzxa.on {
  display: block;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .din {
  display: block;
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .din b {
  display: block;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  left: auto;
  right: 1.25rem;
  top: 50%;
  bottom: auto;
  margin-top: -0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  -moz-animation: scale-anim 2s infinite linear;
  -o-animation: scale-anim 2s infinite linear;
  animation: scale-anim 2s infinite linear;
  -webkit-animation: scale-anim 2s infinite linear;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .din b:nth-child(2) {
  -webkit-animation-delay: -1s;
     -moz-animation-delay: -1s;
       -o-animation-delay: -1s;
          animation-delay: -1s;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li .din:hover b {
  background: #00FFFF;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li:nth-child(1) {
  position: absolute;
  left: 27%;
  bottom: 39%;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li:nth-child(2) {
  position: absolute;
  left: 32%;
  bottom: 37%;
}

.jjfa-cont4 .jjfa-a4_v1 .jjfa-a4_list1 li:nth-child(3) {
  position: absolute;
  left: 60%;
  bottom: 45%;
}

.jjfa-cont5 {
  padding: 5.625rem 0 4.125rem;
}

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

.jjfa-cont5 .jjfa-a5_v1 {
  margin-top: 3.5rem;
  position: relative;
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div{
  position: absolute;
  top: 45%;
  background: #000;
  width: 3.125rem;
  height: 3.125rem;
  transform: translateY(-50%); 
  border-radius: 50%;
  z-index: 1;
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div:hover{
  background: #0453a2;
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div.swiper-button-prev1 {
  left: -4.5rem;
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div.swiper-button-next1 {
  right: -4.5rem;
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div i{
  color: #fff;
  font: 500 1rem/1em "Noto Sans SC";
}
@media (max-width: 768px) {
  .jjfa-cont5 .jjfa-a5_v1 .gongt-jta{
    display: none;
  }
  .jjfa-cont5 .jjfa-a5_v1 {
    margin-top: 1.5rem;
  }
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 {
  position: relative;
  padding: 0 1px;
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa {
  display: block;
  background: #F8F8F8;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem;
}

@media (max-width: 768px) {
  .jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa {
    font-size: 1rem;
  }
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa i {
  display: block;
  font-size: 0;
  overflow: hidden;
  padding: 2rem;
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa i img {
  width: 100%;
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa .tit {
  color: #000000;
  font: 400 1rem/1.5em "Noto Sans SC";
  padding: 0.5rem 0 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa .tit {
    padding: 0.25rem 0 1rem;
  }
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa:hover .tit {
  color: #0453a2;
}

.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 .swiper-pagination2 span {
  margin: 0 0.4rem;
}

.swiper-pagination1, .swiper-pagination2 {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .swiper-pagination1, .swiper-pagination2 {
    margin-top: 1.5rem;
  }
}

.swiper-pagination1 span, .swiper-pagination2 span {
  background: rgba(5, 5, 5, 0.5);
  width: .875rem;
  height: .875rem;
  border-radius: 50%;
  margin: 0 0.4rem !important;
  opacity: 1;
}

.swiper-pagination1 span.swiper-pagination-bullet-active, .swiper-pagination2 span.swiper-pagination-bullet-active {
  background: #0453a2;
}

.jjfa-cont6 {
  background: url(../images/9f401ce1cf5a4a242e7d4b2fe4700dee.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 6.6875rem 0 5.25rem;
}

@media (max-width: 768px) {
  .jjfa-cont6 {
    padding: 2.2rem 0;
  }
}

.jjfa-cont6 .jjfa-a6_v1 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 {
    margin-top: 1rem;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p {
    border-radius: 1rem;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .img1 {
  width: 50%;
  font-size: 0;
  padding-bottom: 35.71429%;
  position: relative;
  height: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .img1 {
    width: 100%;
    padding-bottom: 65%;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .img1 > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .img1 img {
  width: 100%;
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont {
  padding: 0 5%;
  width: 50%;
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont {
    width: 100%;
    padding: 1.5rem 5%;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .flex_left u {
  width: 3.75rem;
  display: block;
  font-size: 0;
  margin-right: 0.8rem;
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .flex_left u {
    width: 2.25rem;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .flex_left u img {
  width: 100%;
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .flex_left .tit {
  color: #000000;
  font: 600 1.75rem/1.5em "Noto Sans SC";
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .flex_left .tit {
    font-size: 1.25rem;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.875rem "Noto Sans SC";
  margin: 1rem 0 1.5rem;
}

@media (max-width: 768px) {
  .jjfa-cont6 .jjfa-a6_v1 .mySwiper6 .swiper-slide .cont-p .tx-cont .p {
    margin: 0.5rem 0 1rem;
  }
}

.jjfa-cont6 .jjfa-a6_v1 .swiper-pagination1 span {
  background: rgba(255, 255, 255, 0.5);
}

.jjfa-cont6 .jjfa-a6_v1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #0453a2;
}

.job-cont1 {
  background: #F8F8F8;
  padding: 6.25rem 0 4.6875rem;
}

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

.job-a1_list1 li {
  margin-top: 3.125rem;
}

@media (max-width: 768px) {
  .job-a1_list1 li {
    margin-top: 1.5rem;
  }
}

.job-a1_list1 li .img1 {
  width: 58.71429%;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .job-a1_list1 li .img1 {
    border-radius: 1rem;
    width: 100%;
  }
}

.job-a1_list1 li .img1 img {
  width: 100%;
}

.job-a1_list1 li .cont-p {
  width: 36%;
}

@media (max-width: 768px) {
  .job-a1_list1 li .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}

.job-a1_list1 li .cont-p .tit {
  color: #383838;
  font: 600 1.5rem/1.4em "Noto Sans SC";
}

@media (max-width: 768px) {
  .job-a1_list1 li .cont-p .tit {
    font-size: 1.25rem;
  }
}

.job-a1_list1 li .cont-p .txt {
  color: #6A6A6A;
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .job-a1_list1 li .cont-p .txt {
    margin-top: 0.5rem;
  }
}

.job-a1_list1 li:nth-child(2n) .img1 {
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (max-width: 768px) {
  .job-a1_list1 li:nth-child(2n) .img1 {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.job-cont2 {
  padding: 7.125rem 0 6.5625rem;
  position: relative;
}

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

.job-cont2 u {
  display: block;
  width: 59.79167%;
  position: absolute;
  right: 0;
  top: 4rem;
  z-index: -1;
}

@media (max-width: 768px) {
  .job-cont2 u {
    top: 2rem;
  }
}

.job-cont2 u img {
  width: 100%;
}

.job-cont2 .job-a2v1 {
  position: relative;
  margin-top: 3.25rem;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2v1 {
    margin-top: 1.25rem;
  }
}

.job-cont2 .job-a2v1 .mySwiper7 {
  position: relative;
  padding: 0 23.85417%;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2v1 .mySwiper7 {
    padding: 0;
    margin: 0 4%;
  }
}

.job-cont2 .job-a2v1 .mySwiper7 .swiper-slide .img {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}

.job-cont2 .job-a2v1 .mySwiper7 .swiper-slide .img img {
  width: 100%;
}

.job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div {
  border: 1px solid rgba(1, 1, 1, 0.3);
  background: #fff;
}

.job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div.swiper-button-prev1 {
  left: 20.5%;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div.swiper-button-prev1 {
    left: 2%;
  }
}

.job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div.swiper-button-next1 {
  right: 20.5%;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div.swiper-button-next1 {
    right: 2%;
  }
}

.job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div i {
  color: #010101;
}

.job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div:hover {
  background: #0453a2;
  border-color: #0453a2;
}

.job-cont2 .job-a2v1 .mySwiper7 .gong-jt > div:hover i {
  color: #fff;
}

.job-cont2 .job-a2v1b2 {
  background: #F8F8F8;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  width: 17.25rem;
  padding: 1.5rem;
  position: absolute;
  left: 21.5%;
  bottom: 1rem;
  z-index: 1;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2v1b2 {
    position: static;
    width: 92%;
    margin: 0 auto;
    border-radius: 1rem;
  }
}

.job-cont2 .job-a2v1b2 .swiper-paginationt {
  color: #050505;
  font: 600 1.25rem/1.5em "Montserrat";
}

.job-cont2 .job-a2v1b2 .swiper-paginationt .swiper-pagination-current {
  color: #0453a2;
}

.job-cont2 .job-a2v1b2 .ash-a {
  margin-top: 0.5rem;
}

.job-cont2 .job-a2v1b2 .ash-a li {
  color: #000000;
  font: 400 1.25rem/1.5em "Noto Sans SC";
}

.job-cont3 {
  background: #F8F8F8;
  padding: 6.625rem 0 10.4375rem;
}

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

.job-cont3 .job-a3_list1 {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 {
    margin-top: 1.5rem;
  }
}

.job-cont3 .job-a3_list1 li {
  width: 10%;
  -webkit-transition: width 0.5s;
  -o-transition: width 0.5s;
  -moz-transition: width 0.5s;
  transition: width 0.5s;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li {
    width: 100%;
    border-radius: 1rem;
  }
  .job-cont3 .job-a3_list1 li + li {
    margin-top: 1rem;
  }
}

.job-cont3 .job-a3_list1 li a.img {
  display: block;
  position: relative;
  z-index: 1;
}

.job-cont3 .job-a3_list1 li a.img i {
  display: block;
  font-size: 0;
}

.job-cont3 .job-a3_list1 li a.img i img {
  width: 100%;
  height: 32rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li a.img i img {
    height: 20rem;
  }
}

.job-cont3 .job-a3_list1 li a.img i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.job-cont3 .job-a3_list1 li a.img i:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  background: -webkit-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -moz-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: -o-linear-gradient(bottom, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  background: linear-gradient(0deg, #0453a2 -20%, rgba(44, 44, 44, 0) 80%);
  width: 100%;
  height: 100%;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.job-cont3 .job-a3_list1 li a.img .wenata1 {
  display: none;
  position: absolute;
  left: 0;
  bottom: 5%;
  z-index: 1;
  color: #fff;
  width: 100%;
  padding: 0 5%;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li a.img .wenata1 {
    display: block;
  }
}

.job-cont3 .job-a3_list1 li a.img .wenata1 h2 {
  font: 700 1.25rem/1.5em "Noto Sans SC";
}

.job-cont3 .job-a3_list1 li a.img .wenata1 .p {
  font: 400 1rem/1.5em "Noto Sans SC";
}

.job-cont3 .job-a3_list1 li a.img .wenata2 {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 1;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li a.img .wenata2 {
    display: none;
  }
}

.job-cont3 .job-a3_list1 li a.img .wenata2 h2 {
  font: 700 1.25rem/1.5em "Noto Sans SC";
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  width: 1.5em;
  margin: 0 auto;
}

.job-cont3 .job-a3_list1 li a.img .wenata2 .xian {
  width: 1px;
  margin: 1rem auto 1.5rem;
  height: 10rem;
  background: #fff;
  opacity: 0.5;
}

.job-cont3 .job-a3_list1 li a.img .wenata2 b {
  color: transparent;
  text-shadow: none;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: white;
  font-size: 5.625rem;
  text-transform: uppercase;
  display: block;
  line-height: 1em;
  font-weight: 600;
  opacity: 0.3;
  font-family: 'Noto Sans SC';
}

.job-cont3 .job-a3_list1 li.active {
  width: 54.28571%;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li.active {
    width: 100%;
  }
}

.job-cont3 .job-a3_list1 li.active a.img i::after {
  display: none;
}

.job-cont3 .job-a3_list1 li.active a.img i:before {
  bottom: 0;
}

.job-cont3 .job-a3_list1 li.active a.img .wenata1 {
  display: block;
}

.job-cont3 .job-a3_list1 li.active a.img .wenata2 {
  display: none;
}

.job-cont4 {
  background: url(../images/7b37031c53efea23e2977c475bf60f12.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 13.3125rem 0 13.1875rem;
  border-bottom: 1px solid rgba(156, 156, 156, 0.2);
}

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

.job-cont4 .job-a4v1 {
  padding-left: 13.54167%;
}

@media (max-width: 1366px) {
  .job-cont4 .job-a4v1 {
    padding-left: 5.78%;
  }
}

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

.job-cont4 .job-a4v1 .job-a4b1 {
  width: 23.95833%;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b1 {
    width: 100%;
  }
}

.job-cont4 .job-a4v1 .job-a4b1 .cont-p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1.25rem/1.5em "Noto Sans SC";
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b1 .cont-p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.job-cont4 .job-a4v1 .job-a4b1 .gong-jt > div {
  border-color: rgba(1, 1, 1, 0.3);
  position: static;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b1 .gong-jt > div {
    margin-top: 1rem;
  }
}

.job-cont4 .job-a4v1 .job-a4b1 .gong-jt > div.swiper-button-next1 {
  margin-left: 1.5rem;
}

.job-cont4 .job-a4v1 .job-a4b1 .gong-jt > div i {
  color: #010101;
}

.job-cont4 .job-a4v1 .job-a4b2 {
  width: 70.3125%;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b2 {
    width: 100%;
    margin-top: 1rem;
  }
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 {
  padding-right: 20%;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 {
    padding: 0;
  }
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p {
    border-radius: 1rem;
  }
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p .img {
  display: block;
  position: relative;
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p .img img {
  width: 100%;
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p .cont {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 100%;
  padding: 0 4%;
  color: #fff;
}

@media (max-width: 768px) {
  .job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p .cont {
    bottom: 1.25rem;
  }
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p .cont .tit {
  font: 600 1.25rem/1.5em "Noto Sans SC";
}

.job-cont4 .job-a4v1 .job-a4b2 .mySwiper8 .swiper-slide .cont-p .cont .txt {
  font: 400 1rem/1.5em "Noto Sans SC";
}

.job-cont5 {
  padding: 5.3125rem 0 3.125rem;
}

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

@media (max-width: 768px) {
  .job-cont5 .job-a5v1 form {
    width: 100%;
    margin: 1rem auto 0;
  }
}

.job-cont5 .job-a5v1 form .sskz input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #666;
  padding: 0 0.8em;
  font: 400 1rem/3.125rem "Noto Sans SC";
  width: 25rem;
}

@media (max-width: 768px) {
  .job-cont5 .job-a5v1 form .sskz input {
    width: -webkit-calc(100% - 7.5rem);
    width: -moz-calc(100% - 7.5rem);
    width: calc(100% - 7.5rem);
  }
}

.job-cont5 .job-a5v1 form .sskz input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgba(0, 0, 0, 0.2);
}

.job-cont5 .job-a5v1 form .sskz input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(0, 0, 0, 0.2);
}

.job-cont5 .job-a5v1 form .sskz input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.2);
}

.job-cont5 .job-a5v1 form .sskz button {
  background: #0453a2;
  border: 1px solid #0453a2;
  color: #fff;
  padding: 0 1.8rem;
}

@media (max-width: 768px) {
  .job-cont5 .job-a5v1 form .sskz button {
    padding: 0;
    width: 7.5rem;
  }
}

.job-cont5 .job-a5v1 form .sskz button i {
  font: 500 1.25rem/3.125rem "Noto Sans SC";
  margin-right: 0.3rem;
}

.job-cont5 .job-a5v1 form .sskz button p {
  font: 600 1rem/3.125rem "Noto Sans SC";
}

.job-cont5 .job-a5v2 {
  margin-top: 3.2rem;
}

@media (max-width: 768px) {
  .job-cont5 .job-a5v2 {
    margin-top: 1.5rem;
  }
}

.job-cont5 .job-a5v2 .agge_a {
  border-top: 1px dashed #dddddd;
}

.job-cont5 .job-a5v2 .agge_a li {
  padding: 1rem 0;
  border-bottom: 1px dashed #dddddd;
}

.job-cont5 .job-a5v2 .agge_a li dt {
  width: 8.75rem;
  color: rgba(0, 0, 0, 0.4);
  font: 600 1.125rem/1.6em "Noto Sans SC";
}

.job-cont5 .job-a5v2 .agge_a li .weggaa {
  width: -webkit-calc(98% - 8.75rem);
  width: -moz-calc(98% - 8.75rem);
  width: calc(98% - 8.75rem);
}

@media (max-width: 768px) {
  .job-cont5 .job-a5v2 .agge_a li .weggaa {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .job-cont5 .job-a5v2 .agge_a li .weggaa .wheh_a {
    width: 100%;
  }
}

.job-cont5 .job-a5v2 .agge_a li .weggaa .wheh_a a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.6em "Noto Sans SC";
  width: 9rem;
}

@media (max-width: 768px) {
  .job-cont5 .job-a5v2 .agge_a li .weggaa .wheh_a a {
    width: 32%;
  }
}

.job-cont5 .job-a5v2 .agge_a li .weggaa .wheh_a a:hover, .job-cont5 .job-a5v2 .agge_a li .weggaa .wheh_a a.active {
  color: #0453a2;
}

.job-cont6 {
  background: #F8F8F8;
  overflow: hidden;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  .job-cont6 {
    padding-top: 1rem;
  }
}

.job-list1 {
  margin: 0 -1%;
}

.job-list1 li {
  width: -webkit-calc(100%/3);
  width: -moz-calc(100%/3);
  width: calc(100%/3);
  padding: 0 1%;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .job-list1 li {
    width: 50%;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .job-list1 li {
    width: 100%;
  }
}

.job-list1 li .job-contas {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 1.85rem 2rem 3.75rem;
  box-shadow: 0px 0.25rem 0.625rem 0px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  position: relative;
}

@media (max-width: 768px) {
  .job-list1 li .job-contas {
    padding: 1.5rem 1.5rem 2.5rem;
  }
}

.job-list1 li .job-contas::after {
  content: "";
  display: block;
  width: 17.375rem;
  height: 17.375rem;
  background: url(../images/c1b754bb128a2dd3d01bf00c7083bd1a.svg) no-repeat top left;
  -o-background-size: cover;
     background-size: cover;
  position: absolute;
  right: -20%;
  bottom: -35%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 0;
  -webkit-transform: scale(0);
     -moz-transform: scale(0);
      -ms-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
}

@media (max-width: 768px) {
  .job-list1 li .job-contas::after {
    width: 15rem;
    height: 15rem;
  }
}

.job-list1 li .job-contas .cont-p {
  position: relative;
  z-index: 1;
}

.job-list1 li .job-contas .cont-p .h2a {
  color: #000000;
  font: 400 1.25rem/1.5em "Noto Sans SC";
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 1rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.job-list1 li .job-contas .cont-p .h2a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2em;
  height: 2px;
  background-color: #0453a2;
}

.job-list1 li .job-contas .txtr .p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 0.4rem;
}

.job-list1 li .job-contas .txtr .p p {
  margin-top: 0.8rem;
}

.job-list1 li .job-contas .txtr a.sdt {
  background: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  opacity: 0;
  margin-bottom: -1.5rem;
}

.job-list1 li .job-contas .txtr a.sdt i {
  color: #0453a2;
  font: 600 1rem/1em "Noto Sans SC";
}

.job-list1 li:hover .job-contas {
  background-color: #0453a2;
}

.job-list1 li:hover .job-contas::after {
  opacity: 1;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.job-list1 li:hover .job-contas .cont-p .h2a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.job-list1 li:hover .job-contas .cont-p .h2a::after {
  display: none;
}

.job-list1 li:hover .job-contas .cont-p .txtr .p {
  color: #fff;
}

.job-list1 li:hover .job-contas .cont-p .txtr a.sdt {
  opacity: 1;
}

.job-tanc.layui-layer {
  width: 62.5% !important;
  padding: 1.75rem 3% 2.125rem;
  max-height: 75vh;
  background: #fff;
  overflow-y: auto;
  border-radius: 1.875rem;
}

@media (max-width: 768px) {
  .job-tanc.layui-layer {
    width: 86% !important;
    padding: 1.2rem 3.5%;
    border-radius: 1rem;
  }
}

.job-tanc.layui-layer .conteenrta .tit {
  color: #0453a2;
  font: 600 2.25rem/1.5em "Noto Sans SC";
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

@media (max-width: 768px) {
  .job-tanc.layui-layer .conteenrta .tit {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}

.job-tanc.layui-layer .conteenrta .content .ashtd li {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .job-tanc.layui-layer .conteenrta .content .ashtd li {
    margin-top: 1rem;
  }
}

.job-tanc.layui-layer .conteenrta .content .ashtd li .titasd1 {
  color: #0453a2;
  font: 600 1.25rem/1.5em "Noto Sans SC";
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .job-tanc.layui-layer .conteenrta .content .ashtd li .titasd1 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
}

.job-tanc.layui-layer .conteenrta .content .ashtd li .as-ast dl {
  width: 48%;
  color: rgba(0, 0, 0, 0.7);
  font: 400 1.125rem/1.6em "Noto Sans SC";
}

@media (max-width: 768px) {
  .job-tanc.layui-layer .conteenrta .content .ashtd li .as-ast dl {
    font-size: 1rem;
  }
}

.job-tanc.layui-layer .conteenrta .content .ashtd li .as-ast dl b {
  font-weight: 600;
}

.job-tanc.layui-layer .conteenrta .content .ashtd li .p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1.125rem/1.6em "Noto Sans SC";
}

.job-tanc.layui-layer .conteenrta .h3a {
  color: #0453a2;
  font: 600 1.5rem/1.5em "Noto Sans SC";
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .job-tanc.layui-layer .conteenrta .h3a {
    font-size: 1.125rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

.job-tanc.layui-layer .conteenrta .h3a a {
  color: #0453a2;
}

.job-tanc.layui-layer .layui-layer-setwin .layui-layer-close2 {
  right: 1.75rem;
  top: 1.5rem;
  background: url(../fonts/f1fcefb8dd7f28a79f4e6760eb0ed6a7.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  width: 2.3rem;
  height: 2.3rem;
}

@media (max-width: 768px) {
  .job-tanc.layui-layer .layui-layer-setwin .layui-layer-close2 {
    right: 0;
    top: 0;
  }
}

.job-cont7 {
  padding: 6.5625rem 0;
}

@media (max-width: 768px) {
  .job-cont7 {
    padding: 2.25rem 0;
  }
}

.job-cont7 .job-a7_b1 {
  width: 40.28571%;
}

@media (max-width: 768px) {
  .job-cont7 .job-a7_b1 {
    width: 100%;
  }
}

.job-cont7 .job-a7_b1 .p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.8em "Noto Sans SC";
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .job-cont7 .job-a7_b1 .p {
    margin-top: 0.5rem;
  }
}

.job-cont7 .job-a7_b2 {
  width: 57.14286%;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .job-cont7 .job-a7_b2 {
    width: 100%;
    border-radius: 1rem;
    margin-top: 1rem;
  }
}

.job-cont7 .job-a7_b2 img {
  width: 100%;
}

.job-cont8 {
  background: #0453a2;
  padding: 2.625rem 0;
}

@media (max-width: 768px) {
  .job-cont8 {
    padding: 1.5rem 0;
  }
}

.job-cont8 .job-a8v1 {
  position: relative;
}

.job-cont8 .job-a8v1::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 31%;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
}

@media (max-width: 768px) {
  .job-cont8 .job-a8v1::after {
    display: none;
  }
}

.job-cont8 .job-a8v1 li {
  width: -webkit-calc(100%/6);
  width: -moz-calc(100%/6);
  width: calc(100%/6);
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .job-cont8 .job-a8v1 li {
    width: -webkit-calc(100%/3);
    width: -moz-calc(100%/3);
    width: calc(100%/3);
    margin: 0.5rem 0;
  }
}

.job-cont8 .job-a8v1 li a.a i {
  width: 5.625rem;
  height: 5.625rem;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .job-cont8 .job-a8v1 li a.a i {
    width: 5rem;
    height: 5rem;
  }
}

.job-cont8 .job-a8v1 li a.a i img {
  width: 50%;
}

.job-cont8 .job-a8v1 li a.a .wenata {
  text-align: center;
  font: 400 1rem/1.5em "Noto Sans SC";
  color: #fff;
  margin-top: 0.85rem;
}

.job-cont8 .job-a8v1 li a.a .wenata .p {
  font-weight: 600;
}

.job-cont9 {
  background: #F8F8F8;
  overflow: hidden;
  padding-top: 6.5rem;
}

@media (max-width: 768px) {
  .job-cont9 {
    padding-top: 2rem;
  }
}

.news-cont1 {
  background: url(../images/bj4.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 5rem 0 5rem;
}

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

.news-cont1 .zxzx-cont {
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .news-cont1 .zxzx-cont {
    margin-top: 1.5rem;
  }
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p {
  border-radius: .625rem;
  background: #FFF;
  box-shadow: 0px 0.15rem 0.8rem 0px rgba(0, 117, 204, 0.2);
  padding: 1.625rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  border: 1px solid #fff;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .xw-as1 .data {
  width: 6.25rem;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .xw-as1 .data b {
  display: block;
  color: #0453a2;
  font-family: Montserrat;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .xw-as1 .data p {
  color: rgba(8, 8, 8, 0.5);
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .xw-as1 a.name {
  width: -webkit-calc(100% - 6.375rem);
  width: -moz-calc(100% - 6.375rem);
  width: calc(100% - 6.375rem);
  color: rgba(0, 0, 0, 0.8);
  font: 600 1.125rem/1.4em "Noto Sans SC";
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .xw-as2 {
  color: rgba(0, 0, 0, 0.6);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin: 1rem 0;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .img a {
  display: block;
  font-size: 0;
  overflow: hidden;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p .img a img {
  width: 100%;
  height: 200px;
      object-fit: contain;
      object-position: center center;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p:hover, .news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p.on {
  background: #0453a2;
  border: 1px solid #fff;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p:hover .xw-as1 .data b, .news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p:hover .xw-as1 .data p, .news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p.on .xw-as1 .data b, .news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p.on .xw-as1 .data p {
  color: #fff;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p:hover .xw-as1 a.name, .news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p.on .xw-as1 a.name {
  color: #fff;
}

.news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p:hover .xw-as2, .news-cont1 .zxzx-cont .mySwiper9 .swiper-slide .cont-p.on .xw-as2 {
  color: #fff;
}

.news-cont2 {
  background: #F8F8F8;
  overflow: hidden;
  padding-top: 3.6875rem;
}

@media (max-width: 768px) {
  .news-cont2 {
    padding-top: 1rem;
  }
}

.news-cont2 .news-list li {
  border: 1px solid #E7E7E7;
  background: #FFFFFF;
  border-radius: .625rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li {
    margin-top: 1rem;
  }
}

.news-cont2 .news-list li .cont-p {
  padding: 2rem 3%;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p {
    padding: 1rem;
  }
}

.news-cont2 .news-list li .cont-p .data {
  width: 6.07143%;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p .data {
    display: none;
  }
}

.news-cont2 .news-list li .cont-p .data span {
  display: block;
  color: #0453a2;
  font: 600 2.25rem/1.4em "Montserrat";
}

.news-cont2 .news-list li .cont-p .data p {
  color: rgba(8, 8, 8, 0.5);
  font: 600 1rem/1.3em "Montserrat";
}

.news-cont2 .news-list li .cont-p .img {
  width: 27.14286%;
  /* padding-bottom: 16.28571%; */
  position: relative;
  /* height: 0; */
  overflow: hidden;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p .img {
    width: 100%;
    /* padding-bottom: 60%; */
  }
}

.news-cont2 .news-list li .cont-p .img > img {
	width: auto;
	max-width:60%;
	display:block;
	margin:0 auto;
  /* position: absolute; */
  /* left: 0; */
  /* top: 0; */
  /* height: 100%; */
  -o-object-fit: cover;
  object-fit: cover;
}

/* .news-cont2 .news-list li .cont-p .img img {
  width: 100%;
} */

.news-cont2 .news-list li .cont-p .cont {
  width: 60%;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p .cont {
    width: 100%;
    margin-top: 1rem;
  }
}

.news-cont2 .news-list li .cont-p .cont h2 a {
  display: block;
  font: 600 1.125rem/1.5em "Noto Sans SC";
}

.news-cont2 .news-list li .cont-p .cont h2 a:hover {
  color: #0453a2;
}

.news-cont2 .news-list li .cont-p .cont .p {
  color: rgba(0, 0, 0, 0.6);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p .cont .p {
    margin-top: 0.5rem;
  }
}

.news-cont2 .news-list li .cont-p .cont a.ba {
  font-size: 1rem;
  line-height: 1.5em;
  color: #999;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .news-cont2 .news-list li .cont-p .cont a.ba {
    margin-top: 1rem;
  }
}

.news-cont2 .news-list li .cont-p .cont a.ba i {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}

.news-cont2 .news-list li .cont-p .cont a.ba:hover {
  color: #0453a2;
}

.news-cont2 .news-list li .cont-p .cont a.ba:hover i {
  color: #0453a2;
}

.cp-banner .mbxdh {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.cp-banner .mbxdh .ajhhsd {
  color: #fff;
}

.cp-banner .mbxdh .ajhhsd a {
  color: #fff;
}

.cp-banner .mbxdh .ajhhsd a:hover {
  color: #0453a2;
}

.product-content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-content .product-cont1 {
  width: 20.83333%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background: #EDF7FF;
}

@media (max-width: 768px) {
  .product-content .product-cont1 {
    display: none;
  }
}

.product-content .product-cont1 .sd-nasd {
  position: sticky;
  left: 0;
  top: 8rem;
  padding: 0 10%;
  margin-top: 3rem;
}

.product-content .product-cont1 .sd-nasd .n_src1 {
  /* border-left: 1px solid rgba(0, 0, 0, 0.1); */
  padding: 0.7rem 0;
  overflow: visible;
  overflow-y: auto;
  max-height: calc(100vh - 15rem);
  position: relative;
}
.product-content .product-cont1 .sd-nasd .n_src1 li{
  position: relative;
}
.product-content .product-cont1 .sd-nasd .n_src1 li::before{
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.product-content .product-cont1 .sd-nasd .n_src1::-webkit-scrollbar {
  width:8px;
  height:8px;
  /* background-color: #F5F5F5; */
  }
  .product-content .product-cont1 .sd-nasd .n_src1::-webkit-scrollbar-track {
  border-radius: 10px;
  /* background-color: #E2E2E2; */
  }
  .product-content .product-cont1 .sd-nasd .n_src1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  }

.product-content .product-cont1 .sd-nasd .n_src1 li {
  padding-left: 1.5rem;
  position: relative;
}

.product-content .product-cont1 .sd-nasd .n_src1 li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #0453a2;
  opacity: 0;
}

.product-content .product-cont1 .sd-nasd .n_src1 li > a {
  display: block;
  color: #000000;
  font: 600 1.125rem/1.5em "Noto Sans SC";
  padding: 0.25rem 0;
}

.product-content .product-cont1 .sd-nasd .n_src1 li .sec a {
  display: block;
  color: #000000;
  font: 400 .875rem/1.5em "Noto Sans SC";
  position: relative;
  padding: 0.1rem 0;
}

.product-content .product-cont1 .sd-nasd .n_src1 li .sec a::before {
  content: "Ã‚Â·";
  margin-right: 0.15rem;
}

.product-content .product-cont1 .sd-nasd .n_src1 li .sec a:hover {
  color: #0453a2;
}

.product-content .product-cont1 .sd-nasd .n_src1 li.active::after, .product-content .product-cont1 .sd-nasd .n_src1 li:hover::after {
  opacity: 1;
}

.product-content .product-cont1 .sd-nasd .n_src1 li.active > a, .product-content .product-cont1 .sd-nasd .n_src1 li:hover > a {
  color: #0453a2;
}

.product-content .product-cont2 {
  width: 79.16667%;
}

@media (max-width: 768px) {
  .product-content .product-cont2 {
    width: 100%;
  }
}

.product-content .product-cont2 .product-list > li {
  padding: 3rem 13% 4.0625rem 5.13158%;
}

@media (max-width: 1366px) {
  .product-content .product-cont2 .product-list > li {
    padding: 3rem 5.78125% 4.0625rem 3.94737%;
  }
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li {
    padding: 2rem 4%;
  }
}

.product-content .product-cont2 .product-list > li:nth-child(2n) {
  background-color: #F8F8F8;
}

.product-content .product-cont2 .product-list > li .tit2 span {
  display: inline-block;
  color: #000000;
  font: 600 1.5rem/1.5em "Noto Sans SC";
  position: relative;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .tit2 span {
    font-size: 1.35rem;
  }
}

.product-content .product-cont2 .product-list > li .tit2 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -0.6rem;
  width: .875rem;
  height: .875rem;
  border-radius: 50%;
  background: -webkit-linear-gradient(234deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
  background: -moz-linear-gradient(234deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
  background: -o-linear-gradient(234deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
  background: linear-gradient(216deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
}

.product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 {
  width: 44.53947%;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 {
    width: 100%;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 .tit1 {
  color: #0453a2;
  font: 600 2.5rem/1.5em "Noto Sans SC";
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 .tit1 {
    font-size: 1.8rem;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 .tit2 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 .tit2 {
    margin-top: 1rem;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont1 .pro-a1 .p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.8em "Noto Sans SC";
  text-align: justify;
  margin-top: 1rem;
}

.product-content .product-cont2 .product-list > li .pro-cont1 .pro-a2 {
  width: 40%;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont1 .pro-a2 {
    width: 100%;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont1 .pro-a2 img {
  width: 100%;
}

.product-content .product-cont2 .product-list > li .pro-cont2 {
  /* margin-top: -1rem; */
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont2 {
    margin-top: 1rem;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 {
  margin: 0 -1.5%;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 {
    margin-top: 0;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li {
  width: 25%;
  padding: 0 1.5%;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li {
    width: 50%;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li u {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: #F0F9FF;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li u {
    width: 5.8rem;
    height: 5.8rem;
  }
}

.product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li u img {
  width: 60%;
}

.product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.6em "Noto Sans SC";
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li .pro-cont2 .td_list1 li p {
    margin-top: 0.5rem;
  }
}

.product-content .product-cont2 .product-list > li a.more-b {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .product-content .product-cont2 .product-list > li a.more-b {
    margin-top: 1rem;
  }
}

.cp-body {
  overflow: visible;
}

.cp-show-body {
  padding-top: 6.25rem;
}

.cp-show-body .head2 {
  background: #fff;
  border-bottom: 1px solid rgba(190, 190, 190, 0.3);
}

.cp-show-body .head2 .logo a img {
  -webkit-filter: invert(51%) sepia(94%) saturate(6433%) hue-rotate(190deg) brightness(93%) contrast(101%);
          filter: invert(51%) sepia(94%) saturate(6433%) hue-rotate(190deg) brightness(93%) contrast(101%);
}

.cp-show-body .head2 #menu .nav_a1 li a {
  color: rgba(0, 0, 0, 0.7);
}

.cp-show-body .head2 #menu .nav_a1 li a:hover {
  color: #0453a2;
}

.cp-show-body .head2 #menu .nav_a1 li > a span::after {
  background: #0453a2;
}

.cp-show-body .head2 .sska i, .cp-show-body .head2 .zywena i, .cp-show-body .head2 .sska a, .cp-show-body .head2 .zywena a {
  color: rgba(0, 0, 0, 0.7);
}

@-webkit-keyframes gfsdt {
  from {
    opacity: 0;
    left: -50%;
    top: -100%;
  }
  to {
    opacity: 1;
    left: 0;
    top: 0;
  }
}

@-moz-keyframes gfsdt {
  from {
    opacity: 0;
    left: -50%;
    top: -100%;
  }
  to {
    opacity: 1;
    left: 0;
    top: 0;
  }
}

@-o-keyframes gfsdt {
  from {
    opacity: 0;
    left: -50%;
    top: -100%;
  }
  to {
    opacity: 1;
    left: 0;
    top: 0;
  }
}

@keyframes gfsdt {
  from {
    opacity: 0;
    left: -50%;
    top: -100%;
  }
  to {
    opacity: 1;
    left: 0;
    top: 0;
  }
}

.cp-show-banner {
  background: #eee;
  position: relative;
  padding: 9rem 0 4rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cp-show-banner {
    padding: 1rem 0 5rem;
  }
}

.cp-show-banner u {
  display: block;
  font-size: 0;
  width: 36.45833%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: gfsdt 1s linear 1 forwards;
     -moz-animation: gfsdt 1s linear 1 forwards;
       -o-animation: gfsdt 1s linear 1 forwards;
          animation: gfsdt 1s linear 1 forwards;
}

@media (max-width: 768px) {
  .cp-show-banner u {
    width: 90%;
  }
}

.cp-show-banner u img {
  width: 100%;
}

.cp-show-banner .cpbanv1 {
  position: relative;
  z-index: 1;
}

.cp-show-banner .cpbanv1 .cpbanb1 {
  width: 39.28571%;
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb1 {
    width: 100%;
  }
}

.cp-show-banner .cpbanv1 .cpbanb1 img {
  width: 100%;
}

.cp-show-banner .cpbanv1 .cpbanb2 {
  width: 47.14286%;
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 {
    width: 100%;
  }
}

.cp-show-banner .cpbanv1 .cpbanb2 .tit {
  color: #0453a0;
  font: 600 3rem/1.5em "Noto Sans SC";
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 .tit {
    font-size: 1.8rem;
  }
}

.cp-show-banner .cpbanv1 .cpbanb2 .tit2 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 .tit2 {
    margin-top: 1rem;
  }
}

.cp-show-banner .cpbanv1 .cpbanb2 .tit2 span {
  display: inline-block;
  color: #111;
  font: 600 1.5rem/1.5em "Noto Sans SC";
  position: relative;
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 .tit2 span {
    font-size: 1.25rem;
  }
}

.cp-show-banner .cpbanv1 .cpbanb2 .tit2 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -0.6rem;
  width: .875rem;
  height: .875rem;
  border-radius: 50%;
  background: -webkit-linear-gradient(234deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
  background: -moz-linear-gradient(234deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
  background: -o-linear-gradient(234deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
  background: linear-gradient(216deg, #0453a2 0%, rgba(0, 117, 204, 0) 100%);
}

.cp-show-banner .cpbanv1 .cpbanb2 .p {
  color: #333;
  font: 400 1rem/1.8em "Noto Sans SC";
  margin-top: 1rem;
  text-align: justify;
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 .wehsad {
    margin-top: 1rem;
  }
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .thsd {
  width: 5rem;
  height: 5rem;
  background: #0453a2;
  border-radius: 50%;
  margin-right: 0.6rem;
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 .wehsad .thsd {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .thsd img {
  width: 40%;
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .copnm {
  color: #333;
  font: 400 1rem/1.5em "Noto Sans SC";
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .copnm b {
  display: block;
  color: #0453a2;
  font-family: 'Montserrat';
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  /* 111.111% */
}

@media (max-width: 768px) {
  .cp-show-banner .cpbanv1 .cpbanb2 .wehsad .copnm b {
    font-size: 1.5rem;
  }
}

.pro-show-cont4 {
  background: #F8F8F8;
}

.pro-show-cont4 .jjfa-a6_v1 .swiper-pagination1 span {
  background: rgba(5, 5, 5, 0.5);
}

.pro-show-cont1 {
  padding: 6.375rem 0;
}
.pro-show-cont1+.pro-show-cont1{padding-top: 0;}
.pro-show-cont1+.jjfa-cont5{padding-top: 0;}
.jjfa-a5_v1{padding-top: 30px;}
.jjfa-a5_v1 table{max-width:100%;}
@media (max-width: 768px) {
  .pro-show-cont1 {
    padding: 2rem 0;
  }
  .jjfa-a5_v1{padding-top: 15px;}
  .jjfa-a5_v1 table span{font-size: 14px;}
  .jjfa-a5_v1 table tr:nth-of-type(1) span{font-size: 16px;}
}

.pro-show-cont1 .cptd-lista1 {
  margin: 0 -1%;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .pro-show-cont1 .cptd-lista1 {
    margin-top: 0;
  }
}

.pro-show-cont1 .cptd-lista1 li {
  width: -webkit-calc(100%/4);
  width: -moz-calc(100%/4);
  width: calc(100%/4);
  padding: 0 1%;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .pro-show-cont1 .cptd-lista1 li {
    width: 50%;
  }
}

.pro-show-cont1 .cptd-lista1 li .cont-p {
  padding: 4rem 10%;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  box-shadow: 0px 0.25rem 1.875rem 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  height: 100%;
}

@media (max-width: 768px) {
  .pro-show-cont1 .cptd-lista1 li .cont-p {
    padding: 2rem 8%;
  }
}

.pro-show-cont1 .cptd-lista1 li u {
  background: #F0F9FF;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pro-show-cont1 .cptd-lista1 li u {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.pro-show-cont1 .cptd-lista1 li u img {
  width: 56%;
}

.pro-show-cont1 .cptd-lista1 li p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1rem/1.6em "Noto Sans SC";
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .pro-show-cont1 .cptd-lista1 li p {
    margin-top: 1rem;
  }
}

.pro-show-cont1 .cptd-lista1 li:hover .cont-p {
  background: #0453a2;
}

.pro-show-cont1 .cptd-lista1 li:hover .cont-p u {
  background: #fff;
}

.pro-show-cont1 .cptd-lista1 li:hover .cont-p p {
  color: #fff;
}

.paggs {
  overflow-x: auto;
}

.paggs table {
  border-color: #E6E6E6;
  margin-top: 1.5rem;
  min-width: 768px;
  max-width: 100%;
}

.paggs table td {
  color: #666666;
  font: 400 1rem/1.5em "Noto Sans SC";
}

.pro-show-cont2 {
  background: #1F84CF;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .pro-show-cont2 {
    padding: 2rem 0;
  }
}

.pro-show-cont2 .paggs table tr td:nth-child(1) {
  text-align: left;
}

.pro-show-cont2 .paggs table td {
  color: #fff;
  font: 400 1rem/1.5em "Noto Sans SC";
  text-align: center;
}

.show-news-content {
  padding: 4.375rem 0 2.5rem;
}

@media (max-width: 768px) {
  .show-news-content {
    padding: 2rem 0 1rem;
  }
}

.show-news-content .show-news-a1_v1 .title-a {
  text-align: center;
  color: #505050;
  font: 600 2.25rem/1.4em "Noto Sans SC";
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-a {
    font-size: 1.6rem;
  }
}

.show-news-content .show-news-a1_v1 .title-b {
  border-bottom: 1px solid #DBDBDB;
  padding: 2.2rem 0 1.25rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-b {
    padding: 1rem 0 0.5rem;
  }
}

.show-news-content .show-news-a1_v1 .title-b .date-a {
  color: #848484;
  font: 400 1rem/1.5em "Noto Sans SC";
}

.show-news-content .show-news-a1_v1 .title-b .date-a span {
  font-family: "Montserrat";
  color: #848484;
  font-weight: 600;
}

.show-news-content .show-news-a1_v1 .title-b .fen-xiang {
  color: #848484;
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-left: 3.75rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-b .fen-xiang {
    margin-left: 1rem;
  }
}

.show-news-content .show-news-a1_v1 .title-b .fen-xiang .social-share a {
  border-color: rgba(5, 5, 5, 0.2);
  color: rgba(5, 5, 5, 0.2);
  font-size: 1.35rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-b .fen-xiang .social-share a {
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    margin: 2px;
  }
}

.show-news-content .show-news-a1_v1 .title-b .fen-xiang .social-share a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.show-news-content .show-news-a1_v1 .xinwn-consss {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1rem/2em "Noto Sans SC";
  padding: 2rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .xinwn-consss {
    padding: 1.125rem 0;
  }
}

.show-news-content .show-news-a1_v1 .xinwn-consss img {
  border-radius: 1rem;
}

.pain {
  border-top: 1px solid #DBDBDB;
  padding: 1.5rem 0;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .pain {
    padding: 1rem 0;
    margin-top: 0.8rem;
  }
}

.pain > div {
  max-width: 45%;
  color: rgba(0, 0, 0, 0.8);
  font: 400 1rem/1.5em "Noto Sans SC";
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pain > div {
    max-width: none;
    width: 100%;
  }
}

.pain > div a {
  color: rgba(0, 0, 0, 0.8);
}

.pain > div a:hover {
  color: #0453a2;
}

.tj-cont1 {
  background: #F8F8F8;
  padding: 6.125rem 0 2.8125rem;
}

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

.tj-cont1 .mySwiper9 {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .tj-cont1 .mySwiper9 {
    margin-top: 1rem;
  }
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p {
  border-radius: .625rem;
  background: #FFF;
  padding: 1.625rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .xw-as1 .data {
  width: 6.25rem;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .xw-as1 .data b {
  display: block;
  color: #0453a2;
  font-family: Montserrat;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .xw-as1 .data p {
  color: rgba(8, 8, 8, 0.5);
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .xw-as1 a.name {
  width: -webkit-calc(100% - 6.375rem);
  width: -moz-calc(100% - 6.375rem);
  width: calc(100% - 6.375rem);
  color: rgba(0, 0, 0, 0.8);
  font: 600 1.125rem/1.4em "Noto Sans SC";
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .xw-as2 {
  color: rgba(0, 0, 0, 0.6);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin: 1rem 0;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .img a {
  display: block;
  font-size: 0;
  overflow: hidden;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .img a img {
  width: 100%;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p:hover, .tj-cont1 .mySwiper9 .swiper-slide .cont-p.on {
  background: #0453a2;
  border: 1px solid #fff;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p:hover .xw-as1 .data b, .tj-cont1 .mySwiper9 .swiper-slide .cont-p:hover .xw-as1 .data p, .tj-cont1 .mySwiper9 .swiper-slide .cont-p.on .xw-as1 .data b, .tj-cont1 .mySwiper9 .swiper-slide .cont-p.on .xw-as1 .data p {
  color: #fff;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p:hover .xw-as1 a.name, .tj-cont1 .mySwiper9 .swiper-slide .cont-p.on .xw-as1 a.name {
  color: #fff;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p:hover .xw-as2, .tj-cont1 .mySwiper9 .swiper-slide .cont-p.on .xw-as2 {
  color: #fff;
}

.n-content {
  padding: 4rem 0 1rem;
}

@media (max-width: 768px) {
  .n-content {
    padding: 2rem 0 0.5rem;
  }
}

.zzry-body {
  background: #FAFAFA;
}

.zzry-list {
  margin: 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: 25%;
}

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

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

.lx-cont1 {
  background: #F8F8F8;
  padding: 4.5rem 0 5.3125rem;
}

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

.lx-cont1 .lx-a1v1 .lx-a1b1 p {
  color: #000000;
  font: 500 2.25rem/1.5em "Noto Sans SC";
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 p {
    font-size: 1.25rem;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b1 b {
  display: block;
  color: #0453a2;
  font: 700 3.4rem/1.4em "Montserrat";
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 b {
    font-size: 2rem;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b2 {
  width: 70.92857%;
  margin-right: -2%;
  margin-left: -10%;
}

@media (max-width: 1024px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 {
    margin-left: -15%;
  }
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 {
    width: 100%;
    margin: 1rem 0;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b2 img {
  width: 100%;
}

.lx-cont1 .lx-a1v2 {
  border-radius: 1.25rem;
  background: #FFF;
  box-shadow: 0px 0.25rem 1.875rem 0px rgba(0, 0, 0, 0.05);
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 {
    padding: 1rem 0;
  }
}

.lx-cont1 .lx-a1v2 .xwe-a1 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.5rem 0;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .xwe-a1 li {
    width: 100%;
    -webkit-flex: none;
       -moz-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 1rem 4%;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.lx-cont1 .lx-a1v2 .xwe-a1 li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .xwe-a1 li + li {
    border-left: none;
  }
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p .tit {
  color: #000000;
  font: 600 1.625rem/1.5em "Noto Sans SC";
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p .p {
  margin-top: 1rem;
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p .p dl {
  margin-top: 0.5rem;
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p .p dl dt {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #F1F4F5;
  margin-right: 0.5rem;
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p .p dl dt img {
  width: 45%;
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p .p dl dd {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1rem/1.5em "Noto Sans SC";
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p img {
  width: 7.5rem;
}

.lx-cont1 .lx-a1v2 .xwe-a1 li .cont-p p {
  color: rgba(0, 0, 0, 0.5);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 0.5rem;
}

.lx-cont1 .lx-a1v2 .werhxa {
  padding: 0 2.8125rem;
  margin-top: 3.4375rem;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .werhxa {
    padding: 0 4%;
    margin-top: 1rem;
  }
}

.lx-cont1 .lx-a1v2 .werhxa .tit {
  text-align: center;
  position: relative;
}

.lx-cont1 .lx-a1v2 .werhxa .tit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 40%;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .werhxa .tit::after {
    width: 30%;
  }
}

.lx-cont1 .lx-a1v2 .werhxa .tit::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 1px;
  width: 40%;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .werhxa .tit::before {
    width: 30%;
  }
}

.lx-cont1 .lx-a1v2 .werhxa .tit span {
  color: #000000;
  font: 500 2.25rem/1.5em "Noto Sans SC";
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .werhxa .tit span {
    font-size: 1.6rem;
  }
}

.lx-cont1 .lx-a1v2 .werhxa .yyxas-a li {
  width: 24%;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .werhxa .yyxas-a li {
    width: 49%;
    margin-top: 1rem;
  }
}

.lx-cont1 .lx-a1v2 .werhxa .yyxas-a li .titaa1 {
  color: #010101;
  font: 600 1.125rem/1.5em "Noto Sans SC";
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v2 .werhxa .yyxas-a li .titaa1 {
    font-size: 1rem;
  }
}

.lx-cont1 .lx-a1v2 .werhxa .yyxas-a li .titaa1 span {
  color: #0453a2;
}

.lx-cont1 .lx-a1v2 .werhxa .yyxas-a li p {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1rem/1.5em "Noto Sans SC";
}

.lx-cont2 {
  background: url(../images/ba6eec07d47029b900c04a768782ed7b.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 6.625rem 0 3.75rem;
}

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

.lx-cont2 form .msg-a1 .inpt {
  width: 49.28571%;
  position: relative;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt {
    width: 100%;
  }
}

.lx-cont2 form .msg-a1 .inpt input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font: 400 1.125rem/3.75rem "Noto Sans SC";
  padding: 0 1em;
  border-radius: 0.25rem;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt input {
    line-height: 3rem;
  }
}

.lx-cont2 form .msg-a1 .inpt .m_label {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 0, 0, 0.8);
  font: 400 1.125rem/3.75rem "Noto Sans SC";
  padding: 0 1em;
  width: 100%;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt .m_label {
    line-height: 3.2rem;
  }
}

.lx-cont2 form .msg-a1 .inpt .m_label span {
  color: #FF0000;
}

.lx-cont2 form .msg-a1 .inpt .wehsdsa .p1 {
  width: 78.84058%;
  margin-top: 0;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt .wehsdsa .p1 {
    width: 70%;
  }
}

.lx-cont2 form .msg-a1 .inpt .wehsdsa .p2 {
  width: 18.84058%;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt .wehsdsa .p2 {
    width: 27%;
  }
}

.lx-cont2 form .msg-a1 .inpt .wehsdsa .p2 img {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
}

.lx-cont2 form .msg-a2 {
  position: relative;
  margin-top: 1rem;
}

.lx-cont2 form .msg-a2 .m_label {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 0, 0, 0.8);
  font: 400 1.125rem/3.75rem "Noto Sans SC";
  padding: 0 1em;
  width: 100%;
}

.lx-cont2 form .msg-a2 .m_label span {
  color: #FF0000;
}

.lx-cont2 form .msg-a2 textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font: 400 1.125rem/1.5rem "Noto Sans SC";
  padding: 0.5em 1em;
  border-radius: 0.25rem;
}

.lx-cont2 form .more-b {
  color: #0453a2;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .lx-cont2 form .more-b {
    margin-top: 1rem;
  }
}

.lx-cont2 form .more-b i {
  color: #0453a2;
}

.fw-cont1 {
  background: #F8F8F8;
  padding: 6.75rem 0 9rem;
}

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

.fw-cont1 .img1 {
  display: block;
  font-size: 0;
  margin-top: 5.375rem;
}

@media (max-width: 768px) {
  .fw-cont1 .img1 {
    margin-top: 1.5rem;
  }
}

.fw-cont1 .img1 img {
  width: 100%;
}

.fw-cont2 {
  padding: 6.25rem 0 7.5rem;
}

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

.fw-cont2 .ftitas {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1.5rem/1.5em "Noto Sans SC";
  padding: 0 3%;
  text-align: center;
  margin: 1.5rem auto;
}

@media (max-width: 768px) {
  .fw-cont2 .ftitas {
    font-size: 1.125rem;
    margin: 0.5rem auto;
  }
}

.fw-cont2 .fw-a2v1 u {
  display: block;
  font-size: 0;
  width: 60.42857%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fw-cont2 .fw-a2v1 u {
    width: 80%;
  }
}

.fw-cont2 .fw-a2v1 u img {
  width: 100%;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.fw-cont2 .xwe-as1 li {
  width: 21.5625rem;
  position: absolute;
}

@media (max-width: 1366px) {
  .fw-cont2 .xwe-as1 li {
    width: 20.5625rem;
  }
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li {
    width: 48%;
    position: static;
  }
}

.fw-cont2 .xwe-as1 li .cont-p {
  width: 17.6875rem;
  padding: 1rem;
  position: relative;
  border-radius: 1.25rem;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li .cont-p {
    width: 100%;
    height: 100%;
  }
}

.fw-cont2 .xwe-as1 li .cont-p b {
  color: rgba(0, 0, 0, 0.04);
  font: 700 5.625rem/1em "Montserrat";
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li .cont-p b {
    font-size: 3.8rem;
  }
}

.fw-cont2 .xwe-as1 li .cont-p h2 {
  color: #000000;
  font: 600 1.5rem/1em "Noto Sans SC";
  margin-top: -2rem;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li .cont-p h2 {
    font-size: 1.25rem;
    margin-top: -1.5rem;
  }
}

.fw-cont2 .xwe-as1 li .cont-p .p {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 0.6rem;
  height: 6em;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li .cont-p .p {
    height: auto;
  }
}

.fw-cont2 .xwe-as1 li .data {
  background: #0453a2;
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li .data {
    display: none;
  }
}

.fw-cont2 .xwe-as1 li .data::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 117, 204, 0.1);
  border: 1px solid rgba(0, 117, 204, 0.3);
  border-radius: 50%;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
     -moz-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
       -o-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

.fw-cont2 .xwe-as1 li:nth-child(1), .fw-cont2 .xwe-as1 li:nth-child(3) {
  top: 14%;
}

.fw-cont2 .xwe-as1 li:nth-child(2), .fw-cont2 .xwe-as1 li:nth-child(4) {
  bottom: 14%;
}

.fw-cont2 .xwe-as1 li:nth-child(1), .fw-cont2 .xwe-as1 li:nth-child(2) {
  left: 0;
}

.fw-cont2 .xwe-as1 li:nth-child(1) .cont-p, .fw-cont2 .xwe-as1 li:nth-child(2) .cont-p {
  text-align: right;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li:nth-child(1) .cont-p, .fw-cont2 .xwe-as1 li:nth-child(2) .cont-p {
    text-align: left;
  }
}

.fw-cont2 .xwe-as1 li:nth-child(1) .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(2) .cont-p::after {
  content: "";
  border: 1rem solid transparent;
  border-left-color: #0453a2;
  position: absolute;
  right: -1.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li:nth-child(1) .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(2) .cont-p::after {
    display: none;
  }
}

.fw-cont2 .xwe-as1 li:nth-child(1):hover .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(2):hover .cont-p::after {
  display: block;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li:nth-child(1):hover .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(2):hover .cont-p::after {
    display: none;
  }
}

.fw-cont2 .xwe-as1 li:nth-child(3), .fw-cont2 .xwe-as1 li:nth-child(4) {
  right: 0;
}

.fw-cont2 .xwe-as1 li:nth-child(3) .cont-p, .fw-cont2 .xwe-as1 li:nth-child(4) .cont-p {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.fw-cont2 .xwe-as1 li:nth-child(3) .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(4) .cont-p::after {
  content: "";
  border: 1rem solid transparent;
  border-right-color: #0453a2;
  position: absolute;
  left: -1.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li:nth-child(3) .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(4) .cont-p::after {
    display: none;
  }
}

.fw-cont2 .xwe-as1 li:nth-child(3):hover .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(4):hover .cont-p::after {
  display: block;
}

@media (max-width: 768px) {
  .fw-cont2 .xwe-as1 li:nth-child(3):hover .cont-p::after, .fw-cont2 .xwe-as1 li:nth-child(4):hover .cont-p::after {
    display: none;
  }
}

.fw-cont2 .xwe-as1 li:hover .cont-p {
  background: #0453a2;
}

.fw-cont2 .xwe-as1 li:hover .cont-p b {
  color: rgba(255, 255, 255, 0.2);
}

.fw-cont2 .xwe-as1 li:hover .cont-p h2, .fw-cont2 .xwe-as1 li:hover .cont-p .p {
  color: #fff;
}

.fw-cont2 .xwe-as1 li:hover .data::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
     -moz-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
       -o-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.fw-cont3 {
  background: #F8F8F8;
  padding: 6.625rem 0 8.5rem;
}

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

.fw-cont3 .fw-a3_list1 {
  margin-top: 4.0625rem;
}

@media (max-width: 768px) {
  .fw-cont3 .fw-a3_list1 {
    margin-top: 1.5rem;
  }
}

.fw-cont3 .fw-a3_list1 li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.fw-cont3 .fw-a3_list1 li .cont-as {
  position: relative;
}

.fw-cont3 .fw-a3_list1 li .cont-as u {
  display: block;
  font-size: 0;
  width: 100%;
}

.fw-cont3 .fw-a3_list1 li .cont-as u img {
  width: 100%;
}

.fw-cont3 .fw-a3_list1 li .cont-as i {
  display: block;
  font-size: 0;
  width: 43%;
}

.fw-cont3 .fw-a3_list1 li .cont-as i img {
  width: 100%;
}

.fw-cont3 .fw-a3_list1 li .cont-as b {
  display: block;
  width: 1.75rem;
  font-size: 0;
  position: absolute;
  right: -0.875rem;
  top: 50%;
  margin-top: -0.875rem;
  z-index: 1;
}

@media (max-width: 768px) {
  .fw-cont3 .fw-a3_list1 li .cont-as b {
    width: 1rem;
    right: -0.5rem;
    margin-top: -0.5rem;
  }
}

.fw-cont3 .fw-a3_list1 li .cont-as b img {
  width: 100%;
}

.fw-cont3 .fw-a3_list1 li .wenata {
  text-align: center;
  position: relative;
  z-index: 1;
}

.fw-cont3 .fw-a3_list1 li .wenata b {
  width: 45.32374%;
  margin: 0 auto;
  display: block;
  font: 500 1.5rem/2.375rem "Noto Sans SC";
  background: #0453a2;
  border-radius: 1.1875rem;
  color: #fff;
  margin-top: -1.1875rem;
}

@media (max-width: 768px) {
  .fw-cont3 .fw-a3_list1 li .wenata b {
    font-size: 1rem;
    line-height: 1.85rem;
  }
}

.fw-cont3 .fw-a3_list1 li .wenata h2 {
  color: #000000;
  font: 400 1.25rem/1.5em "Noto Sans SC";
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .fw-cont3 .fw-a3_list1 li .wenata h2 {
    font-size: 1rem;
    margin-top: 0.65rem;
  }
}

.fw-cont3 .fw-a3_list1 li:nth-child(2n) .cont-as u img {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fw-cont3 .fw-a3_list1 li:last-child .cont-as b {
  display: none;
}

.zl-cont1 {
  background: #F8F8F8;
  padding: 6.75rem 0 9rem;
}

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

.zl-cont1 .zl-a1_list1 {
  margin: 0 -1%;
  margin-top: 0.75rem;
}

.zl-cont1 .zl-a1_list1 li {
  width: -webkit-calc(100%/3);
  width: -moz-calc(100%/3);
  width: calc(100%/3);
  padding: 0 1%;
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .zl-cont1 .zl-a1_list1 li {
    width: 50%;
    margin-top: 1rem;
  }
}

.zl-cont1 .zl-a1_list1 li .cont-p {
  padding: 4rem 10%;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #FFF;
  box-shadow: 0px 0.25rem 1.875rem 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  height: 100%;
}

@media (max-width: 768px) {
  .zl-cont1 .zl-a1_list1 li .cont-p {
    padding: 2rem 8%;
  }
}

.zl-cont1 .zl-a1_list1 li u {
  background: #F0F9FF;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .zl-cont1 .zl-a1_list1 li u {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.zl-cont1 .zl-a1_list1 li u img {
  width: 56%;
}

.zl-cont1 .zl-a1_list1 li p {
  color: rgba(0, 0, 0, 0.7);
  font: 400 1.125rem/1.5em "Noto Sans SC";
  margin-top: 0.5rem;
  text-align: center;
}

.zl-cont1 .zl-a1_list1 li p span {
  display: block;
}

@media (max-width: 768px) {
  .zl-cont1 .zl-a1_list1 li p {
    margin-top: 1rem;
  }
}

.zl-cont2 {
  margin-top: 7.125rem;
}

@media (max-width: 768px) {
  .zl-cont2 {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}

.zl-cont2 .zl-a2v1 u {
  display: block;
  font-size: 0;
  width: 58.42857%;
  margin: 7.625rem auto 0;
}

@media (max-width: 768px) {
  .zl-cont2 .zl-a2v1 u {
    display: none;
  }
}

.zl-cont2 .zl-a2v1 u img {
  width: 100%;
}

@media (max-width: 768px) {
  .zl-cont2 .zl-a2v1 .zl-a2c1 {
    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;
  }
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li {
  position: absolute;
  text-align: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .zl-cont2 .zl-a2v1 .zl-a2c1 li {
    position: static;
    width: 48%;
    margin-top: 1rem;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li:nth-child(1) {
  left: 18%;
  bottom: 24%;
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li:nth-child(2) {
  left: 26%;
  bottom: 69%;
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li:nth-child(3) {
  left: 42%;
  bottom: 87%;
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li:nth-child(4) {
  right: 30%;
  bottom: 69%;
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li:nth-child(5) {
  right: 18%;
  bottom: 24%;
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li .p {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-bottom: 0.7em;
}

@media (max-width: 768px) {
  .zl-cont2 .zl-a2v1 .zl-a2c1 li .p {
    width: 100%;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1em;
  }
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li .img {
  background: -webkit-linear-gradient(298deg, #36A9FF 11.55%, #0453a2 86.83%), #0453a2;
  background: -moz-linear-gradient(298deg, #36A9FF 11.55%, #0453a2 86.83%), #0453a2;
  background: -o-linear-gradient(298deg, #36A9FF 11.55%, #0453a2 86.83%), #0453a2;
  background: linear-gradient(152deg, #36A9FF 11.55%, #0453a2 86.83%), #0453a2;
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .zl-cont2 .zl-a2v1 .zl-a2c1 li .img {
    width: 5rem;
    height: 5rem;
  }
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li .img::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
  border-radius: 50%;
}

.zl-cont2 .zl-a2v1 .zl-a2c1 li .img img {
  width: 56%;
}

.zl-cont3 {
  padding: 8.125rem 0;
  background: #F8F8F8;
}

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

.zl-cont3 .zl-a3v1 .zl-a3b1 {
  width: 37.85714%;
}

@media (max-width: 768px) {
  .zl-cont3 .zl-a3v1 .zl-a3b1 {
    width: 100%;
  }
}

.zl-cont3 .zl-a3v1 .zl-a3b1 .p {
  color: rgba(0, 0, 0, 0.8);
  font: 400 1.25rem/1.75em "Noto Sans SC";
  padding: 1.2rem 0 1.8rem;
}

@media (max-width: 768px) {
  .zl-cont3 .zl-a3v1 .zl-a3b1 .p {
    font-size: 1rem;
    padding: 0.85rem 0 1.25rem;
  }
}

.zl-cont3 .zl-a3v1 .zl-a3b1 .p p {
  padding-left: 1em;
  position: relative;
}

.zl-cont3 .zl-a3v1 .zl-a3b1 .p p::before {
  content: "Ã‚Â·";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.zl-cont3 .zl-a3v1 .zl-a3b2 {
  width: 57.14286%;
  overflow: hidden;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .zl-cont3 .zl-a3v1 .zl-a3b2 {
    width: 100%;
  }
}

.zl-cont3 .zl-a3v1 .zl-a3b2 img {
  width: 100%;
}

.zl-cont4 {
  text-align: center;
  background: url(../images/81900b2a0005f4756309fa3f647a68c8.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 10.9375rem 0;
}

@media (max-width: 768px) {
  .zl-cont4 {
    padding: 3.5rem 0;
  }
}

.zl-cont4 .ny_tit .tit, .zl-cont4 .ny_tit .ftit {
  color: #fff;
}

@media (max-width: 768px) {
  .zl-cont4 .ny_tit .tit {
    font-size: 1.8rem;
  }
}

.zl-cont4 .ny_tit .ftit {
  padding: 0 9%;
  margin-top: 0.5rem;
  line-height: 1.3em;
}

@media (max-width: 768px) {
  .zl-cont4 .ny_tit .ftit {
    padding: 0;
    font-size: 1rem;
  }
}

.zl-cont5 {
  background: #F8F8F8;
  padding: 6.125rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.zl-cont5 .zl-a5_list1 {
  margin-top: 2.375rem;
}

@media (max-width: 768px) {
  .zl-cont5 .zl-a5_list1 {
    margin-top: 0;
  }
}

.zl-cont5 .zl-a5_list1 li {
  width: 48.57143%;
}

@media (max-width: 768px) {
  .zl-cont5 .zl-a5_list1 li {
    width: 100%;
    margin-top: 1rem;
  }
}

.zl-cont5 .zl-a5_list1 li .img {
  display: block;
  font-size: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.zl-cont5 .zl-a5_list1 li .img img {
  width: 100%;
}

.zl-cont5 .zl-a5_list1 li p {
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  font: 400 1.125rem/1.5em "Noto Sans SC";
  margin-top: 1.5rem;
}
.viewMore--3t8jh.hs{
  color: rgba(0, 0, 0, 0.5);
}
.viewMore--3t8jh.hs>div{
  border-color: #000;
}
@media (max-width: 768px) {
  .zl-cont5 .zl-a5_list1 li p {
    margin-top: 0.8rem;
  }
}
.jjfa-cont7{
  padding: 4.875rem 0 7.6875rem;
}
.jjfa-cont7 .jjfa-a7_v1{
   margin-top: 2.25rem;
}
.jjfa-cont7 .jjfa-a7_b1{
  width: 47%;
}
.jjfa-cont7 .jjfa-a7_b1 .img{
  display: block;
  font-size: 0;
  border-radius: 1rem;
  overflow: hidden;
}
.jjfa-cont7 .jjfa-a7_b1 .img img{
  width: 100%;
}
.jjfa-cont7 .jjfa-a7_b2{
  width: 48%;
  color: rgba(0, 0, 0, 0.7);
  font: 400 1.125rem/1.6em "Noto Sans SC";
}
.jjfa-cont8{
  padding: 5.5rem 0;
  background: #F8F8F8;
}
.xsd-list1{
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.xsd-list1 li{
   flex: 1;
   background: #fff;
   padding: 1.8rem 0;
   position: relative;
}
.xsd-list1 li::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;    transition: all .6s;
  height: .25rem;
  background: #006BBC;
}
.xsd-list1 li+li{
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.xsd-list1 li .img{
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.xsd-list1 li .img i{
  width: 50%;
  display: block;
  font-size: 0;
}
.xsd-list1 li .img i img{
  width: 100%;
}
.xsd-list1 li p{
  color: #000000;
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-left: 0.75em;
}
.xsd-list1 li:hover::after,.xsd-list1 li.on::after{
  width: 100%;
}
.xsd-list1 li:hover .img,.xsd-list1 li.on .img{
  background: #0453a2;
}
.xsd-list1 li:hover .img i img,.xsd-list1 li.on .img i img{
  filter: invert(100%) sepia(0%) saturate(7461%) hue-rotate(110deg) brightness(115%) contrast(106%);
}
.xsd-list1{
  margin-top: 2.2rem;
}
.xsd-list2c1{
  margin-top: 2rem;
}
.xsd-list2c1 li{
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; padding: 2% 0;
}
.xsd-list2c1 li .img{
  width: 40%;
  position: relative;
}
.xsd-list2c1 li .img i{
  display: block;
  font-size: 0;
}
.xsd-list2c1 li .img i img{
  width: 100%;
}
.xsd-list2c1 li .img u{
  display: block;
  position: absolute;
  left: -15%;
  top: 0;
  font-size: 0;
  width: 100%;
}
.xsd-list2c1 li .img u img{
  width: 100%;
}
.xsd-list2c1 li .cont-p{
  width: 45%;
}
.xsd-list2c1 li .cont-p .tit b{
  color: #0453a2; font: 600 3rem/1.5em "Noto Sans SC";
}
.xsd-list2c1 li .cont-p .tit span{
  color: #000000;
  font: 400 1.875rem/1.5em "Noto Sans SC";
  margin-left: 0.7em;
}
.xsd-list2c1 li .cont-p .p{
  color: rgba(1, 1, 1, 0.7);
  font: 400 1rem/1.65em "Noto Sans SC";
  margin: 1rem 0 1.5rem;
}
.xsd-list2c1 li:nth-child(2n){
  padding: 4%;
  background: #fff;
  border-radius: 1rem;
}
.xsd-list2c1 li:nth-child(2n) .img u{
  left: auto;
  right: -15%;
}
.xsd-list2c1 li:nth-child(2n) .cont-p{
  order: 2;
}
.xsd-list2c2 .jjfa-a5_v1 {
  margin-top: 3.5rem;
  position: relative;
}
.xsd-list2c2 .jjfa-a5_v1 .gongt-jta>div{
  position: absolute;
  top: 45%;
  background: #000;
  width: 3.125rem;
  height: 3.125rem;
  transform: translateY(-50%); 
  border-radius: 50%;
  z-index: 1;
}
.xsd-list2c2 .jjfa-a5_v1 .gongt-jta>div:hover{
  background: #0453a2;
}
.xsd-list2c2 .jjfa-a5_v1 .gongt-jta>div.swiper-button-prev1 {
  left: -4.5rem;
}
.xsd-list2c2 .jjfa-a5_v1 .gongt-jta>div.swiper-button-next1 {
  right: -4.5rem;
}
.xsd-list2c2 .jjfa-a5_v1 .gongt-jta>div i{
  color: #fff;
  font: 500 1rem/1em "Noto Sans SC";
}
@media (max-width: 768px) {
  .xsd-list2c2 .jjfa-a5_v1 .gongt-jta{
    display: none;
  }
  .xsd-list2c2 .jjfa-a5_v1 {
    margin-top: 1.5rem;
  }
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 {
  position: relative;
  padding: 0 1px;
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem;
}

@media (max-width: 768px) {
  .xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa {
    font-size: 1rem;
  }
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa i {
  display: block;
  font-size: 0;
  overflow: hidden;
  padding: 2rem 2rem 0;
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa i img {
  width: 100%;
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa .tit {
  color: #0453a2;
  font: 600 2.25rem/1.5em "Noto Sans SC";
  padding: 0;
  text-align: center;
}
.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa .p{
  color: #000000;
  font: 400 1.25rem/1.6em "Noto Sans SC";
  text-align: center;
  padding-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa .tit {
    font-size: 1.5rem;
  }
  .xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa .p{
    font-size: 1rem;padding-bottom: 1rem;
  }
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-slide a.asa:hover .tit {
  color: #0453a2;
}

.xsd-list2c2 .jjfa-a5_v1 .mySwiper5 .swiper-pagination2 span {
  margin: 0 0.4rem;
}
@media (max-width: 768px) {
  .jjfa-cont7{
    padding: 2rem 0;
  }
  .jjfa-cont7 .jjfa-a7_v1{
    margin-top: 1rem;
  }
  .jjfa-cont7 .jjfa-a7_b1{
    width: 100%;
  }
  .jjfa-cont7 .jjfa-a7_b2{
    width: 100%;
    margin-top: 1rem;
  }
  .jjfa-cont8{
    padding: 2rem 0;
  }
  .xsd-list1{
    margin-top: 1.2rem;
  }
  .xsd-list1 li{
    flex: none;
    width: 50%;
    padding: 0.65rem 0;
  }
  .xsd-list1 li p{
    width: 3.5em;
  }
  .xsd-list1 li:nth-child(3){
    border-left: none;
  }
  .xsd-list1 li:nth-child(n+3){
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .xsd-list2c1 li .cont-p{
    width: 100%;
    order: 2;
  }
  .xsd-list2c1 li .img{
    width: 100%;
  }
  .xsd-list2c1 li .img u{
    left: 0;
  }
  .xsd-list2c1 li+li{
    margin-top: 1rem;
  }
  .xsd-list2c1 li .cont-p {
    margin-top: 1rem;
  }
  .xsd-list2c1 li .cont-p .tit b{
    font-size: 1.7rem;
  }
  .xsd-list2c1 li .cont-p .tit span{
    font-size: 1.4rem;
  }
  .xsd-list2c1 li .cont-p .p{
    margin: 0.5rem 0;
  }
  .xsd-list2c1 li:nth-child(2n) .img u{
    right: 0;
  }
}



body, html {
  font-size: 0.8333333333vw;
}

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

p {
  padding: 0;
  margin: 0;
}

.wh {
  padding: 0 10%;
}
@media (max-width: 1366px) {
  .wh {
    padding: 0 5.78125%;
  }
}
@media (max-width: 768px) {
  .wh {
    padding: 0 4%;
  }
}

.wh1 {
  padding: 0 4.1666666667%;
}
@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: #FF0100;
  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 #FF0100;
  -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: #FF0100;
  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: #FF0100;
}
.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}
.more-msl.hs:before {
  background: #FF0100;
}
.more-msl.hs:hover {
  color: #fff;
  border-color: #FF0100;
}
.more-msl.ls {
  color: #FF0100;
  background: transparent;
  border-color: #FF0100;
}
.more-msl.ls:before {
  background: #FF0100;
}
.more-msl.ls:hover {
  color: #fff;
}

.more-b {
  display: inline-block;
  padding: 0.7rem 2.5rem;
  border-radius: 3.125rem;
  background-color: #EBEBEC;
  color: #1B1C21;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans SC";
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.6rem 2rem;
  }
}
.more-b > * {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.more-b span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  -webkit-transition-delay: 0.06s;
     -moz-transition-delay: 0.06s;
       -o-transition-delay: 0.06s;
          transition-delay: 0.06s;
  line-height: 2.2rem;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-weight: 600;
}
.more-b i {
  display: inline-block;
  font-size: 0.75rem;
  -webkit-transition-delay: 0.12s;
     -moz-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  color: #1B1C21;
  font-weight: 400;
  vertical-align: middle;
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: #0453a2;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}
.more-b:hover {
  border-color: #FF0100;
  color: #fff;
}
.more-b:hover > * {
  -webkit-transform: translateX(0.75rem);
     -moz-transform: translateX(0.75rem);
      -ms-transform: translateX(0.75rem);
       -o-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
  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.hs {
  background: #FF0100;
  color: #fff;
}
.more-b.hs i {
  color: #fff;
}
.more-b.hs::after {
  background-color: #000;
}
.more-b.bs {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.more-b.bs::after {
  background-color: #FF0100;
}
.more-b.bs:hover {
  border-color: #FF0100;
}
.more-b.hsh {
  background: transparent;
  color: #A1A1A1;
  border: 1px solid #A1A1A1;
}
.more-b.hsh::after {
  background-color: #FF0100;
}
.more-b.hsh:hover {
  border-color: #FF0100;
  color: #fff;
}

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

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: -webkit-calc(70vh - 60px);
    padding-bottom: -moz-calc(70vh - 60px);
    padding-bottom: calc(70vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.202764977%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head2 {
  line-height: 6.25rem;
  position: relative;
  background: #fff;
}
.head .head2 .logo a img {
  height: 4.4375rem;
}
.head .head2 .logo a p {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-left: 1rem;
  font-weight: 700;
  color: #333;
}
.head .head2 .zywena .rhgxt {
  position: relative;
  padding: 0 1.5rem;
  line-height: 1em;
}
.head .head2 .zywena .rhgxt > a {
  background: #F8F8F8;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #EDEDED;
}
.head .head2 .zywena .rhgxt i {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FF0100;
}
.head .head2 .zywena .rhgxt .seca {
  position: absolute;
  left: 0;
  width: 100%;
  top: 4.25rem;
  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 .rhgxt .seca a {
  color: #333;
  display: block;
  line-height: 1.75em;
  font-size: 1rem;
  font-weight: 500;
}
.head .head2 .zywena .rhgxt .seca a:hover {
  color: #FF0100;
}
.head .head2 .zywena .rhgxt .seca a + a {
  border-top: 1px solid #333;
}
.head .head2 .sska {
  line-height: 1em;
}
.head .head2 .sska a {
  color: #fff;
  background: #FF0100;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #FF0100;
}
.head .head2 .sska a i {
  font-size: 1.125rem;
}
.head.sticky .head2 {
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.9);
}

#menu {
  margin-right: 1vw;
}
#menu .nav_a1 li {
  float: left;
  position: relative;
}
#menu .nav_a1 li a {
  display: block;
  color: #1B1C21;
  font-family: "Noto Sans SC";
}
#menu .nav_a1 li > a {
  font-size: 1.125rem;
  padding: 0 1.5625rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1680px) {
  #menu .nav_a1 li > a {
    padding: 0 1.35em;
  }
}
@media (max-width: 1366px) {
  #menu .nav_a1 li > a {
    padding: 0 0.8em;
  }
}
@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.5em;
  }
}
#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 li > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #FF0100;
  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 .sec {
  position: absolute;
  top: 100%;
  width: 150%;
  left: -25%;
  background: white;
  z-index: 9;
  text-align: center;
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
     -moz-transform: translateY(20px);
      -ms-transform: translateY(20px);
       -o-transform: translateY(20px);
          transform: translateY(20px);
}
#menu .nav_a1 li .sec a {
  font: 400 1rem/1.5em "Noto Sans SC";
  padding: 0.3em 0;
  color: #1B1C21;
}
#menu .nav_a1 li .sec a:hover {
  color: #FF0100;
}
#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: #FF0100;
}
#menu .nav_a1 li:nth-child(3) .sec, #menu .nav_a1 li:nth-child(4) .sec, #menu .nav_a1 li:nth-child(6) .sec {
  width: 200%;
  left: -50%;
}
#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: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
#menu .nav_a1 li:hover > a, #menu .nav_a1 li.active > a {
  color: #FF0100;
}
#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

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

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

.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 p, .m-bm-head .m-bm-head-box .m-bm-logo a p {
  color: #333;
  font-size: 1.25rem;
  margin-left: 0.75rem;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 38px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: "";
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

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

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

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}
.pc-banner .mySwipera {
  position: relative;
}
.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}
.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.pc-banner .mySwipera .swiper-slide .img > img.aimg {
  visibility: hidden;
}
@media (max-width: 990px) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg {
    visibility: inherit;
  }
}
.pc-banner .mySwipera .swiper-slide .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pc-banner .mySwipera .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%);
}
.pc-banner .mySwipera .banwez1 .tit {
  font: 700 3.75rem/1.25em "Noto Sans SC";
  position: relative;
  padding-bottom: 0.5em;
}
.pc-banner .mySwipera .banwez1 .tit::after {
  content: "";
  width: 2em;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
}
.pc-banner .mySwipera .banwez1 .tit::before {
  content: "";
  width: 1em;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  background: #FF0100;
  z-index: 1;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
  }
}
.pc-banner .mySwipera .banwez1 .p {
  font: 600 2rem/1.4em "Noto Sans SC";
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .p {
    font-size: 1.5rem;
    margin-top: 0.5em;
  }
}
.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 a.mouse {
  position: absolute;
  left: 0;
  bottom: 1.5625rem;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}
.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 500 0.875rem/1.5em "Montserrat";
  margin-top: 0.5em;
}
.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: 1px;
  height: 2rem;
  margin: 0 auto;
  position: relative;
}
.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
}

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

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

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

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

@-webkit-keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-moz-keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -moz-transform: scale(1.2);
         transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}

@-o-keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -o-transform: scale(1);
       transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -o-transform: scale(1.2);
       transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes banscaleDraw {
  /*Ã¥Â®Å¡Ã¤Â¹â€°Ã¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã£â‚¬ÂscaleDrewÃ¦ËœÂ¯Ã©Å“â‚¬Ã¨Â¦ÂÃ§Â»â€˜Ã¥Â®Å¡Ã¥Ë†Â°Ã©â‚¬â€°Ã¦â€¹Â©Ã¥â„¢Â¨Ã§Å¡â€žÃ¥â€¦Â³Ã©â€Â®Ã¥Â¸Â§Ã¥ÂÂÃ§Â§Â°*/
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    /*Ã¥Â¼â‚¬Ã¥Â§â€¹Ã¤Â¸ÂºÃ¥Å½Å¸Ã¥Â§â€¹Ã¥Â¤Â§Ã¥Â°Â*/
  }
  25% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    /*Ã¦â€Â¾Ã¥Â¤Â§1.1Ã¥â‚¬Â*/
  }
  50% {
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

/* Ã¥â€ºÂ¾Ã§â€°â€¡Ã¥Å Â¨Ã§â€Â» */
.fang {
  overflow: hidden;
  display: block;
}

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

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

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

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

.gong-p {
  color: #626262;
  font: 400 1.125rem/1.6em "Noto Sans SC";
  text-align: justify;
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}

.title1 {
  text-align: center;
}
.title1 .tit {
  color: #040000;
  font: 700 3.125rem/1.5em "Noto Sans SC";
  position: relative;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 2rem;
    text-wrap: balance;
  }
}
.title1 .tit::after {
  content: "";
  display: block;
  width: 1em;
  height: 0.25rem;
  background: #0453a2;
  margin: 0.5rem auto 0;
}
.title1 .ftit {
  color: #383838;
  font: 600 1.25rem/1.7em "Noto Sans SC";
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .title1 .ftit {
    font-size: 1rem;
    margin-top: 1rem;
    text-wrap: balance;
  }
}
.title1.bs .tit, .title1.bs .ftit {
  color: #fff;
}

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

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

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

@keyframes rotatedHalf1 {
  0% {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.cont1 {
  padding: 10.5rem 0 14.5625rem;
  background-position: center;
  background-repeat: no-repeat;
  -o-background-size: cover;
     background-size: cover;
}
@media (max-width: 768px) {
  .cont1 {
    padding: 2rem 0;
  }
}
.cont1 .a1v1 {
  margin-top: 6.875rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v1 .a1b1 {
  width: 47.8571428571%;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b1 {
    width: 100%;
  }
}
.cont1 .a1v1 .a1b1 .tit {
  color: #231815;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b1 .tit {
    font-size: 1.25rem;
  }
}
.cont1 .a1v1 .a1b1 .p {
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b1 .p {
    margin: 1rem 0;
    font-size: 1rem;
  }
}
.cont1 .a1v1 .a1b2 {
  width: 41.2857142857%;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.cont1 .a1v1 .a1b2 .a1b2c1 li {
  width: 50%;
  border-left: 2px solid #231815;
  position: relative;
  padding-left: 1.5rem;
}
.cont1 .a1v1 .a1b2 .a1b2c1 li:nth-child(n+3) {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 .a1b2c1 li:nth-child(n+3) {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v1 .a1b2 .a1b2c1 li::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  height: 50%;
  width: 2px;
  background: #FF0100;
  z-index: 1;
}
.cont1 .a1v1 .a1b2 .a1b2c1 li .data {
  color: #231815;
  font: 700 1.25rem/1.5em "Montserrat";
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 .a1b2c1 li .data {
    font-size: 1rem;
  }
}
.cont1 .a1v1 .a1b2 .a1b2c1 li .data span {
  font-size: 3.125rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1b2 .a1b2c1 li .data span {
    font-size: 2.5rem;
  }
}
.cont1 .a1v1 .a1b2 .a1b2c1 li .p {
  color: #231815;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5rem;
}

.flly-list1 li:nth-child(1) a.ast {
  -webkit-transform: translate(0rem, -27rem) rotate(0deg);
     -moz-transform: translate(0rem, -27rem) rotate(0deg);
      -ms-transform: translate(0rem, -27rem) rotate(0deg);
       -o-transform: translate(0rem, -27rem) rotate(0deg);
          transform: translate(0rem, -27rem) rotate(0deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(1) a.ast {
    -webkit-transform: translate(0rem, -23.5rem) rotate(0deg);
       -moz-transform: translate(0rem, -23.5rem) rotate(0deg);
        -ms-transform: translate(0rem, -23.5rem) rotate(0deg);
         -o-transform: translate(0rem, -23.5rem) rotate(0deg);
            transform: translate(0rem, -23.5rem) rotate(0deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(1) a.ast {
    -webkit-transform: translate(0vw, -35vw) rotate(0deg);
       -moz-transform: translate(0vw, -35vw) rotate(0deg);
        -ms-transform: translate(0vw, -35vw) rotate(0deg);
         -o-transform: translate(0vw, -35vw) rotate(0deg);
            transform: translate(0vw, -35vw) rotate(0deg);
  }
}

.flly-list1 li:nth-child(2) a.ast {
  -webkit-transform: translate(19.091883092rem, -19.091883092rem) rotate(45deg);
     -moz-transform: translate(19.091883092rem, -19.091883092rem) rotate(45deg);
      -ms-transform: translate(19.091883092rem, -19.091883092rem) rotate(45deg);
       -o-transform: translate(19.091883092rem, -19.091883092rem) rotate(45deg);
          transform: translate(19.091883092rem, -19.091883092rem) rotate(45deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(2) a.ast {
    -webkit-transform: translate(16.6170093579rem, -16.6170093579rem) rotate(45deg);
       -moz-transform: translate(16.6170093579rem, -16.6170093579rem) rotate(45deg);
        -ms-transform: translate(16.6170093579rem, -16.6170093579rem) rotate(45deg);
         -o-transform: translate(16.6170093579rem, -16.6170093579rem) rotate(45deg);
            transform: translate(16.6170093579rem, -16.6170093579rem) rotate(45deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(2) a.ast {
    -webkit-transform: translate(24.7487373415vw, -24.7487373415vw) rotate(45deg);
       -moz-transform: translate(24.7487373415vw, -24.7487373415vw) rotate(45deg);
        -ms-transform: translate(24.7487373415vw, -24.7487373415vw) rotate(45deg);
         -o-transform: translate(24.7487373415vw, -24.7487373415vw) rotate(45deg);
            transform: translate(24.7487373415vw, -24.7487373415vw) rotate(45deg);
  }
}

.flly-list1 li:nth-child(3) a.ast {
  -webkit-transform: translate(27rem, 0rem) rotate(90deg);
     -moz-transform: translate(27rem, 0rem) rotate(90deg);
      -ms-transform: translate(27rem, 0rem) rotate(90deg);
       -o-transform: translate(27rem, 0rem) rotate(90deg);
          transform: translate(27rem, 0rem) rotate(90deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(3) a.ast {
    -webkit-transform: translate(23.5rem, 0rem) rotate(90deg);
       -moz-transform: translate(23.5rem, 0rem) rotate(90deg);
        -ms-transform: translate(23.5rem, 0rem) rotate(90deg);
         -o-transform: translate(23.5rem, 0rem) rotate(90deg);
            transform: translate(23.5rem, 0rem) rotate(90deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(3) a.ast {
    -webkit-transform: translate(35vw, 0vw) rotate(90deg);
       -moz-transform: translate(35vw, 0vw) rotate(90deg);
        -ms-transform: translate(35vw, 0vw) rotate(90deg);
         -o-transform: translate(35vw, 0vw) rotate(90deg);
            transform: translate(35vw, 0vw) rotate(90deg);
  }
}

.flly-list1 li:nth-child(4) a.ast {
  -webkit-transform: translate(19.091883092rem, 19.091883092rem) rotate(135deg);
     -moz-transform: translate(19.091883092rem, 19.091883092rem) rotate(135deg);
      -ms-transform: translate(19.091883092rem, 19.091883092rem) rotate(135deg);
       -o-transform: translate(19.091883092rem, 19.091883092rem) rotate(135deg);
          transform: translate(19.091883092rem, 19.091883092rem) rotate(135deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(4) a.ast {
    -webkit-transform: translate(16.6170093579rem, 16.6170093579rem) rotate(135deg);
       -moz-transform: translate(16.6170093579rem, 16.6170093579rem) rotate(135deg);
        -ms-transform: translate(16.6170093579rem, 16.6170093579rem) rotate(135deg);
         -o-transform: translate(16.6170093579rem, 16.6170093579rem) rotate(135deg);
            transform: translate(16.6170093579rem, 16.6170093579rem) rotate(135deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(4) a.ast {
    -webkit-transform: translate(24.7487373415vw, 24.7487373415vw) rotate(135deg);
       -moz-transform: translate(24.7487373415vw, 24.7487373415vw) rotate(135deg);
        -ms-transform: translate(24.7487373415vw, 24.7487373415vw) rotate(135deg);
         -o-transform: translate(24.7487373415vw, 24.7487373415vw) rotate(135deg);
            transform: translate(24.7487373415vw, 24.7487373415vw) rotate(135deg);
  }
}

.flly-list1 li:nth-child(5) a.ast {
  -webkit-transform: translate(0rem, 27rem) rotate(180deg);
     -moz-transform: translate(0rem, 27rem) rotate(180deg);
      -ms-transform: translate(0rem, 27rem) rotate(180deg);
       -o-transform: translate(0rem, 27rem) rotate(180deg);
          transform: translate(0rem, 27rem) rotate(180deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(5) a.ast {
    -webkit-transform: translate(0rem, 23.5rem) rotate(180deg);
       -moz-transform: translate(0rem, 23.5rem) rotate(180deg);
        -ms-transform: translate(0rem, 23.5rem) rotate(180deg);
         -o-transform: translate(0rem, 23.5rem) rotate(180deg);
            transform: translate(0rem, 23.5rem) rotate(180deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(5) a.ast {
    -webkit-transform: translate(0vw, 35vw) rotate(180deg);
       -moz-transform: translate(0vw, 35vw) rotate(180deg);
        -ms-transform: translate(0vw, 35vw) rotate(180deg);
         -o-transform: translate(0vw, 35vw) rotate(180deg);
            transform: translate(0vw, 35vw) rotate(180deg);
  }
}

.flly-list1 li:nth-child(6) a.ast {
  -webkit-transform: translate(-19.091883092rem, 19.091883092rem) rotate(225deg);
     -moz-transform: translate(-19.091883092rem, 19.091883092rem) rotate(225deg);
      -ms-transform: translate(-19.091883092rem, 19.091883092rem) rotate(225deg);
       -o-transform: translate(-19.091883092rem, 19.091883092rem) rotate(225deg);
          transform: translate(-19.091883092rem, 19.091883092rem) rotate(225deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(6) a.ast {
    -webkit-transform: translate(-16.6170093579rem, 16.6170093579rem) rotate(225deg);
       -moz-transform: translate(-16.6170093579rem, 16.6170093579rem) rotate(225deg);
        -ms-transform: translate(-16.6170093579rem, 16.6170093579rem) rotate(225deg);
         -o-transform: translate(-16.6170093579rem, 16.6170093579rem) rotate(225deg);
            transform: translate(-16.6170093579rem, 16.6170093579rem) rotate(225deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(6) a.ast {
    -webkit-transform: translate(-24.7487373415vw, 24.7487373415vw) rotate(225deg);
       -moz-transform: translate(-24.7487373415vw, 24.7487373415vw) rotate(225deg);
        -ms-transform: translate(-24.7487373415vw, 24.7487373415vw) rotate(225deg);
         -o-transform: translate(-24.7487373415vw, 24.7487373415vw) rotate(225deg);
            transform: translate(-24.7487373415vw, 24.7487373415vw) rotate(225deg);
  }
}

.flly-list1 li:nth-child(7) a.ast {
  -webkit-transform: translate(-27rem, 0rem) rotate(270deg);
     -moz-transform: translate(-27rem, 0rem) rotate(270deg);
      -ms-transform: translate(-27rem, 0rem) rotate(270deg);
       -o-transform: translate(-27rem, 0rem) rotate(270deg);
          transform: translate(-27rem, 0rem) rotate(270deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(7) a.ast {
    -webkit-transform: translate(-23.5rem, 0rem) rotate(270deg);
       -moz-transform: translate(-23.5rem, 0rem) rotate(270deg);
        -ms-transform: translate(-23.5rem, 0rem) rotate(270deg);
         -o-transform: translate(-23.5rem, 0rem) rotate(270deg);
            transform: translate(-23.5rem, 0rem) rotate(270deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(7) a.ast {
    -webkit-transform: translate(-35vw, 0vw) rotate(270deg);
       -moz-transform: translate(-35vw, 0vw) rotate(270deg);
        -ms-transform: translate(-35vw, 0vw) rotate(270deg);
         -o-transform: translate(-35vw, 0vw) rotate(270deg);
            transform: translate(-35vw, 0vw) rotate(270deg);
  }
}

.flly-list1 li:nth-child(8) a.ast {
  -webkit-transform: translate(-19.091883092rem, -19.091883092rem) rotate(315deg);
     -moz-transform: translate(-19.091883092rem, -19.091883092rem) rotate(315deg);
      -ms-transform: translate(-19.091883092rem, -19.091883092rem) rotate(315deg);
       -o-transform: translate(-19.091883092rem, -19.091883092rem) rotate(315deg);
          transform: translate(-19.091883092rem, -19.091883092rem) rotate(315deg);
}
@media (max-width: 1024px) {
  .flly-list1 li:nth-child(8) a.ast {
    -webkit-transform: translate(-16.6170093579rem, -16.6170093579rem) rotate(315deg);
       -moz-transform: translate(-16.6170093579rem, -16.6170093579rem) rotate(315deg);
        -ms-transform: translate(-16.6170093579rem, -16.6170093579rem) rotate(315deg);
         -o-transform: translate(-16.6170093579rem, -16.6170093579rem) rotate(315deg);
            transform: translate(-16.6170093579rem, -16.6170093579rem) rotate(315deg);
  }
}
@media (max-width: 768px) {
  .flly-list1 li:nth-child(8) a.ast {
    -webkit-transform: translate(-24.7487373415vw, -24.7487373415vw) rotate(315deg);
       -moz-transform: translate(-24.7487373415vw, -24.7487373415vw) rotate(315deg);
        -ms-transform: translate(-24.7487373415vw, -24.7487373415vw) rotate(315deg);
         -o-transform: translate(-24.7487373415vw, -24.7487373415vw) rotate(315deg);
            transform: translate(-24.7487373415vw, -24.7487373415vw) rotate(315deg);
  }
}

.cont2 {
  background: -webkit-linear-gradient(top, #D1D1D1 -28.75%, #FFF 66.52%) #D9D9D9;
  background: -moz-linear-gradient(top, #D1D1D1 -28.75%, #FFF 66.52%) #D9D9D9;
  background: -o-linear-gradient(top, #D1D1D1 -28.75%, #FFF 66.52%) #D9D9D9;
  background: linear-gradient(180deg, #D1D1D1 -28.75%, #FFF 66.52%) #D9D9D9;
  position: relative;
  padding: 9.375rem 9.375rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cont2 {
    padding: 3rem 0 0;
  }
}
.cont2 .picMarquee-left {
  display: block;
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: 100%;
  font-size: 0;
}
@media (max-width: 768px) {
  .cont2 .picMarquee-left {
    top: 1.5rem;
  }
}
.cont2 .picMarquee-left li {
  width: 22rem;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .cont2 .picMarquee-left li {
    width: 15rem;
  }
}
.cont2 .picMarquee-left li img {
  width: 100%;
}
.cont2 .a2v1 {
  border: 2px dashed #7E8F9A;
  aspect-ratio: 16/16;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  margin-bottom: -50.5%;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cont2 .a2v1 {
    width: 100%;
  }
}
.cont2 .a2v1 .a2c1 {
  background: #fff;
  width: 45.1428571429%;
  aspect-ratio: 16/16;
  border-radius: 50%;
  text-align: center;
  color: #757575;
}
.cont2 .a2v1 .a2c1 .a2d1 {
  margin-top: 19%;
  display: none;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c1 .a2d1 {
    margin-top: 21%;
  }
}
.cont2 .a2v1 .a2c1 .a2d1 .tit {
  color: #FF0100;
  font: 600 1.8rem/1.35em "Noto Sans SC";
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c1 .a2d1 .tit {
    font-size: 1rem;
  }
}
.cont2 .a2v1 .a2c1 .a2d1 p {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.5em;
  margin-top: 1rem;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c1 .a2d1 p {
    font-size: 0.75rem;
    display: none;
  }
}
.cont2 .a2v1 .a2c2 {
  margin-top: 50%;
}
.cont2 .a2v1 .a2c2::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  border: 2px dashed #9F9F9F;
  aspect-ratio: 16/16;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c2::after {
    border-width: 1px;
  }
}
.cont2 .a2v1 .a2c2 .flly-list1 {
  -webkit-transform: rotate(-67.5deg);
     -moz-transform: rotate(-67.5deg);
      -ms-transform: rotate(-67.5deg);
       -o-transform: rotate(-67.5deg);
          transform: rotate(-67.5deg);
  z-index: 9;
  position: relative;
}
.cont2 .a2v1 .a2c2 .flly-list1 li {
  width: 34.5%;
  z-index: 1;
}
.cont2 .a2v1 .a2c2 .flly-list1 li:nth-child(4) a.ast::before {
  display: none;
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast {
  display: block;
  position: relative;
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -25%;
  background: #9F9F9F;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1366px) {
  .cont2 .a2v1 .a2c2 .flly-list1 li a.ast::after {
    top: -18%;
  }
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c2 .flly-list1 li a.ast::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast::before {
  content: "";
  display: block;
  position: absolute;
  left: 78%;
  top: 124%;
  background: #FF0100;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1366px) {
  .cont2 .a2v1 .a2c2 .flly-list1 li a.ast::before {
    top: 131%;
  }
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c2 .flly-list1 li a.ast::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast b {
  display: block;
  font-size: 0;
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast b img {
  width: 100%;
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast .pa {
  text-align: center;
  color: #fff;
  font: 500 1.5rem/1.4em "Noto Sans SC";
  top: 45%;
}
@media (max-width: 768px) {
  .cont2 .a2v1 .a2c2 .flly-list1 li a.ast .pa {
    font-size: 0.75rem;
  }
}
.cont2 .a2v1 .a2c2 .flly-list1 li a.ast:hover b img {
  -webkit-filter: invert(25%) sepia(92%) saturate(7458%) hue-rotate(357deg) brightness(91%) contrast(121%);
          filter: invert(25%) sepia(92%) saturate(7458%) hue-rotate(357deg) brightness(91%) contrast(121%);
}

.cont3 {
  padding: 10.5rem 0 16.875rem;
  position: relative;
  aspect-ratio: 1920/920;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 0 0 2.5rem;
    aspect-ratio: inherit;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cont3 .wh {
    width: 100%;
  }
}
.cont3 .a3c1 li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cont3 .a3c1 li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cont3 .a3c2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 30.46875%;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  background: #222222;
  padding: 11.875rem 0 7.1875rem;
  padding-left: 13.5416666667%;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1366px) {
  .cont3 .a3c2 {
    padding: 8rem 0 7.1875rem;
    padding-left: 5.78125%;
  }
}
@media (max-width: 768px) {
  .cont3 .a3c2 {
    width: 100%;
    position: sticky;
    border: none;
    padding: 1.5rem 4%;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cont3 .a3c2 li {
    width: 50%;
  }
}
.cont3 .a3c2 li .tit {
  color: #FFFFFF;
  font: 400 1.25rem/1.5em "Noto Sans SC";
  padding: 0.75em 0;
  text-align: right;
  padding-right: 14%;
  position: relative;
}
@media (max-width: 768px) {
  .cont3 .a3c2 li .tit {
    font-size: 1rem;
    padding: 0.5em 0;
    text-align: center;
  }
}
.cont3 .a3c2 li .tit::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 2px;
  height: 1em;
  background: #fff;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
.cont3 .a3c2 li.on .tit {
  background: -webkit-linear-gradient(right, #FF0100 0%, rgba(255, 1, 0, 0) 113.15%);
  background: -moz-linear-gradient(right, #FF0100 0%, rgba(255, 1, 0, 0) 113.15%);
  background: -o-linear-gradient(right, #FF0100 0%, rgba(255, 1, 0, 0) 113.15%);
  background: linear-gradient(270deg, #FF0100 0%, rgba(255, 1, 0, 0) 113.15%);
}
.cont3 .a3c2 li.on .tit::after {
  display: block;
}
@media (max-width: 768px) {
  .cont3 .a3c2 li.on .tit::after {
    display: none;
  }
}
.cont3 .a3c3 {
  margin-left: 42.8571428571%;
  position: relative;
  z-index: 1;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .cont3 .a3c3 {
    margin-left: 0;
    margin-top: 1.5rem;
  }
}
.cont3 .a3c3 li .cont-p {
  color: #fff;
}
.cont3 .a3c3 li .cont-p .tit {
  font: 500 2rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .cont3 .a3c3 li .cont-p .tit {
    font-size: 1.35rem;
  }
}
.cont3 .a3c3 li .cont-p .p {
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .cont3 .a3c3 li .cont-p .p {
    font-size: 1rem;
    margin: 1rem 0 1.5rem;
  }
}

.up-down-move {
  -webkit-animation-duration: 2.3s;
     -moz-animation-duration: 2.3s;
       -o-animation-duration: 2.3s;
          animation-duration: 2.3s;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: bottom;
     -moz-transform-origin: bottom;
      -ms-transform-origin: bottom;
       -o-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation-name: up-down-move;
     -moz-animation-name: up-down-move;
       -o-animation-name: up-down-move;
          animation-name: up-down-move;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes up-down-move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-moz-keyframes up-down-move {
  0% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-0.5rem);
         transform: translateY(-0.5rem);
  }
  100% {
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}

@-o-keyframes up-down-move {
  0% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
  50% {
    -o-transform: translateY(-0.5rem);
       transform: translateY(-0.5rem);
  }
  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes up-down-move {
  0% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-0.5rem);
       -moz-transform: translateY(-0.5rem);
         -o-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}
.cont4 {
  padding: 8.125rem 0 5rem;
}
@media (max-width: 768px) {
  .cont4 {
    padding: 2.5rem 0 0;
  }
}

.a4v1 {
  margin: 4rem 8.5714285714% 0;
  position: relative;
}
@media (max-width: 768px) {
  .a4v1 {
    margin: 1.5rem 0 0;
  }
}
.a4v1 u {
  display: block;
  font-size: 0;
}
.a4v1 u img {
  width: 100%;
}
.a4v1 .a4_list1 li {
  position: absolute;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: bottom;
     -moz-transform-origin: bottom;
      -ms-transform-origin: bottom;
       -o-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation-name: up-down-move;
     -moz-animation-name: up-down-move;
       -o-animation-name: up-down-move;
          animation-name: up-down-move;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;
}
.a4v1 .a4_list1 li a.block {
  position: relative;
}
.a4v1 .a4_list1 li a.block i {
  display: block;
  font-size: 0;
  width: 1.4375rem;
}
.a4v1 .a4_list1 li a.block i img {
  width: 100%;
}
.a4v1 .a4_list1 li a.block .wenata {
  position: absolute;
  left: 100%;
  bottom: 100%;
  width: 22rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
  display: none;
}
@media (max-width: 768px) {
  .a4v1 .a4_list1 li a.block .wenata {
    width: auto;
    padding: 0.5rem;
  }
}
.a4v1 .a4_list1 li a.block .wenata .tit {
  color: #383838;
  font-weight: 600;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .a4v1 .a4_list1 li a.block .wenata .tit {
    font-size: 1rem;
    white-space: nowrap;
  }
}
.a4v1 .a4_list1 li a.block .wenata .p {
  color: #999;
  font-size: 0.875rem;
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  .a4v1 .a4_list1 li a.block .wenata .p {
    display: none;
  }
}
.a4v1 .a4_list1 li:nth-child(1) {
  right: 22%;
  top: 31%;
  -webkit-animation-duration: 2.3s;
     -moz-animation-duration: 2.3s;
       -o-animation-duration: 2.3s;
          animation-duration: 2.3s;
}
.a4v1 .a4_list1 li:nth-child(2) {
  right: 21%;
  top: 34%;
  -webkit-animation-duration: 1.8s;
     -moz-animation-duration: 1.8s;
       -o-animation-duration: 1.8s;
          animation-duration: 1.8s;
}
.a4v1 .a4_list1 li:nth-child(3) {
  left: 20%;
  top: 30%;
  -webkit-animation-duration: 1.5s;
     -moz-animation-duration: 1.5s;
       -o-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
.a4v1 .a4_list1 li:nth-child(4) {
  right: 18%;
  top: 31%;
  -webkit-animation-duration: 2s;
     -moz-animation-duration: 2s;
       -o-animation-duration: 2s;
          animation-duration: 2s;
}
.a4v1 .a4_list1 li:nth-child(5) {
  left: 47%;
  top: 20%;
  -webkit-animation-duration: 2.3s;
     -moz-animation-duration: 2.3s;
       -o-animation-duration: 2.3s;
          animation-duration: 2.3s;
}
.a4v1 .a4_list1 li:hover {
  z-index: 9;
}
.a4v1 .a4_list1 li:hover a.block .wenata {
  display: block;
}

.cont5 {
  padding: 9.375rem 0 7rem;
  background: url(../images/a1055588c65ecef02ebce4fdb2a503dd.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  margin-top: -10rem;
}
@media (max-width: 768px) {
  .cont5 {
    margin-top: -2rem;
    padding: 2rem 0;
  }
}
.cont5 .a5v1 {
  margin-top: 3.4375rem;
}
@media (max-width: 768px) {
  .cont5 .a5v1 {
    margin-top: 1rem;
  }
}
.cont5 .a5v1 .a5b1 {
  width: 65.7142857143%;
}
@media (max-width: 768px) {
  .cont5 .a5v1 .a5b1 {
    width: 100%;
  }
}
.cont5 .a5v1 .a5b1 li {
  width: 47.8260869565%;
}
@media (max-width: 768px) {
  .cont5 .a5v1 .a5b1 li {
    width: 100%;
    margin-top: 1rem;
  }
}
.cont5 .a5v1 .a5b1 li a.img {
  display: block;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}
.cont5 .a5v1 .a5b1 li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.cont5 .a5v1 .a5b1 li a.img i img {
  width: 100%;
}
.cont5 .a5v1 .a5b1 li a.img .cont-p {
  padding: 1.5rem 1.5rem 2.5rem;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .cont5 .a5v1 .a5b1 li a.img .cont-p {
    padding: 1.5rem;
  }
}
.cont5 .a5v1 .a5b1 li a.img .cont-p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.375rem;
  background: #FF0100;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform-origin: left;
     -moz-transform-origin: left;
      -ms-transform-origin: left;
       -o-transform-origin: left;
          transform-origin: left;
}
.cont5 .a5v1 .a5b1 li a.img .cont-p .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.cont5 .a5v1 .a5b1 li a.img .cont-p .tit {
  color: #383838;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: 600;
  margin-top: 0.75em;
  height: 2.8em;
  overflow: hidden;
}
.cont5 .a5v1 .a5b1 li a.img:hover .cont-p::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.cont5 .a5v1 .a5b2 {
  width: 31.4285714286%;
  background: #fff;
  padding: 1rem 1.8rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .cont5 .a5v1 .a5b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.cont5 .a5v1 .a5b2 li + li a.img {
  border-top: 1px solid #F1F0F0;
}
.cont5 .a5v1 .a5b2 li a.img {
  display: block;
}
.cont5 .a5v1 .a5b2 li a.img .cont-p {
  padding: 1.5rem 0;
  position: relative;
}
.cont5 .a5v1 .a5b2 li a.img .cont-p .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.cont5 .a5v1 .a5b2 li a.img .cont-p .tit {
  color: #383838;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: 600;
  margin-top: 0.7em;
  height: 2.8em;
  overflow: hidden;
}
.cont5 .a5v1 .a5b2 li a.img:hover .cont-p .tit {
  color: #FF0100;
}
.cont5 a.more-b {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cont5 a.more-b {
    margin-top: 1.5rem;
  }
}

.cont6 {
  padding: 19.875rem 0 21rem;
  background-position: center;
  background-repeat: no-repeat;
  -o-background-size: cover;
     background-size: cover;
}
@media (max-width: 768px) {
  .cont6 {
    padding: 5rem 0;
  }
}
.cont6 a.more-b {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cont6 a.more-b {
    margin-top: 1.5rem;
  }
}

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

.foot-fot {
  position: relative;
  background: #222222;
}
.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 4.375rem 0 3.75rem;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .fo-a1 {
  width: 75.7142857143%;
}
.foot-fot .foota1 .fo-a1 .fo-a1c1 {
  width: 16.6666666667%;
}
.foot-fot .foota1 .fo-a1 .fo-a1c1:nth-child(n+7) {
  margin-top: 1rem;
}
.foot-fot .foota1 .foot-tit {
  color: #FFFFFF;
  font: 500 1rem/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 > a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font: 400 0.875rem/2em "Noto Sans SC";
}
.foot-fot .foota1 .dseca > a:hover {
  color: #FF0100;
}
.foot-fot .foota1 .dseca p {
  color: rgba(255, 255, 255, 0.6);
  font: 400 0.875rem/1.8em "Noto Sans SC";
}
.foot-fot .foota1 .fo-a2 {
  width: 23.2857142857%;
}
.foot-fot .foota1 .fo-a2 .d_sdha {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .d_sdha li {
  margin-top: 0.5rem;
}
.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);
}
.foot-fot .foota1 .fo-a2 .d_sdha li .cont-b b {
  display: inline-block;
  color: #fff;
  font: 700 1.125rem/1.5em "Montserrat";
}
.foot-fot .foota1 .fo-a2 .d_sdha li .cont-b span {
  font-weight: 500;
}
.foot-fot .foota1 .fo-a2 .d_sdha li .cont-b p {
  font: 400 0.875rem/1.5em "Noto Sans SC";
}
.foot-fot .foota1 .fo-a2 .fo-a2c2 {
  margin-top: 2rem;
}
.foot-fot .foota1 .fo-a2 .fo-a2c2 .social-share {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .fo-a2c2 .social-share a {
  color: rgba(255, 255, 255, 0.6);
  border: none;
  background: #3F3F3F;
  width: 2.3125rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  font-size: 1.125rem;
}
.foot-fot .foota1 .fo-a2 .fo-a2c2 .social-share a:hover {
  background: #FF0100;
  color: #fff;
}
.foot-fot .foota2 {
  color: rgba(255, 255, 255, 0.6);
  font: 400 0.875rem/1.65em "Noto Sans SC";
  padding: 0.8em 0;
  border-top: 1px solid rgba(158, 158, 158, 0.5);
}
@media (max-width: 990px) {
  .foot-fot .foota2 {
    border-top: none;
  }
}
.foot-fot .foota2 a {
  color: rgba(255, 255, 255, 0.6);
}
.foot-fot .foota2 a:hover {
  color: white;
}
.foot-fot .foota2 p + p {
  margin-left: 0.875rem;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}
.foot-fot .foota3 {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5em;
  padding-bottom: 1.5rem;
}
@media (max-width: 990px) {
  .foot-fot .foota3 {
    display: none;
  }
}
.foot-fot .foota3 a {
  display: inline-block;
  background: #3F3F3F;
  color: #fff;
  font: 400 0.875rem/3.125rem "Noto Sans SC";
  padding: 0 3em;
  border-radius: 1.5625rem;
  margin-left: 1.5rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.foot-fot .foota3 a:hover {
  background: #FF0100;
  color: #fff;
}
.foot-fot .foota3 a + a {
  margin-left: 1rem;
}

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

@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: #FFFFFF;
  border-radius: 50%;
  line-height: 3.5rem;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
}
.zd_erha li > a i {
  width: 100%;
  height: 100%;
}
.zd_erha li > a i img {
  height: 1.75rem;
}
.zd_erha li:nth-child(1) > a {
  background: #FF0100;
}
.zd_erha li:nth-child(2) > a {
  background: rgba(0, 0, 0, 0.4);
}
.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;
  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: #FF0100;
  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: #FF0100;
  border-color: #FF0100;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}
@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.nav-page li {
  padding-bottom: 1em;
}
.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}
.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "Noto Sans SC";
  color: #333;
}
@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}
.nav-page li .sec {
  margin-top: 0.5em;
}
.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "Noto Sans SC";
  color: #777;
  margin-right: 1em;
}
.nav-page li .sec a:hover {
  color: #FF0100;
}

@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: #FF0100;
  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*/
.iconfont1 {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.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;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font: 700 2.75rem/1.25em "Noto Sans SC";
  position: relative;
  padding-bottom: 0.5em;
  text-transform: uppercase;
  font-family: "Arial";
}
.nbanner .nbanner-wen1 .banner-cont .p1::after {
  content: "";
  width: 2em;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
}
.nbanner .nbanner-wen1 .banner-cont .p1::before {
  content: "";
  width: 1em;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  background: #ff8800;
  z-index: 1;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p2 {
  font: 100 1.4rem/1.4em "Noto Sans SC";
  margin-top: 1.5rem;
  white-space: pre-wrap;
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1.125rem;
    margin-top: 0.75em;
    font-weight: 400;
  }
}
.nbanner .mbx-cont {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1rem;
}
.nbanner .mbx-cont .ajhhsd {
  padding: 0.45rem 0;
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd i {
  margin-right: 0.2rem;
}
.nbanner .mbx-cont .ajhhsd a {
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd a:hover {
  color: rgba(255, 1, 0, 0.65);
}
.nbanner a.mouse1 {
  position: absolute;
  left: 0;
  bottom: 1.5625rem;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}
@media (max-width: 768px) {
  .nbanner a.mouse1 {
    display: none;
  }
}
.nbanner a.mouse1 p {
  color: #FFFFFF;
  font: 500 0.875rem/1.5em "Montserrat";
  margin-top: 0.5em;
}
.nbanner a.mouse1 .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: 1px;
  height: 2rem;
  margin: 0 auto;
  position: relative;
}
.nbanner a.mouse1 .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
  left: 0;
  top: 6.25rem;
  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;
  white-space: nowrap;
}
.n_mbx .n_src.jast-a {
  -webkit-mask: -webkit-linear-gradient(left, #000 70%, transparent);
          mask: linear-gradient(90deg, #000 70%, transparent);
  padding-right: 7rem;
}
@media (max-width: 990px) {
  .n_mbx .n_src.jast-a {
    padding-right: 2rem;
  }
}
.n_mbx .n_src.jast-a:hover {
  cursor: ew-resize;
}
.n_mbx .n_src::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.n_mbx .n_src::-webkit-scrollbar-track {
  border-radius: 10px;
}
.n_mbx .n_src::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
.n_mbx .n_src li {
  display: inline-block;
}
.n_mbx .n_src li + li {
  margin-left: 3.75rem;
}
@media (max-width: 768px) {
  .n_mbx .n_src li + li {
    margin-left: 1.5rem;
  }
}
.n_mbx .n_src li a {
  display: block;
  color: #666666;
  font: 500 1rem/3.125rem "Noto Sans SC";
  position: relative;
  text-transform: uppercase;
  padding: 0.85rem 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.n_mbx .n_src li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #FF0100;
  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: #FF0100;
}
.n_mbx .n_src li:hover a::after, .n_mbx .n_src li.active a::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

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

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

#abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
  height: 6.25rem;
  margin-top: -6.25rem;
}
@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny-tit .entit {
  color: #535353;
  font: 700 1.5rem/1.2em "Montserrat";
  text-transform: uppercase;
}
.ny-tit .tit {
  color: #535353;
  font: 600 2.5rem/1.3em "Noto Sans SC";
}
@media (max-width: 768px) {
  .ny-tit .tit {
    font-size: 1.8rem;
  }
}

.abt-cont1 {
  padding: 5.9375rem 0 6.875rem;
}
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 2rem 0;
  }
}
.abt-cont1 .abt-a1v1 {
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 {
    margin-top: 1.5rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a1b1 {
  width: 48.1428571429%;
  color: #666666;
  font: 400 1.125rem/1.65em "Noto Sans SC";
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b1 {
    width: 100%;
    font-size: 1rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a1b2 {
  width: 45.4285714286%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b2 {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.abt-cont1 .abt-a1v1 .abt-a1b2 .img {
  display: block;
  overflow: hidden;
}
.abt-cont1 .abt-a1v1 .abt-a1b2 .img img {
  width: 100%;
}

.abt-cont2 {
  padding: 5.625rem 0 4.375rem;
  background: #F8F8F8;
  text-align: center;
}
@media (max-width: 768px) {
  .abt-cont2 {
    padding: 3rem 0;
  }
}
.abt-cont2 .p {
  color: #666666;
  font: 400 1.5rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .abt-cont2 .p {
    font-size: 1.25rem;
  }
}
.abt-cont2 a.more-b {
  margin-top: 1.65rem;
}
@media (max-width: 768px) {
  .abt-cont2 a.more-b {
    margin-top: 1.25rem;
  }
}

.abt-cont3 {
  background: url(../images/fdfac4f3bfea44ae50e246cde15ad7a8.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  background-attachment: fixed;
  padding: 7.125rem 0 10.3125rem;
}
@media (max-width: 768px) {
  .abt-cont3 {
    padding: 3rem 0;
    background-attachment: inherit;
  }
}
.abt-cont3 .abt-a3_list1 {
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 {
    margin-top: 0;
  }
}
.abt-cont3 .abt-a3_list1 li {
  width: 31.5714285714%;
  aspect-ratio: 16/16;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_list1 li {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.abt-cont3 .abt-a3_list1 li a.block {
  width: 100%;
  text-align: center;
  color: #FFF;
  padding: 0 8%;
}
.abt-cont3 .abt-a3_list1 li a.block .entitas {
  font-size: 1.5rem;
  line-height: 1.15em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.75rem 0;
  position: relative;
}
.abt-cont3 .abt-a3_list1 li a.block .entitas::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4rem;
  height: 1px;
  background: #fff;
}
.abt-cont3 .abt-a3_list1 li a.block .entitas::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4rem;
  height: 1px;
  background: #fff;
}
.abt-cont3 .abt-a3_list1 li a.block .tit {
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
.abt-cont3 .abt-a3_list1 li a.block .p {
  font-size: 1.125rem;
  line-height: 1.5em;
  text-align: left;
  text-align: justify;
  margin-top: 1rem;
  overflow: hidden;
  height: 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.abt-cont3 .abt-a3_list1 li:hover a.block .p {
  height: 7.5em;
}

.gong-jt > div {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #E6E6E6;
  background: #fff;
  border-radius: 50%;
}

.gong-jt > div i {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
}

.gong-jt > div:hover {
  background: #FF0100;
  border-color: #FF0100;
}

.gong-jt > div:hover i {
  color: #fff;
}

.abt-cont4 {
  padding: 7.0625rem 0 4.625rem;
}
@media (max-width: 768px) {
  .abt-cont4 {
    padding: 2rem 0;
  }
}
.abt-cont4 .fzlc {
  position: relative;
  margin-top: 4.875rem;
}
@media (max-width: 768px) {
  .abt-cont4 .fzlc {
    margin-top: 1.5rem;
  }
}
.abt-cont4 .fzlc .wehas {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86.4583333333%;
  z-index: 1;
  background: #EAEAEA;
  font-size: 0;
}
@media (max-width: 768px) {
  .abt-cont4 .fzlc .wehas {
    display: none;
  }
}
.abt-cont4 .fzlc .wehas img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.abt-cont4 .fzlc .wehas::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: 25%;
  height: 90%;
  background: #FF0100;
}
.abt-cont4 .fzlc .fzlc-as {
  overflow: hidden;
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .abt-cont4 .fzlc .fzlc-as {
    padding-top: 0;
  }
}
.abt-cont4 .fzlc .mySwiper11a {
  overflow: visible;
  width: 25%;
}
@media (max-width: 768px) {
  .abt-cont4 .fzlc .mySwiper11a {
    width: 100%;
    overflow: hidden;
  }
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide {
  padding-bottom: 7.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .abt-cont4 .fzlc .mySwiper11a .swiper-slide {
    padding-bottom: 0;
  }
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide .cont {
  position: relative;
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide .cont::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  bottom: 0;
  height: -webkit-calc(100% - 3rem);
  height: -moz-calc(100% - 3rem);
  height: calc(100% - 3rem);
  background: #D9D9D9;
  width: 1px;
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide .cont b {
  display: block;
  color: #535353;
  font: 700 1.625rem/1.5em "Montserrat";
  padding-left: 2rem;
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide .cont b::after {
  content: "";
  width: 1.1875rem;
  height: 1.1875rem;
  position: absolute;
  left: 0;
  top: 0.4em;
  border: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .abt-cont4 .fzlc .mySwiper11a .swiper-slide .cont b {
    font-size: 2rem;
  }
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide .cont .p {
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .abt-cont4 .fzlc .mySwiper11a .swiper-slide.swiper-slide-active ~ .swiper-slide .cont {
    -webkit-transform: translateY(-4rem);
       -moz-transform: translateY(-4rem);
        -ms-transform: translateY(-4rem);
         -o-transform: translateY(-4rem);
            transform: translateY(-4rem);
  }
  .abt-cont4 .fzlc .mySwiper11a .swiper-slide.swiper-slide-active ~ .swiper-slide ~ .swiper-slide .cont {
    -webkit-transform: translateY(-8rem);
       -moz-transform: translateY(-8rem);
        -ms-transform: translateY(-8rem);
         -o-transform: translateY(-8rem);
            transform: translateY(-8rem);
  }
  .abt-cont4 .fzlc .mySwiper11a .swiper-slide.swiper-slide-active ~ .swiper-slide ~ .swiper-slide ~ .swiper-slide .cont {
    -webkit-transform: translateY(-4rem);
       -moz-transform: translateY(-4rem);
        -ms-transform: translateY(-4rem);
         -o-transform: translateY(-4rem);
            transform: translateY(-4rem);
  }
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide.swiper-slide-active .cont b {
  color: #FF0100;
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide.swiper-slide-active .cont b span {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.abt-cont4 .fzlc .mySwiper11a .swiper-slide.swiper-slide-active .cont b::after {
  background: #FF0100;
  border-color: #FF0100;
}
.abt-cont4 .ahxwas_a3 {
  position: relative;
  margin-top: 3.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .abt-cont4 .ahxwas_a3 {
    margin-top: 1rem;
  }
}
.abt-cont4 .ahxwas_a3 .pra {
  position: relative;
}
.abt-cont4 .ahxwas_a3 .pra::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  z-index: -1;
}
@media (max-width: 768px) {
  .abt-cont4 .ahxwas_a3 .gong-jt {
    display: none;
  }
}
.abt-cont4 .ahxwas_a3 .gong-jt > div {
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}
.abt-cont4 .ahxwas_a3 .gong-jt .swiper-button-next1 {
  right: 0%;
}
.abt-cont4 .ahxwas_a3 .gong-jt .swiper-button-prev1 {
  left: 0%;
}
.abt-cont4 .ahxwas_a3 .mySwiper1a .xhasz {
  text-align: center;
  cursor: pointer;
}
.abt-cont4 .ahxwas_a3 .mySwiper1a .xhasz i {
  width: 1rem;
  height: 1rem;
  margin: 0 auto;
  display: block;
  background: #F5F5F5;
  border-radius: 50%;
  border: 1px solid #868686;
}
.abt-cont4 .ahxwas_a3 .mySwiper1a .xhasz .szxds {
  color: #000000;
  font: 600 1.325rem/1.5em "Montserrat";
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .abt-cont4 .ahxwas_a3 .mySwiper1a .xhasz .szxds {
    font-size: 1.25rem;
  }
}
.abt-cont4 .ahxwas_a3 .mySwiper1a .swiper-slide-thumb-active .xhasz i {
  background: #FF0100;
}
.abt-cont4 .ahxwas_a3 .mySwiper1a .swiper-slide-thumb-active .xhasz .szxds {
  color: #FF0100;
}
@media (max-width: 768px) {
  .abt-cont4 .ahxwas_a3 .jtxas {
    display: none;
  }
}
.abt-cont4 .ahxwas_a3 .jtxas > div {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  border: 1px solid #ABABAB;
  position: absolute;
  top: 15%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.abt-cont4 .ahxwas_a3 .jtxas > div.swiper-button-next1 {
  right: -5%;
}
.abt-cont4 .ahxwas_a3 .jtxas > div.swiper-button-prev1 {
  left: -5%;
}
.abt-cont4 .ahxwas_a3 .jtxas > div i {
  color: #ABABAB;
  font-size: 0.875rem;
}
.abt-cont4 .ahxwas_a3 .jtxas > div:hover {
  background: #5F83C2;
  border-color: #5F83C2;
}
.abt-cont4 .ahxwas_a3 .jtxas > div:hover i {
  color: #fff;
}

.abt-cont5 {
  position: relative;
}
.abt-cont5 > u {
  display: block;
}
.abt-cont5 > u img {
  width: 100%;
}
.abt-cont5 .a5_v1 {
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .abt-cont5 .a5_v1 {
    padding-top: 2rem;
    position: static;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
    padding-bottom: 1.5rem;
  }
}
.abt-cont5 .a5_v1 .cont-p {
  margin-top: 12rem;
}
@media (max-width: 768px) {
  .abt-cont5 .a5_v1 .cont-p {
    margin-top: 1.5rem;
  }
}
.abt-cont5 .a5_v1 .cont-p .txt {
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  width: 34%;
  text-align: justify;
}
@media (max-width: 768px) {
  .abt-cont5 .a5_v1 .cont-p .txt {
    width: 100%;
  }
}
.abt-cont5 .a5_v1 .cont-p a.more-b {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .abt-cont5 .a5_v1 .cont-p a.more-b {
    margin-top: 1rem;
  }
}

.zzry-body {
  background: #FAFAFA;
}

.zzry-list {
  margin: 0 -1.5%;
  margin-top: 3rem;
}
@media (max-width: 990px) {
  .zzry-list {
    margin: 0 -1%;
  }
}
@media (max-width: 768px) {
  .zzry-list {
    margin-top: 1.5rem;
  }
}
.zzry-list li {
  width: 25%;
  margin-top: 1.4rem;
}
@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%;
  }
}
.zzry-list li a.block {
  display: block;
}
.zzry-list li a.block .img {
  width: 100%;
  overflow: hidden;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.07);
  border-radius: 0.2rem;
}
.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: 400 1.125rem/1.5em "Noto Sans SC";
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  .zzry-list li a.block h2 {
    font-size: 1rem;
  }
}

.gongt-txt {
  color: #666666;
  font: 400 1rem/1.6em "Noto Sans SC";
}

.zc-cont1 {
  padding: 5.875rem 0;
}
@media (max-width: 768px) {
  .zc-cont1 {
    padding: 2rem 0;
  }
}
.zc-cont1 .zc-a1v1 {
  margin-top: 3.875rem;
}
@media (max-width: 768px) {
  .zc-cont1 .zc-a1v1 {
    margin-top: 1.5rem;
  }
}
.zc-cont1 .zc-a1v1 .zc-a1b1 {
  width: 41.2857142857%;
}
@media (max-width: 768px) {
  .zc-cont1 .zc-a1v1 .zc-a1b1 {
    width: 100%;
  }
}
.zc-cont1 .zc-a1v1 .zc-a1b1 .tit {
  color: #666666;
  font: 600 1.375rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .zc-cont1 .zc-a1v1 .zc-a1b1 .tit {
    font-size: 1.25rem;
  }
}
.zc-cont1 .zc-a1v1 .zc-a1b1 .p {
  color: #666666;
  font: 400 1rem/1.6em "Noto Sans SC";
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .zc-cont1 .zc-a1v1 .zc-a1b1 .p {
    margin-top: 1rem;
  }
}
.zc-cont1 .zc-a1v1 .zc-a1b2 {
  width: 49%;
}
@media (max-width: 768px) {
  .zc-cont1 .zc-a1v1 .zc-a1b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.zc-cont1 .zc-a1v1 .zc-a1b2 img {
  width: 100%;
}

.zc-cont2 {
  background: #F8F8F8;
  padding: 4.125rem 0 6.25rem;
}
@media (max-width: 768px) {
  .zc-cont2 {
    padding: 2rem 0;
  }
}
.zc-cont2 .zc-a2v1 {
  margin-top: 4.2rem;
}
@media (max-width: 768px) {
  .zc-cont2 .zc-a2v1 {
    margin-top: 1.5rem;
  }
}
.zc-cont2 .zc-a2v1 .zc-a2b1 {
  width: 47.9285714286%;
}
@media (max-width: 768px) {
  .zc-cont2 .zc-a2v1 .zc-a2b1 {
    width: 100%;
  }
}
.zc-cont2 .zc-a2v1 .zc-a2b1 img {
  width: 100%;
}
.zc-cont2 .zc-a2v1 .zc-a2b2 {
  width: 47.8571428571%;
  color: #666666;
}
@media (max-width: 768px) {
  .zc-cont2 .zc-a2v1 .zc-a2b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.zc-cont2 .zc-a2v1 .zc-a2b2 .tit, .zc-cont2 .zc-a2v1 .zc-a2b2 .tit1 {
  font: 600 1.375rem/1.5em "Noto Sans SC";
}
.zc-cont2 .zc-a2v1 .zc-a2b2 .p {
  font: 400 1rem/1.6em "Noto Sans SC";
  margin-top: 0.75rem;
}
.zc-cont2 .zc-a2v1 .zc-a2b2 .p p {
  padding-left: 1em;
  position: relative;
}
.zc-cont2 .zc-a2v1 .zc-a2b2 .p p::before {
  content: "Ã‚Â·";
  position: absolute;
  left: 0;
  top: 0;
}
.zc-cont2 .zc-a2v1 .zc-a2b2 .tit1 {
  margin-top: 1em;
}

.zc-cont3 {
  padding: 4.125rem 0 6.25rem;
}
@media (max-width: 768px) {
  .zc-cont3 {
    padding: 2rem 0;
  }
}
.zc-cont3 .gongt-txt {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .zc-cont3 .gongt-txt {
    margin-top: 1.5rem;
  }
}
.zc-cont3 .zc-a3_list1 {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .zc-cont3 .zc-a3_list1 {
    margin-top: 0.5rem;
  }
}
.zc-cont3 .zc-a3_list1 li {
  width: 48.5714285714%;
  background: #F8F8F8;
  border: 1px solid #F8F8F8;
  margin-top: 2.375rem;
}
@media (max-width: 768px) {
  .zc-cont3 .zc-a3_list1 li {
    width: 100%;
    margin-top: 1rem;
  }
}
.zc-cont3 .zc-a3_list1 li a.block {
  padding: 2.25rem 6%;
}
@media (max-width: 768px) {
  .zc-cont3 .zc-a3_list1 li a.block {
    padding: 1.65rem 5%;
  }
}
.zc-cont3 .zc-a3_list1 li a.block .weja {
  width: 5rem;
}
.zc-cont3 .zc-a3_list1 li a.block .data {
  border: 1px solid #D9D9D9;
  width: 100%;
  aspect-ratio: 16/16;
  color: #D9D9D9;
  font-size: 1.875rem;
  background: #fff;
  border-radius: 50%;
}
.zc-cont3 .zc-a3_list1 li a.block .wenata {
  width: -webkit-calc(90% - 5rem);
  width: -moz-calc(90% - 5rem);
  width: calc(90% - 5rem);
}
@media (max-width: 768px) {
  .zc-cont3 .zc-a3_list1 li a.block .wenata {
    width: -webkit-calc(95% - 5rem);
    width: -moz-calc(95% - 5rem);
    width: calc(95% - 5rem);
  }
}
.zc-cont3 .zc-a3_list1 li a.block .wenata .tit {
  color: #666666;
  font: 700 1.125rem/1.6em "Noto Sans SC";
}
.zc-cont3 .zc-a3_list1 li a.block .wenata .p {
  color: #666666;
  font: 400 1rem/1.6em "Noto Sans SC";
  margin-top: 0.25rem;
  text-wrap: balance;
}
.zc-cont3 .zc-a3_list1 li:hover {
  border-color: #FF0100;
}
.zc-cont3 .zc-a3_list1 li:hover a.block .data {
  background: #FF0100;
  border-color: #FF0100;
  color: #fff;
}

.cp-cont1 {
  padding: 5.875rem 0;
}
@media (max-width: 768px) {
  .cp-cont1 {
    padding: 2rem 0;
  }
}
.cp-cont1 .gongt-txt {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cp-cont1 .gongt-txt {
    margin-top: 1.5rem;
  }
}
.cp-cont1 .cp-a1_list1 {
  padding-top: 1rem;
}
.cp-cont1 .cp-a1_list1 li {
  background: #F8F8F8;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1_list1 li {
    margin-top: 1rem;
  }
}
.cp-cont1 .cp-a1_list1 li a.img {
  display: block;
  width: 50%;
  font-size: 0;
  padding-bottom: 31.2142857143%;
  position: relative;
  height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1_list1 li a.img {
    width: 100%;
    padding-bottom: 65%;
  }
}
.cp-cont1 .cp-a1_list1 li a.img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cp-cont1 .cp-a1_list1 li a.img img {
  width: 100%;
}
.cp-cont1 .cp-a1_list1 li .cont-p {
  width: 50%;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1_list1 li .cont-p {
    width: 100%;
    padding: 1.5rem 7.5%;
  }
}
.cp-cont1 .cp-a1_list1 li .cont-p .tit {
  color: #231815;
  font: 600 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1_list1 li .cont-p .tit {
    font-size: 1.5rem;
  }
}
.cp-cont1 .cp-a1_list1 li .cont-p .p {
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1_list1 li .cont-p .p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
.cp-cont1 .cp-a1_list1 li .cont-p a.more-b {
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .cp-cont1 .cp-a1_list1 li .cont-p a.more-b {
    margin-top: 1rem;
  }
}
.cp-cont1 .cp-a1_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-cont1 .cp-a1_list1 li:nth-child(2n) a.img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.cp-cont1 .jjfan-a1_list1 li {
  background: #F8F8F8;
  border: 1px solid #F8F8F8;
  margin-top: 3.125rem;
  width: 48.5714285714%;
}
@media (max-width: 768px) {
  .cp-cont1 .jjfan-a1_list1 li {
    width: 100%;
    margin-top: 1rem;
  }
}
.cp-cont1 .jjfan-a1_list1 li a.cont-sd {
  padding: 2.375rem;
}
@media (max-width: 768px) {
  .cp-cont1 .jjfan-a1_list1 li a.cont-sd {
    padding: 1.5rem;
  }
}
.cp-cont1 .jjfan-a1_list1 li a.cont-sd .img {
  width: 6.5rem;
  border: 1px solid #D9D9D9;
  aspect-ratio: 16/16;
  color: #D9D9D9;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .cp-cont1 .jjfan-a1_list1 li a.cont-sd .img {
    width: 5rem;
  }
}
.cp-cont1 .jjfan-a1_list1 li a.cont-sd .img img {
  width: 50%;
}
.cp-cont1 .jjfan-a1_list1 li a.cont-sd .cont-p {
  width: -webkit-calc(95% - 6.5rem);
  width: -moz-calc(95% - 6.5rem);
  width: calc(95% - 6.5rem);
}
@media (max-width: 768px) {
  .cp-cont1 .jjfan-a1_list1 li a.cont-sd .cont-p {
    width: -webkit-calc(95% - 5rem);
    width: -moz-calc(95% - 5rem);
    width: calc(95% - 5rem);
  }
}
.cp-cont1 .jjfan-a1_list1 li a.cont-sd .cont-p .tit {
  color: #231815;
  font-size: 1.875rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cp-cont1 .jjfan-a1_list1 li a.cont-sd .cont-p .tit {
    font-size: 1.5rem;
  }
}
.cp-cont1 .jjfan-a1_list1 li a.cont-sd .cont-p .p {
  color: #666666;
  font-size: 1.125rem;
  line-height: 1.6em;
  margin: 1.25rem 0;
}
@media (max-width: 768px) {
  .cp-cont1 .jjfan-a1_list1 li a.cont-sd .cont-p .p {
    font-size: 1rem;
    margin: 0.75rem 0;
  }
}
.cp-cont1 .jjfan-a1_list1 li:hover {
  border-color: #FF0100;
}
.cp-cont1 .jjfan-a1_list1 li:hover a.cont-sd .img img {
  -webkit-filter: invert(19%) sepia(94%) saturate(7497%) hue-rotate(3deg) brightness(110%) contrast(117%);
          filter: invert(19%) sepia(94%) saturate(7497%) hue-rotate(3deg) brightness(110%) contrast(117%);
}
.cp-cont1 .jjfan-a1_list1 li:hover a.cont-sd .cont-p .tit {
  color: #FF0100;
}

.cp-cont2 {
  padding: 0 0 4.6875rem;
}
@media (max-width: 768px) {
  .cp-cont2 {
    padding: 1rem 0 2rem;
  }
}
.cp-cont2 .cpas_list1 li {
  margin-top: 4.6875rem;
}
@media (max-width: 768px) {
  .cp-cont2 .cpas_list1 li {
    margin-top: 1rem;
  }
}
.cp-cont2 .cpas_list1 li .img {
  width: 50%;
}
@media (max-width: 768px) {
  .cp-cont2 .cpas_list1 li .img {
    width: 100%;
  }
}
.cp-cont2 .cpas_list1 li .img img {
  width: 100%;
}
.cp-cont2 .cpas_list1 li .cont-p {
  width: 45%;
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  text-wrap: balance;
}
@media (max-width: 768px) {
  .cp-cont2 .cpas_list1 li .cont-p {
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
  }
}
.cp-cont2 .cpas_list1 li .cont-p .tit {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5em;
  margin: 1rem 0 0.5rem;
}
.cp-cont2 .cpas_list1 li .cont-p .p1 p {
  padding-left: 1em;
  position: relative;
}
.cp-cont2 .cpas_list1 li .cont-p .p1 p::before {
  content: "Ã‚Â·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}
.cp-cont2 .cpas_list1 li:nth-child(2n) .img {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .cp-cont2 .cpas_list1 li:nth-child(2n) .img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.jjfa-cont1 {
  /* padding: 6.125rem 0 3.75rem; */
}
@media (max-width: 768px) {
  .jjfa-cont1 {
    /* padding: 2rem 0 2rem; */
  }
}
.jjfa-cont1 .jjfa-a1v1 .jjfa-a1b1 {
  width: 50%;
}
@media (max-width: 768px) {
  .jjfa-cont1 .jjfa-a1v1 .jjfa-a1b1 {
    width: 100%;
  }
}
.jjfa-cont1 .jjfa-a1v1 .jjfa-a1b1 img {
  width: 100%;
}
.jjfa-cont1 .jjfa-a1v1 .jjfa-a1b2 {
  width: 44%;
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  text-align: justify;
}
@media (max-width: 768px) {
  .jjfa-cont1 .jjfa-a1v1 .jjfa-a1b2 {
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
  }
}
.jjfa-cont1 .jjfa-a1v1 .list + .list {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .jjfa-cont1 .jjfa-a1v1 .list + .list {
    margin-top: 1rem;
  }
}
.jjfa-cont1 .jjfa-a1v1 .list:nth-child(2n) .jjfa-a1b1 {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .jjfa-cont1 .jjfa-a1v1 .list:nth-child(2n) .jjfa-a1b1 {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.jjfa-cont1 .cont-p {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .jjfa-cont1 .cont-p {
    margin-top: 1.125rem;
  }
}
.jjfa-cont1 .cont-p .tit {
  color: #ffffff;
  font: 700 1.375rem/1.5em "Noto Sans SC";
}
.jjfa-cont1 .cont-p .paggs table {
  border-color: #D9D9D9;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .jjfa-cont1 .cont-p .paggs table {
    margin-top: 1rem;
  }
}
.jjfa-cont1 .cont-p .paggs table tr:nth-child(1) {
  background: #222222 !important;
  border: none;
}
.jjfa-cont1 .cont-p .paggs table tr:nth-child(1) td {
  color: #fff;
  border: none;
}
.jjfa-cont1 .cont-p .paggs table tr:nth-child(2n-1) {
  background: #F8F8F8;
}
.jjfa-cont1 .cont-p .paggs table tr td {
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  vertical-align: middle;
}
@media (max-width: 768px) {
  .jjfa-cont1 .cont-p .paggs table tr td {
    font-size: 1rem;
  }
}
.jjfa-cont1 .cont-p .paggs table tr td.bs {
  background: #fff;
}

.jszc-cont1 {
  padding: 5.9375rem 0;
}
@media (max-width: 768px) {
  .jszc-cont1 {
    padding: 2rem 0;
  }
}
.jszc-cont1 .gongt-txt {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .jszc-cont1 .gongt-txt {
    margin-top: 1.5rem;
  }
}
.jszc-cont1 .jszc-a1v1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .jszc-cont1 .jszc-a1v1 {
    margin-top: 1.5rem;
  }
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 {
  background: url(../images/ff337792d04eb0d5eb199cfabe698a93.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  aspect-ratio: 1400/594;
}
@media (max-width: 768px) {
  .jszc-cont1 .jszc-a1v1 .jszc-list1 {
    aspect-ratio: 1/1;
  }
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li {
  width: 25%;
}
@media (max-width: 768px) {
  .jszc-cont1 .jszc-a1v1 .jszc-list1 li {
    width: 50%;
  }
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .jszc-cont1 .jszc-a1v1 .jszc-list1 li:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .jszc-cont1 .jszc-a1v1 .jszc-list1 li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li a {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  position: relative;
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li a .cont-p {
  width: 100%;
  z-index: 1;
  position: relative;
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li a .cont-p .tit {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .jszc-cont1 .jszc-a1v1 .jszc-list1 li a .cont-p .tit {
    font-size: 1.35rem;
  }
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li a .cont-p i {
  display: block;
  width: 2.375rem;
  margin: 1rem auto 0;
}
@media (max-width: 768px) {
  .jszc-cont1 .jszc-a1v1 .jszc-list1 li a .cont-p i {
    width: 2.1rem;
  }
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li a .cont-p i img {
  width: 100%;
}
.jszc-cont1 .jszc-a1v1 .jszc-list1 li:hover a::after {
  opacity: 1;
}

.jszc-cont2 {
  padding: 3.75rem 0 6.5625rem;
}
@media (max-width: 768px) {
  .jszc-cont2 {
    padding: 2rem 0;
  }
}
.jszc-cont2 .jszc-a1v1 {
  margin-top: 4.25rem;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1 {
    margin-top: 1.5rem;
  }
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b1 {
  width: 50%;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1 .jszc-a1b1 {
    width: 100%;
  }
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b1 img {
  width: 100%;
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b2 {
  width: 46.0714285714%;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1 .jszc-a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p {
  color: #666666;
  font-size: 1.375rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p {
    font-size: 1.25rem;
  }
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p1 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p1 {
    margin-top: 1rem;
  }
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p1 p {
  padding-left: 1em;
  position: relative;
  color: #666666;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p1 p {
    font-size: 1rem;
  }
}
.jszc-cont2 .jszc-a1v1 .jszc-a1b2 .p1 p::before {
  content: "Ã‚Â·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}
.jszc-cont2 .jszc-a1v1.jszc-a1v2 .jszc-a1b1 {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .jszc-cont2 .jszc-a1v1.jszc-a1v2 .jszc-a1b1 {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.jszc-cont3 {
  padding: 6.5625rem 0 7.5rem;
  background: #F8F8F8;
}
@media (max-width: 768px) {
  .jszc-cont3 {
    padding: 2rem 0;
  }
}
.jszc-cont3 .jszc-a2_list1 {
  padding-top: 1rem;
}
.jszc-cont3 .jszc-a2_list1 li {
  background: #fff;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .jszc-cont3 .jszc-a2_list1 li {
    margin-top: 1.25rem;
  }
}
.jszc-cont3 .jszc-a2_list1 li .cont-p {
  width: 50%;
  padding: 1.5rem 5%;
  color: #666666;
}
@media (max-width: 768px) {
  .jszc-cont3 .jszc-a2_list1 li .cont-p {
    width: 100%;
  }
}
.jszc-cont3 .jszc-a2_list1 li .cont-p .tit {
  font-size: 1.375rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .jszc-cont3 .jszc-a2_list1 li .cont-p .tit {
    font-size: 1.25rem;
  }
}
.jszc-cont3 .jszc-a2_list1 li .cont-p .p {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .jszc-cont3 .jszc-a2_list1 li .cont-p .p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.jszc-cont3 .jszc-a2_list1 li .img {
  width: 50%;
}
@media (max-width: 768px) {
  .jszc-cont3 .jszc-a2_list1 li .img {
    width: 100%;
  }
}
.jszc-cont3 .jszc-a2_list1 li .img img {
  width: 100%;
}
.jszc-cont3 .jszc-a2_list1 li:nth-child(2n) .cont-p {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .jszc-cont3 .jszc-a2_list1 li:nth-child(2n) .cont-p {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.jszc-cont3.jszc-cont4 {
  background: #fff;
}

.news-content {
  background: url(../images/bj1.jpg) no-repeat center top;
  -o-background-size: 100% auto;
     background-size: 100% auto;
  padding-top: 5.75rem;
}
@media (max-width: 768px) {
  .news-content {
    padding-top: 2rem;
  }
}
.news-content .xw-a1v1 {
  position: relative;
  margin-top: 3.5rem;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 {
    margin-top: 2rem;
  }
}
.news-content .xw-a1v1 .xw-a1b1 {
  background: #FFF;
  box-shadow: 0px 1.875rem 3.125rem 0px rgba(0, 0, 0, 0.03);
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p a.img {
  display: block;
  width: 50%;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p a.img {
    width: 100%;
  }
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p a.img img {
  width: 100%;
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd {
  width: 50%;
  padding: 2rem 4.25%;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd {
    width: 100%;
    padding: 1.8rem 5.5%;
  }
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd .tit {
  color: #383838;
  font-size: 1.875rem;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 0.25em;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd .tit {
    font-size: 1.25rem;
    margin-top: 0.5em;
  }
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd .p {
  color: #666666;
  font: 400 1.125rem/1.5em "Noto Sans SC";
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd .p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
.news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd a.more-b {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 .mySwiper1 .swiper-slide .cont-p .consd a.more-b {
    margin-top: 1rem;
  }
}
.news-content .xw-a1v1 .swiper-pagination1 {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .news-content .xw-a1v1 .swiper-pagination1 {
    margin-top: 1rem;
  }
}
.news-content .xw-a1v1 .swiper-pagination1 span {
  opacity: 1;
  background: transparent;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 50%;
  background: #B9B9B9;
  margin: 0 0.3rem !important;
}
.news-content .xw-a1v1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #FF0100;
}
.news-content .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .news-content .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  .news-content .news-list {
    display: block;
    margin-top: 1rem;
  }
}
@media (max-width: 450px) {
  .news-content .news-list li {
    margin-top: 1.25rem;
  }
}
.news-content .news-list li a.img {
  display: block;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.05);
}
.news-content .news-list li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}
.news-content .news-list li a.img i img {
  width: 100%;
}
.news-content .news-list li a.img .cont-p {
  padding: 1.5rem 1.5rem 2.5rem;
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .news-content .news-list li a.img .cont-p {
    padding: 1.5rem;
  }
}
.news-content .news-list li a.img .cont-p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.375rem;
  background: #FF0100;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform-origin: left;
     -moz-transform-origin: left;
      -ms-transform-origin: left;
       -o-transform-origin: left;
          transform-origin: left;
}
.news-content .news-list li a.img .cont-p .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.news-content .news-list li a.img .cont-p .tit {
  color: #383838;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: 600;
  margin-top: 0.75em;
  height: 2.8em;
  overflow: hidden;
}
.news-content .news-list li a.img:hover .cont-p::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

/*Ã¦â€“Â°Ã©â€”Â»Ã¨Â¯Â¦Ã¦Æ’â€¦*/
.ny-show_body {
  padding-top: 6.25rem;
}

.xw-show_bja {
  border-top: 1px solid #EAEAEA;
}
.xw-show_bja .heas-xw {
  background: #F8F8F8;
  padding: 1rem 0 1.5rem;
}
.xw-show_bja .heas-xw .ajhhsd {
  padding-top: 0;
}
.xw-show_bja .heas-xw .title-a {
  color: #232425;
  font: 600 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .xw-show_bja .heas-xw .title-a {
    font-size: 1.5rem;
  }
}
.xw-show_bja .heas-xw .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
  margin-top: 1.125rem;
}

.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: #7E8285;
  font: 400 1rem/2em "Noto Sans SC";
  padding: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .xw_content-v1 .xw-conta1 .xinwn-consss {
    padding: 0.5rem 0 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: #FF0100;
}
.xw_content-v1 .xw-conta1 .pain .fanbha .fhaas {
  color: #FF0100;
  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: 2rem;
}
@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: #323232;
  font-size: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  border: none;
  background: #fff;
}
.xw_content-v1 .xw-conta2 .tit {
  color: #000000;
  font: 400 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;
}
.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::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.375rem;
  background: #FF0100;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform-origin: left;
     -moz-transform-origin: left;
      -ms-transform-origin: left;
       -o-transform-origin: left;
          transform-origin: left;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img .cont-p .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img .cont-p .tit {
  color: #383838;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: 600;
  margin-top: 0.75em;
  height: 2.8em;
  overflow: hidden;
}
.xw_content-v1 .xw-conta2 .xw_lista1 li a.img:hover .cont-p::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.lx-cont1 {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding: 2rem 0;
  }
}
.lx-cont1 .lx-a1v1 {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 {
    margin-top: 1.5rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 {
  width: 37.8571428571%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 {
    width: 100%;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .tit1 {
  color: #232425;
  font: 400 1.5rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .tit1 {
    font-size: 1.25rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .p {
  color: #7E8285;
  font-size: 1rem;
  line-height: 2em;
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .p {
    margin: 0.75rem 0;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .p a {
  color: #7E8285;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .p a:hover {
  color: #3470B1;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .erna .img {
  width: 9rem;
  padding: 0.65rem;
  background: #EFF0F1;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .erna .img {
    width: 7.5rem;
    padding: 0.35rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .erna .img img {
  width: 100%;
}
.lx-cont1 .lx-a1v1 .lx-a1b1 .erna .cont-p {
  color: #7E8285;
  font: 400 1rem/2em "Noto Sans SC";
  margin-left: 1em;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .erna .cont-p {
    line-height: 1.5em;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 {
  width: 57.1428571429%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.lx-cont1 .lx-a1v1 .lx-a1b2 #mapDiv {
  height: 22.875rem;
}
.lx-cont1 .lx-a1v1 .lx-a1b2 #mapDiv .tdt-bottom {
  display: none;
}

.lx-cont2 {
  background: #EFF0F1;
  padding: 5.375rem 0 4.6875rem;
}
@media (max-width: 768px) {
  .lx-cont2 {
    padding: 2rem 0;
  }
}
.lx-cont2 .p1p {
  color: #232425;
  font: 500 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .lx-cont2 .p1p {
    font-size: 1.35rem;
  }
}
.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 .city-picker-span > .arrow {
  right: 1.5em;
}
.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 .city-picker-span {
  border: 1px solid #D2D2D2;
  padding: 0 1em;
  font-size: 0.875rem;
  color: #AEB5BB;
  border-radius: 1.5625rem;
}
.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 {
  border: none;
}
@media (max-width: 768px) {
  .lx-cont2 form .div_aghgha {
    margin-top: 1rem;
  }
}

.lx-cont3 {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .lx-cont3 {
    padding: 2rem 0;
  }
}
.lx-cont3 .lx-list31 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: -5rem;
}
@media (max-width: 768px) {
  .lx-cont3 .lx-list31 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 450px) {
  .lx-cont3 .lx-list31 {
    display: block;
    margin-top: -3rem;
  }
}
.lx-cont3 .lx-list31 li {
  background-color: #F8F8F8;
  padding: 2.25rem 0 0;
}
@media (max-width: 768px) {
  .lx-cont3 .lx-list31 li {
    padding-top: 1rem;
  }
}
@media (max-width: 450px) {
  .lx-cont3 .lx-list31 li {
    margin-top: 1rem;
  }
}
.lx-cont3 .lx-list31 li:last-child {
  grid-column: 2/4;
}
.lx-cont3 .lx-list31 li .tit {
  color: #fff;
  font: 600 1.875rem/1.5em "Noto Sans SC";
  background: -webkit-linear-gradient(left, #3F3F3F 5.53%, #F8F8F8 110.14%);
  background: -moz-linear-gradient(left, #3F3F3F 5.53%, #F8F8F8 110.14%);
  background: -o-linear-gradient(left, #3F3F3F 5.53%, #F8F8F8 110.14%);
  background: linear-gradient(90deg, #3F3F3F 5.53%, #F8F8F8 110.14%);
  padding: 0 1.2rem;
}
@media (max-width: 768px) {
  .lx-cont3 .lx-list31 li .tit {
    font-size: 1.5rem;
    padding: 0.25rem 1.2rem;
  }
}
.lx-cont3 .lx-list31 li .p {
  color: #666666;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 1.5rem 1.2rem 2.25rem;
}
@media (max-width: 768px) {
  .lx-cont3 .lx-list31 li .p {
    font-size: 1rem;
    padding: 1rem 1.2rem 1.5rem;
  }
}

.job-cont1 {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .job-cont1 {
    padding: 2rem 0;
  }
}
.job-cont1 .job-a1v1 {
  background: #F8F8F8;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 {
    margin-top: 1.5rem;
    padding: 1.5rem 2%;
  }
}
.job-cont1 .job-a1v1 div {
  color: #6F6E6E;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
}
.job-cont1 .job-a1v1 div b {
  font-weight: 700;
}
.job-cont1 .job-a1v1 div.ashtx {
  padding: 0 3%;
}
.job-cont1 .job-a1v1 div .ashtx1 a + a {
  margin-left: 1rem;
}
.job-cont1 .job-a1v1 div .ashtx1 img {
  height: 2.5rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-a1v1 div .ashtx1 img {
    height: 2rem;
  }
}
.job-cont1 .job-list {
  margin-top: 3.75rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-list {
    margin-top: 1.5rem;
  }
}
.job-cont1 .job-list li {
  padding: 0 3.125rem;
  border: 1px solid #E3E3E3;
  background: #FFF;
  box-shadow: 0px 1.875rem 3.125rem 0px rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
  .job-cont1 .job-list li {
    padding: 0 1.5rem;
  }
}
.job-cont1 .job-list li + li {
  margin-top: 1.5625rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-list li + li {
    margin-top: 1.25rem;
  }
}
.job-cont1 .job-list li .dt {
  padding: 1.375rem 0;
}
.job-cont1 .job-list li .dt .wehas .tit {
  color: #231815;
  font: 500 1.375rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .job-cont1 .job-list li .dt .wehas .tit {
    font-size: 1.25rem;
  }
}
.job-cont1 .job-list li .dt .wehas .p1 {
  color: #838383;
  font: 400 0.875rem/1.5em "Noto Sans SC";
  margin-top: 0.5em;
}
.job-cont1 .job-list li .dt .wehas .p1 span {
  color: #CFCFCF;
  display: block;
  margin: 0 0.5rem;
}
.job-cont1 .job-list li .dt i {
  color: #C2C2C2;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .job-cont1 .job-list li .dt i {
    font-size: 1.5rem;
  }
}
.job-cont1 .job-list li .wehha-job {
  display: none;
  border-top: 2px solid #E3E3E3;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .job-cont1 .job-list li .wehha-job {
    padding-top: 1rem;
  }
}
.job-cont1 .job-list li .wehha-job dl {
  margin-top: 1.625rem;
  font: 400 1rem/1.5em "Noto Sans SC";
  color: #6F6E6E;
}
@media (max-width: 768px) {
  .job-cont1 .job-list li .wehha-job dl {
    margin-top: 1.4rem;
  }
}
.job-cont1 .job-list li .wehha-job dl dt {
  font-weight: 600;
}
.job-cont1 .job-list li .wehha-job dl .pd p {
  padding-left: 1em;
  position: relative;
}
.job-cont1 .job-list li .wehha-job dl .pd p::before {
  content: "Ã‚Â·";
  position: absolute;
  left: 0;
  top: 0;
}
.job-cont1 .job-list li .wehha-job .p2 {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .job-cont1 .job-list li .wehha-job .p2 {
    padding: 1.5rem 0;
  }
}
.job-cont1 .job-list li .wehha-job .p2 a {
  color: #FF0100;
  font: 500 1rem/2em "Noto Sans SC";
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
}
.job-cont1 .job-list li .wehha-job .p2 a p {
  padding: 0 0.5rem;
}
.job-cont1 .job-list li .wehha-job .p2 a img {
  height: 1.75rem;
}
.job-cont1 .job-list li .wehha-job .p2 a img.b {
  height: 1.25rem;
}
.job-cont1 .job-list li .wehha-job .p2 a:hover {
  background: #f0f0f0;
}
.job-cont1 .job-list li.active {
  background: #F8F8F8;
}

.job-cont2 {
  background: url(../images/fdfac4f3bfea44ae50e246cde15ad7a8.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 6.875rem 0;
}
@media (max-width: 768px) {
  .job-cont2 {
    padding: 2rem 0;
  }
}
.job-cont2 .job-a2list1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list1 {
    border-bottom: none;
  }
}
.job-cont2 .job-a2list1 li {
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list1 li {
    padding: 0 1rem;
  }
}
.job-cont2 .job-a2list1 li a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font: 600 1.375rem/1.4em "Noto Sans SC";
  padding: 1rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list1 li a {
    font-size: 1.125rem;
    padding: 0.75rem 0;
  }
}
.job-cont2 .job-a2list1 li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #FF0100;
  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: left bottom;
     -moz-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
       -o-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
}
.job-cont2 .job-a2list1 li.on a {
  color: #fff;
}
.job-cont2 .job-a2list1 li.on a::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.job-cont2 .job-a2list2 {
  margin-top: 2rem;
}
.job-cont2 .job-a2list2 li {
  background: rgba(255, 255, 255, 0.9);
  display: none;
}
.job-cont2 .job-a2list2 li .wenata {
  width: 50%;
  padding: 1.5rem 5%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list2 li .wenata {
    width: 100%;
  }
}
.job-cont2 .job-a2list2 li .wenata .tit {
  color: #231815;
  font: 700 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list2 li .wenata .tit {
    font-size: 1.25rem;
  }
}
.job-cont2 .job-a2list2 li .wenata .p {
  color: #666666;
  font: 400 1.125rem/1.6em "Noto Sans SC";
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list2 li .wenata .p {
    font-size: 1rem;
    margin-top: 0.55rem;
  }
}
.job-cont2 .job-a2list2 li i {
  display: block;
  font-size: 0;
  width: 50%;
}
@media (max-width: 768px) {
  .job-cont2 .job-a2list2 li i {
    width: 100%;
  }
}
.job-cont2 .job-a2list2 li i img {
  width: 100%;
}

.job-cont3 {
  padding: 6rem 0 0;
}
@media (max-width: 768px) {
  .job-cont3 {
    padding-top: 2rem;
  }
}
.job-cont3 .job-a3v1 {
  background: #F8F8F8;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v1 {
    margin-top: 1.5rem;
  }
}
.job-cont3 .job-a3v1 .job-a3b1 {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v1 .job-a3b1 {
    width: 100%;
  }
}
.job-cont3 .job-a3v1 .job-a3b1 img {
  width: 100%;
}
.job-cont3 .job-a3v1 .job-a3b2 {
  width: 50%;
  padding: 1.5rem 5%;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v1 .job-a3b2 {
    width: 100%;
  }
}
.job-cont3 .job-a3v1 .job-a3b2 .tit {
  color: #231815;
  font: 700 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v1 .job-a3b2 .tit {
    font-size: 1.25rem;
  }
}
.job-cont3 .job-a3v1 .job-a3b2 .p {
  color: #666666;
  font: 400 1.125rem/1.6em "Noto Sans SC";
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v1 .job-a3b2 .p {
    font-size: 1rem;
    margin-top: 0.55rem;
  }
}
.job-cont3 .job-a3v1 .job-a3b2 .p p {
  position: relative;
  padding-left: 1em;
}
.job-cont3 .job-a3v1 .job-a3b2 .p p::before {
  content: "Ã‚Â·";
  position: absolute;
  left: 0;
  top: 0;
}
.job-cont3 .job-a3v2 {
  margin-top: 5rem;
}
.job-cont3 .job-a3v2 > .titas {
  color: #231815;
  font: 600 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v2 > .titas {
    font-size: 1.5rem;
  }
}
.job-cont3 .job-a3v2 .job-a3v2list1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.625rem;
  margin-top: 1.65rem;
}
@media (max-width: 768px) {
  .job-cont3 .job-a3v2 .job-a3v2list1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 450px) {
  .job-cont3 .job-a3v2 .job-a3v2list1 {
    display: block;
    margin-top: 0;
  }
}
@media (max-width: 450px) {
  .job-cont3 .job-a3v2 .job-a3v2list1 li {
    margin-top: 1rem;
  }
}
.job-cont3 .job-a3v2 .job-a3v2list1 li a {
  display: block;
  height: 100%;
  background: #F8F8F8;
  text-align: center;
  padding: 2rem 4% 2.5rem;
  border: 1px solid #F8F8F8;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li a i {
  display: block;
  width: 3.625rem;
  margin: 0 auto;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li a i img {
  width: 100%;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li a .wenata {
  color: #7E8285;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li a .wenata h2 {
  font: 500 1.125rem/1.5em "Noto Sans SC";
  padding: 0.75rem 0 1rem;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li a .wenata .p {
  font: 400 0.875rem/1.5em "Noto Sans SC";
  text-wrap: balance;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li:hover a {
  background: #fff;
  border: 1px solid #FF0100;
}
.job-cont3 .job-a3v2 .job-a3v2list1 li:hover a i img {
  -webkit-filter: invert(12%) sepia(93%) saturate(6776%) hue-rotate(1deg) brightness(93%) contrast(120%);
          filter: invert(12%) sepia(93%) saturate(6776%) hue-rotate(1deg) brightness(93%) contrast(120%);
}
.job-cont3 .job-a3v2 .job-a3v2list1 li:hover a .wenata h2 {
  color: #FF0100;
}

.job-cont4 {
  padding: 5.25rem 0 4.625rem;
}
@media (max-width: 768px) {
  .job-cont4 {
    padding: 2rem 0;
  }
}
.job-cont4 .job-a4_list1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .job-cont4 .job-a4_list1 {
    margin-top: 1.5rem;
  }
}
.job-cont4 .job-a4_list1 li {
  width: 33.3333333333%;
  padding: 0.5px;
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 768px) {
  .job-cont4 .job-a4_list1 li {
    width: 100%;
    margin-top: 1px;
  }
}
.job-cont4 .job-a4_list1 li a.block {
  display: block;
  position: relative;
}
.job-cont4 .job-a4_list1 li a.block i {
  display: block;
  font-size: 0;
  overflow: hidden;
  padding-bottom: 65%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.job-cont4 .job-a4_list1 li a.block i > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.job-cont4 .job-a4_list1 li a.block i img {
  width: 100%;
}
.job-cont4 .job-a4_list1 li a.block .name {
  position: absolute;
  left: 1.25em;
  top: 1em;
  color: #FFFFFF;
  font: 600 1.875rem/1.5em "Noto Sans SC";
  z-index: 1;
}
@media (max-width: 768px) {
  .job-cont4 .job-a4_list1 li a.block .name {
    font-size: 1.5rem;
  }
}
.job-cont4 .job-a4_list1 li a.block .iconfont {
  font-size: 2rem;
  color: #fff;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

.ttzgx-cont1 {
  background: #F8F8F8;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .ttzgx-cont1 {
    padding: 2rem 0;
  }
}
.ttzgx-cont1 .gongt-txt {
  margin-top: 2.25rem;
}
@media (max-width: 768px) {
  .ttzgx-cont1 .gongt-txt {
    margin-top: 1rem;
  }
}
.ttzgx-cont1 .heng1 {
  margin-top: 4.5rem;
}
@media (max-width: 768px) {
  .ttzgx-cont1 .heng1 {
    margin-top: 1.58rem;
  }
}
.ttzgx-cont1 .heng1 img {
  width: 100%;
}

.ttzgx-cont2 {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .ttzgx-cont2 {
    padding: 2rem 0;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 {
  margin-top: 4.6875rem;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 {
    margin-top: 1.25rem;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 {
  width: 45.5714285714%;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 {
    width: 100%;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 {
  color: #040000;
  border-bottom: 1px solid #A1A1A1;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 {
    padding: 1rem 0;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 .ttzgx-a2b1d1 {
  width: 44.2006269592%;
  font: 600 1.875rem/1.5em "Noto Sans SC";
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 .ttzgx-a2b1d1 {
    font-size: 1.5rem;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 .ttzgx-a2b1d2 {
  width: 55.7993730408%;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 .ttzgx-a2b1d2 .tit {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.65em;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 .ttzgx-a2b1d2 .tit {
    font-size: 1.125rem;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c1 .ttzgx-a2b1d2 p {
  font-size: 1rem;
  line-height: 1.65em;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 {
  border-bottom: 1px solid #A1A1A1;
  padding: 3.75rem 0;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 {
    padding: 1.65rem 0;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d1 {
  width: 44.2006269592%;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d1 .p1 {
  color: #040000;
  font-weight: 700;
  font-size: 1.25rem;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d1 .p1 b {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d1 .p1 b {
    font-size: 2rem;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d1 .p2 {
  color: #909090;
  font-size: 1rem;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d2 {
  width: 55.7993730408%;
  padding-right: 20%;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d2 {
    padding-right: 0;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d2 p {
  color: #625F5F;
  font-size: 1rem;
  line-height: 2em;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b1 .ttzgx-a2b1c2 .ttzgx-a2b1d2 p.pas1 {
  color: #040000;
  font-weight: 500;
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b2 {
  width: 50.6428571429%;
}
@media (max-width: 768px) {
  .ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.ttzgx-cont2 .ttzgx-a2v1 .ttzgx-a2b2 img {
  width: 100%;
}

.ttzgx-cont3 {
  background: #F8F8F8;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .ttzgx-cont3 {
    padding: 2rem 0;
  }
}
.ttzgx-cont3 .ttzgx-a3list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .ttzgx-cont3 .ttzgx-a3list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  .ttzgx-cont3 .ttzgx-a3list1 {
    display: block;
    margin-top: 1rem;
  }
}
@media (max-width: 450px) {
  .ttzgx-cont3 .ttzgx-a3list1 li {
    margin-top: 1.5rem;
  }
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p {
  background: #fff;
  padding: 1.65rem 5%;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p .tit {
  font-size: 1.25rem;
  line-height: 1.25em;
  font-weight: 600;
  margin-top: 0.5em;
  height: 2.8em;
  overflow: hidden;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p .tit a {
  color: #383838;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p .tit a:hover {
  color: #FF0100;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p a.jas {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #A1A1A1;
  background: #fff;
  border-radius: 50%;
  margin-top: 0.5rem;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p a.jas i {
  color: #A1A1A1;
  font-size: 0.875rem;
  font-weight: 600;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p a.jas:hover {
  border-color: #FF0100;
}
.ttzgx-cont3 .ttzgx-a3list1 li .cont-p a.jas:hover i {
  color: #FF0100;
}
.ttzgx-cont3 a.more-b {
  margin-top: 2.625rem;
}
@media (max-width: 768px) {
  .ttzgx-cont3 a.more-b {
    margin-top: 1.5rem;
  }
}

.ttzgx-cont4 {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .ttzgx-cont4 {
    padding: 2rem 0;
  }
}
.ttzgx-cont4 .ttzgx-a4list1 {
  margin-top: 1rem;
}
.ttzgx-cont4 .ttzgx-a4list1 li {
  width: 49%;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .ttzgx-cont4 .ttzgx-a4list1 li {
    width: 100%;
  }
}
.ttzgx-cont4 .ttzgx-a4list1 li a.xzmore {
  background: #F8F8F8;
  padding: 1.65rem 5%;
}
.ttzgx-cont4 .ttzgx-a4list1 li a.xzmore .cont-p {
  width: -webkit-calc(90% - 3.25rem);
  width: -moz-calc(90% - 3.25rem);
  width: calc(90% - 3.25rem);
}
.ttzgx-cont4 .ttzgx-a4list1 li a.xzmore .cont-p .data {
  color: #A7A7A7;
  font-size: 0.875rem;
  line-height: 1em;
  border-left: 2px solid #FF0100;
  padding-left: 0.5em;
}
.ttzgx-cont4 .ttzgx-a4list1 li a.xzmore .cont-p .tit {
  font-size: 1.25rem;
  line-height: 1.25em;
  font-weight: 600;
  margin-top: 0.5em;
  height: 2.8em;
  overflow: hidden;
  color: #383838;
}
.ttzgx-cont4 .ttzgx-a4list1 li a.xzmore i {
  display: block;
  width: 3.25rem;
}
.ttzgx-cont4 .ttzgx-a4list1 li a.xzmore i img {
  width: 100%;
}
.ttzgx-cont4 a.more-b {
  margin-top: 2rem;
}

.wejaqya {
  color: #666;
  font-size: 1rem;
}
.wejaqya .qywen-list1 li {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li {
    margin-top: 1.5rem;
  }
}
.wejaqya .qywen-list1 li .img {
  width: 49.7857142857%;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li .img {
    width: 100%;
  }
}
.wejaqya .qywen-list1 li .img img {
  width: 100%;
}
.wejaqya .qywen-list1 li .cont-p {
  width: 43.8571428571%;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}
.wejaqya .qywen-list1 li .cont-p dl + dl {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li .cont-p dl + dl {
    margin-top: 0.75rem;
  }
}
.wejaqya .qywen-list1 li .cont-p dl .tit {
  color: #666666;
  font-size: 1.5rem;
  line-height: 1.65em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li .cont-p dl .tit {
    font-size: 1.25rem;
  }
}
.wejaqya .qywen-list1 li .cont-p dl .p {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li .cont-p dl .p {
    font-size: 1rem;
  }
}
.wejaqya .qywen-list1 li:nth-child(2n) .img {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .wejaqya .qywen-list1 li:nth-child(2n) .img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}