html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
body, html {
    font-size: -webkit-calc(100vw / 120);
    font-size: -moz-calc(100vw / 120);
    font-size: calc(100vw / 120);
}
.h1, h1{ font-size: 2.5rem;}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}






.wh {
  padding: 0 12.5%;
}

@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: #0075CC;
  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: #0075CC;
}

.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: #0075CC;
}

.more-msl.bs:hover {
  color: #fff;
  border-color: #0075CC;
}

.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: #0075CC;
  -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: #0075CC;
}

.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: #0075CC;
}

.more-b.ls {
  border-color: #0075CC;
  color: #fff;
  background: #0075CC;
}

.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) {
  .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: #0075CC;
  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: #0075CC !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: #0075CC;
  -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: #0075CC;
}

#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;
  z-index: 999;
}

.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;
}

.sticky1 {
  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: #0075CC;
}

.head .head2:hover #menu .nav_a1 li > a span::after {
  background: #0075CC;
}

.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: #0075CC;
}

.head.sticky .head2 #menu .nav_a1 li > a span::after {
  background: #0075CC;
}

.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 */






/* 关于 */


.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, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
  background: -moz-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
  background: -o-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
  background: linear-gradient(0deg, #0075CC -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: #0075CC;
  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: #0075CC;
  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: #0075CC;
}

.abt-cont4 .abt-a4b2 .mySwiper4 .gong-jt .swiper-button-next1 {
  margin-left: 1rem;
}

.abt-cont5 {
  background: url(../images/banner/rd-main6bg.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;
  }
}











/**关于我们**/
.rd-main4 .flex2{display: flex;flex-wrap: wrap;  align-items : center;    }	
.rd-main4 .flex2 li{flex:1;border-left: 1px solid rgba(255, 255, 255, 0.5);position: relative; padding: 0 1%;text-align: center;overflow: hidden;padding: 16.6875rem 0;}
.rd-main4 .flex2 li::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -100%;
		background: -webkit-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
		background: -moz-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
		background: -o-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
		background: linear-gradient(0deg, #0075CC -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;
}
.rd-main4 .flex2 li:hover::before { bottom: 0%;}
.rd-main4 .flex2 li .tit{color: #F4F4F4; font: 600 1.625rem/1.5em "Noto Sans SC";margin-top: 1.25rem;}
.rd-main4 .flex2 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;
}
.rd-main4 .flex2 li:hover .txt{ height:auto; }
@media (max-width: 768px){
	.rd-main4 .flex2 li .tit{font-size: 1.45rem;}
	.rd-main4 .flex2 li{
		flex: auto;
		width: 100%;
		padding: 3rem 4%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
}
.rd-main3{
	background-size: cover;
    padding: 14rem 0 10.9375rem;
    position: relative;
}
.qualification{color:#fff;display: flex;flex-wrap: wrap; justify-content : space-between;}
.qualification .qualification-left{  width: 40.35714%;margin-top: 2rem;}
.qualification-left .top{     justify-content: left !important;}
.qualification-left .top span{    padding: 0 !important;color:#fff !important;}
.qualification-left .ftit{
    font-family: 'Montserrat';
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: uppercase;
}
.qualification-left .p{
	color: #fff;
    font: 400 1.25rem/1.6em "Noto Sans SC";
    padding: 1.2rem 0 1.8rem;
}
.qualification-left p{
    color: #fff;
    font: 400 1.25rem/1.6em "Noto Sans SC";
}
.qualification-left p::before{
	content: "";
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}
.qualification-right{display: flex;flex-wrap: wrap; overflow: hidden;}
.qualification-right .swiper-wrapper{}
.qualification-right .cont-p{position: relative;}
.qualification-right .cont-p i{display: block;font-size: 0;}
.qualification-right .cont-p i img{    width: 100%;}
.qualification-right .cont-p .text{
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    text-align: center;
    width: 100%;
    margin-top: 38%;
}
.qualification-right .cont-p .text h2{
	font: 600 1.375rem/1.5em "Noto Sans SC";
    height: 3em;
    overflow: hidden;
}
.qualification-right .cont-p .text p{
font: 600 1rem/1.5em "Noto Sans SC";
    margin-top: 13%;
}
.qualification-right .cont-p .text b{
    font: 600 2.5rem/1.5em "Montserrat";
}
.qualification-right .swiper-slide{width:50%}
.qualification-bottom{
	width:100%;
    
    bottom: 0;
    right: 0;
    text-align: right;
    z-index: 1000;
}
.qualification-bottom span{border:2px solid #fff;border-radius:50%;    width: 3.375rem; height: 3.375rem;font-size: 24px;padding: .5rem;}
.qualification-bottom .swiper-button-prev1{}
.qualification .qualification-right{width: 55.28571%;}


@media (max-width: 768px){
	#rd .rd-main3{padding: 2.25rem 0;}
	{    font-size: 1.25rem;}
	.qualification .qualification-left{width:100%}
	.qualification .qualification-right{width:100%; margin-top: 1.5rem;}
	#rd .rd-main3 u{display: none;}
	.qualification-left .p{font-size: 1rem;padding: 0.85rem 0 1.25rem;}
	.qualification-left p{font-size: 1rem; padding-left: 1em;position: relative;}

}

.alert-video{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
	color: #fff;
    text-align: right;
    font-size: 24px;
	display: none;
	
}
.alert-video div{cursor:pointer;}
.alert-video video{width:100%;max-width:900px;height:auto;}

/**联系我们**/
.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;
}
.contact-info-1 .flex-z .iconfont{color: #004b6d;font-size: 1.5rem;}
.contact-info-1{
    background: #F8F8F8;
    padding: 4.5rem 0 5.3125rem;
}
.contact-info-1 .lx-a1v1{
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.contact-info-1 .lx-a1v1 .lx-a1b1 p{
color: #000000;
font: 500 2.25rem/1.5em "Noto Sans SC";
}
.contact-info-1 .lx-a1v1 .lx-a1b1 b{
display: block;
color: #004b6d;
font: 700 3.4rem/1.4em "Montserrat";
}
.contact-info-1 .lx-a1v1 .lx-a1b2 img{width: 100%;max-width:989px;}

.contact-info-1 .lx-a1v2{
border-radius: 1.25rem;
background: #FFF;
box-shadow: 0px 0.25rem 1.875rem 0px rgb(0 0 0 / 5%);
padding: 2rem 0;
}
.contact-info-1 .lx-a1v2 .xwe-a1{
   display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contact-info-1 .lx-a1v2 .xwe-a1 li{
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1.5rem 0;
}
.contact-info-1 .lx-a1v2 .xwe-a1 .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;
}
.contact-info-1 .lx-a1v2 .xwe-a1 li + li {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-info-1 .lx-a1v2 .xwe-a1 li .cont-p .img{
    width: 7.5rem;
}

.contact-info-1 .lx-a1v2 .xwe-a1 li .cont-p .tit {
    color: #000000;
    font: 600 1.625rem/1.5em "Noto Sans SC";
}
.contact-info-1 .lx-a1v2 .xwe-a1 li .cont-p .p dl{
    margin-top: 0.5rem;
}
.contact-info-1 .lx-a1v2 .xwe-a1 li .cont-p .p .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;
}
.contact-info-1 .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;
}
.contact-info-1 .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";
}

.contact-info-1 .lx-a1v2 .werhxa {
    padding: 0 2.8125rem;
    margin-top: 3.4375rem;
}
.contact-info-1 .lx-a1v2 .werhxa .tit {
    text-align: center;
    position: relative;
}
.contact-info-1 .lx-a1v2 .werhxa .tit::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 1px;
    width: 40%;
    background: rgba(0, 0, 0, 0.1);
}
.contact-info-1 .lx-a1v2 .werhxa .tit::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 40%;
    background: rgba(0, 0, 0, 0.1);
}
.contact-info-1 .lx-a1v2 .werhxa .tit span {
    color: #000000;
    font: 500 2.25rem/1.5em "Noto Sans SC";
}

.contact-info-1 .lx-a1v2 .werhxa .yyxas-a li {
    width: 24%;
    margin-top: 2.5rem;
}
.contact-info-1 .lx-a1v2 .werhxa .yyxas-a li .titaa1 {
    color: #010101;
    font: 600 1.125rem/1.5em "Noto Sans SC";
    margin-bottom: 0.25rem;
}
.contact-info-1 .lx-a1v2 .werhxa .yyxas-a li .titaa1 span {
    color: #004b6d;
}
.contact-info-1 .lx-a1v2 .werhxa .yyxas-a li p {
    color: rgba(0, 0, 0, 0.8);
    font: 400 1rem/1.5em "Noto Sans SC";
}

.contact-info-2{
	background: url(../images/cbj.jpg) no-repeat center;
    -o-background-size: cover;
    background-size: cover;
    padding: 6.625rem 0 3.75rem;
}
.contact-info-2 .ny_tit.bs .tit, .contact-info-2 .ny_tit.bs .ftit {
    color: #fff;
}
.contact-info-2 .ny_tit .tit {
    color: #000000;
    font-family: 'Noto Sans SC';
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em;
}
.contact-info-2 .ny_tit .ftit {
    color: #0075CC;
    font-family: 'Montserrat';
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: uppercase;
}
.contact-info-2 form .msg-a1 .inpt {
    width: 49.28571%;
    position: relative;
    margin-top: 1rem;
}
.contact-info-2 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%;
	z-index:1;
}
.contact-info-2 form .msg-a1 .inpt .m_label span {
    color: #FF0000;
}
.contact-info-2 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;
}
.contact-info-2 form .msg-a1 .inpt .wehsdsa .p1 {
    width: 78.84058%;
    margin-top: 0;
}
.contact-info-2 form .msg-a1 .inpt .wehsdsa .p2 {
    width: 18.84058%;
}

.contact-info-2 form .msg-a1 .inpt .wehsdsa .p2 img {
    width: 100%;
    border-radius: 0.25rem;
}
.contact-info-2 form .msg-a2 {
    position: relative;
    margin-top: 1rem;
}
.contact-info-2 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%;
	z-index:1;
}
.contact-info-2 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;
}
.contact-info-2 form .more-b {
    color: #004b6d;
    margin-top: 2rem;
}
.contact-info-2 form .more-b i{
    color: #004b6d;
   
}

@media (max-width: 780px){
	.contact-info-1 {
    padding: 2rem 0;
	}
    .contact-info-1 .lx-a1v1 .lx-a1b1 p {
    font-size: 1.25rem;
	}
	.contact-info-1 .lx-a1v1 .lx-a1b1 b {
    font-size: 2rem;
	}
	.contact-info-1 .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;
	}
	.contact-info-1 .lx-a1v2 .werhxa .yyxas-a li{
		width:100%;
	}
	.contact-info-2 form .msg-a1 .inpt {
    width: 100%;
	}
	.contact-info-2 form .msg-a1 .inpt .m_label {
    line-height: 2.5rem;
	font-size: 1rem;
	}
	.contact-info-2 form .msg-a1 .inpt input {
    line-height: 2.5rem;
	}
	.contact-info-2{
    padding: 2rem 0;
	}
	.contact-info-2 .ny_tit .tit {
    font-size: 2rem;
	}
	.contact-info-2 .ny_tit .ftit {
    font-size: 1.25rem;
	}
	.contact-info-2 form .msg-a1 .inpt .wehsdsa .p1 {
    width: 65%;
	}
	.contact-info-2 form .more-b {
    margin-top: 1rem;
	}
	.contact-info-1 .lx-a1v2 .werhxa {
		padding: 0 1.8125rem;
		margin-top: 2.4375rem;
	}
}


/**产品列表**/
.list-product-server{text-align: center;border-top: 1px solid #E8E8E8;border-bottom: 1px solid #E8E8E8; padding: 2rem 0;}
.list-product-server .iconfont{font-size: 1.4rem;font-weight: initial;margin-left: 0;}
.p-arctrle{background: #004b6d;color: #fff}
.products .col-l{  border-right: 1px solid rgba(0, 0, 0, 0.1);}
#list-product{width: 79.166%;padding: 0;}
#list-product .product-list > li {
    padding: 3rem 17.10526% 4.0625rem 5.13158%;
}
.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_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;
}
.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;
}
.over {
    overflow: hidden;
}
#list-product .product-list > li .pro-cont1 .pro-a1 {
    width: 44.53947%;
}
#list-product .product-list > li .pro-cont1 .pro-a2 {
    width: 46.05263%;
}

#list-product .product-list > li .pro-cont1 .pro-a1 .tit1 {
    color: #004b6d;
    font: 600 3rem/1.5em "Noto Sans SC";
}
#list-product .product-list > li .pro-cont1 .pro-a1 .tit2 {
    margin-top: 2rem;
}
#list-product .product-list > li .tit2 span {
    display: inline-block;
    color: #000000;
    font: 600 1.5rem/1.5em "Noto Sans SC";
    position: relative;
}
#list-product .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, #004b6d 0%, rgba(0, 117, 204, 0) 100%);
    background: -moz-linear-gradient(234deg, #004b6d 0%, rgba(0, 117, 204, 0) 100%);
    background: -o-linear-gradient(234deg, #004b6d 0%, rgba(0, 117, 204, 0) 100%);
    background: linear-gradient(
216deg, #004b6d 0%, rgba(0, 117, 204, 0) 100%);
}
#list-product .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;
}
#list-product .product-list > li .pro-cont1 .pro-a2 img {
    width: 100%;
}
.over>img {
    cursor: pointer;
    transition: all .6s;
}

#list-product .product-list > li .pro-cont2 {
    margin-top: -1rem;
}
#list-product .product-list > li .pro-cont2 .td_list1 {
    margin: 0 -1.5%;
    margin-top: 2rem;
}
#list-product .product-list > li .pro-cont2 .td_list1 li {
    width: 25%;
    padding: 0 1.5%;
    text-align: center;
    margin-top: 1rem;
}
#list-product .product-list > li .pro-cont2 .td_list1 li u {
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    background: #F0F9FF;
    margin: 0 auto;
}
#list-product .product-list > li .pro-cont2 .td_list1 li u img {
    width: 60%;
}
.xz img {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
#list-product .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;
}
#list-product .product-list > li a.more-b {
    margin-top: 2rem;
}
.more-b.ls {
    border-color: #004b6d;
    color: #fff;
    background: #004b6d;
}
.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 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;
}
.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.ls i {
    color: #fff;
}
.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;
}
/* .icon-xiangyoujiantou:before {
    content: "e65f";
} */
.more-b::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    border-radius: 3.125rem;
    background-color: #004b6d;
    -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);
}
#list-product .product-list > li:nth-child(2n-1) {
    background-color: #FFF;
}

.more-b-blue {
    background: #fff;
    border: 1px solid #fff;
    color: #024d74;
}
.more-b-blue i{color: #024d74;}
@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);
}
#list-product {
    width: 100%;
}
}
@media (min-width: 767px) and (max-width: 1366px){
	#list-product .product-list > li {
    padding: 3rem 5.13158% 4.0625rem 5.13158%;
	}
}
@media (max-width: 767px){
	body, html {
		font-size: 14px;
	}
	#list-product{width:100%;}
	#list-product .product-list > li {
    padding: 2rem 4%;
	}
	#list-product .product-list > li .pro-cont1 .pro-a1 {
    width: 100%;
	}
	#list-product .product-list > li .pro-cont1 .pro-a1 .tit1 {
    font-size: 1.8rem;
	}
	#list-product .product-list > li .pro-cont1 .pro-a1 .tit2 {
    margin-top: 1rem;
	}
	#list-product .product-list > li .pro-cont1 .pro-a2 {
    width: 100%;
	}

	#list-product .product-list > li .pro-cont2 {
    margin-top: 1rem;
	}
	#list-product .product-list > li .pro-cont2 .td_list1 {
    margin-top: 0;
	}
	#list-product  .product-list > li .pro-cont2 .td_list1 li {
    width: 50%;
	}
	#list-product .product-list > li .pro-cont2 .td_list1 li u {
    width: 5.8rem;
    height: 5.8rem;
	}
	#list-product .product-list > li .pro-cont2 .td_list1 li p {
    margin-top: 0.5rem;    font-size: 12px;
	}
	#list-product .product-list > li a.more-b {
    margin-top: 1rem;
	}
	.more-b span {
    font-size: 1rem;
	}
}

.products .col-l .list{
			position: sticky;
			left: 0;
			top: 6rem;
			margin-top: 6rem;
		}
.products .col-l{padding:0;}

/**解决方案内页**/
.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";
}

.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 .cont-p {
    width: 45%;
}
.xsd-list2c1 li .cont-p .tit b {
    color: #004b6d;
    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;
}
.more-b.ls {
    border-color: #004b6d;
    color: #fff !important;
    background: #004b6d;
}
.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;
}
.more-b.ls i {
    color: #fff;
}
.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%;
	max-width:557px;
}
.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%;
	    max-width: 600px;
}
.xsd-list2c1 li:nth-child(2n) {
    padding: 4%;
    background: #fff;
    border-radius: 1rem;
}
.xsd-list2c1 li:nth-child(2n) .cont-p {
    order: 2;
}
.xsd-list2c1 li:nth-child(2n) .img u {
    left: auto;
    right: -15%;
}
/**文章**/
.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;
}
.tj-cont0 {
    background: #fff;
    padding: 4.125rem 0 2.8125rem;
}
.tj-cont1 {
    background: #F8F8F8;
    padding: 6.125rem 0 2.8125rem;
}
.ny_tit .tit {
    color: #000000;
    font-family: 'Noto Sans SC';
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25em;
}
.ny_tit .ftit {
    color: #004b6d;
    font-family: 'Montserrat';
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5em;
    text-transform: uppercase;
}
.tj-cont1 .mySwiper9 {
    margin-top: 2.5rem;
	overflow: hidden;
}

.tj-cont1 .mySwiper9 .swiper-slide .cont-p .img a img {
    width: 100%;
}
.fang img {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
}
.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: #004b6d;
    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";
}

.line2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.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%;
}

.swiper-pagination1, .swiper-pagination2 {
  text-align: center;
  margin-top: 3rem;
}
.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: #004b6d;
}

/*推荐产品*/
.jjfa-cont5 {
    padding: 5.625rem 0 4.125rem;
}
.jjfa-cont5 .jjfa-a5_v1 {
    margin-top: 3.5rem;
    position: relative;
}
.jjfa-cont5 .jjfa-a5_v1 .mySwiper5 {
    position: relative;
    padding: 0 1px;
	overflow: hidden;
}
.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;
}
.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%;
}
.fang img {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
}
.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;
}

.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div.swiper-button-prev1 {
    left: -4.5rem;
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div i {
    color: #fff;
    font: 500 1rem/1em "Noto Sans SC";
}
.icon-xiangzuojiantou:before {
    content: "\e660";
}
.jjfa-cont5 .jjfa-a5_v1 .gongt-jta>div.swiper-button-next1 {
    right: -4.5rem;
}
.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;
}

.news-info .con table,.proudct-info .con table{width:100%;    text-align: center;border-spacing: 0;border-collapse: collapse;}
.news-info .con table tr td,.proudct-info .con table tr td{
    border: 1px solid #ddd;
	    padding: .75rem;
}

/**产品内页**/
@-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: #004b6d;
    position: relative;
    padding: 3.625rem 0 7.875rem;
    overflow: hidden;
}
.cp-show-banner u{display: none;}
.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;
}

.cp-show-banner u img {
    width: 100%;
}

.cp-show-banner .cpbanv1 {
    position: relative;
    z-index: 1;
}
.cp-show-banner .cpbanv1 .cpbanb1 {
    width: 39.28571%;
}
.cp-show-banner .cpbanv1 .cpbanb1 img {
    width: 100%;
}
.cp-show-banner .cpbanv1 .cpbanb2 {
    width: 50%;
}
.cp-show-banner .cpbanv1 .cpbanb2 .tit {
    color: #fff;
    font: 600 1.5rem/1.5em "Noto Sans SC";
}

.cp-show-banner .cpbanv1 .cpbanb2 .tit2 {
    margin-top: 2rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .tit2 span {
    display: inline-block;
    color: #fff;
    font: 600 1.5rem/1.5em "Noto Sans SC";
    position: relative;
}

.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, #0075CC 0%, rgba(0, 117, 204, 0) 100%);
    background: -moz-linear-gradient(234deg, #0075CC 0%, rgba(0, 117, 204, 0) 100%);
    background: -o-linear-gradient(234deg, #0075CC 0%, rgba(0, 117, 204, 0) 100%);
    background: linear-gradient(
216deg, #0075CC 0%, rgba(0, 117, 204, 0) 100%);
}
.cp-show-banner .cpbanv1 .cpbanb2 .p {
    color: rgba(255, 255, 255, 0.8);
    font: 400 1rem/1.8em "Noto Sans SC";
    margin-top: 1rem;
    text-align: justify;
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad {
    margin-top: 2rem;
}
.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;
}

.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .thsd {
    width: 5rem;
    height: 5rem;
    background: #0075CC;
    border-radius: 50%;
    margin-right: 0.6rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .thsd img {
    width: 40%;
}
.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .copnm {
    color: rgba(255, 255, 255, 0.7);
    font: 400 1rem/1.5em "Noto Sans SC";
}
.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .copnm b {
    display: block;
    color: #0075CC;
    font-family: 'Montserrat';
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2em;
}

.ny-banner .mbxdh, .cp-banner .mbxdh{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.ny-banner .mbxdh a, .cp-banner .mbxdh a{color:#8E8E8E;}
.cp-banner .mbxdh .ajhhsd {
    color:#8E8E8E;
}
.ajhhsd {
    color: #8E8E8E;
    font: 400 1rem/2rem "Noto Sans SC";
    padding: 1.3em 0;
}
.cp-banner .mbxdh .ajhhsd a {
   color:#8E8E8E;
}
.ajhhsd span {
    padding: 0 0.05em;
}

.pro-show-cont1 {
    padding: 6.375rem 0;
}
.pro-show-cont1 .cptd-lista1 {
    margin: 0 -1%;
    margin-top: 1rem;
}
.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;
}
.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 rgb(0 0 0 / 5%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    height: 100%;
}

.pro-show-cont1 .cptd-lista1 li u {
    background: #F0F9FF;
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    margin: 0 auto;
}
.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;
}

.pro-show-cont2 {
    background: #004b6d;
    padding: 5rem 0;
}

.pro-show-cont2 .ny_tit .tit,.pro-show-cont2 .ny_tit .ftit,.pro-show-cont2 table{color:#fff;}


@media (max-width: 768px){
.ny_tit .tit {
    font-size: 2rem;
}
.ny_tit .ftit {
    font-size: 1.25rem;
}
.pro-show-cont1 {
    padding: 2rem 0;
}
.pro-show-cont2 {
    padding: 2rem 0;
}
.pro-show-cont1 .cptd-lista1 li {
    width: 50%;
}
.pro-show-cont1 .cptd-lista1 li .cont-p {
    padding: 2rem 8%;
}
.pro-show-cont1 .cptd-lista1 li p {
    margin-top: 1rem;
}
.news-info .con table, .proudct-info .con table{
font-size: 0.5rem;
}
.news-info .con table tr td, .proudct-info .con table tr td{
padding: .5rem;
}
.cp-show-banner {
    padding: 1rem 0 5rem;
}
	.cp-show-banner u {
    width: 90%;
}
.cp-show-banner .cpbanv1 .cpbanb1 {
    width: 100%;
}
.cp-show-banner .cpbanv1 .cpbanb2 {
    width: 100%;
}
.cp-show-banner .cpbanv1 .cpbanb2 .tit {
    font-size: 1.6rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .tit2 {
    margin-top: 1rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .tit2 span {
    font-size: 1.25rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .wehsad {
    margin-top: 1rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .thsd {
    width: 3.5rem;
    height: 3.5rem;
}
.cp-show-banner .cpbanv1 .cpbanb2 .wehsad .copnm b {
    font-size: 1.5rem;
}

.jjfa-cont5,.tj-cont1 {
    padding: 2rem  0 2.8125rem;
}
}

	.cooperative1{padding: 3rem 0;}
	.cooperative{background-color: #f8f8f8;}
	.cooperative1 ul{display: flex;flex-wrap: wrap;justify-content : space-between;}
	.cooperative1 ul li{display: flex; width:15%;justify-content:center;background: #fff;    margin: 1% 0;    padding: 3rem;border: 1px solid #eee;}
	.cooperative1 ul li img{max-width:100%; height: auto;max-height: 4rem;}
	@media screen and (min-width: 768px) and (max-width: 1200px) {.cooperative1 ul li{width:17%;} .cooperative1 ul li img{   max-height: 3rem;}}
	@media (max-width: 768px){.cooperative1 ul li{width: 48%;} .cooperative1 ul li img{    max-height: 3rem;}}
	

	.tits {
    /* background: linear-gradient(to right, rgba(255, 0, 0, 1), rgba(255, 0, 0, 0)); */
    width: 100%;
	height: 100%;
	background:#000;
}
						.mask2{
						position: absolute;
						bottom: -290%;
						left: 0;
						width: 100%;
						-ms-transition: .3s;
						-moz-transition: .3s;
						-webkit-transition: .3s;
						-o-transition: .3s;
						transition: .3s;
						border-radius: 5px 5px 0 0;
						overflow: hidden;

						}
.f_18 .mask1 i{font-size: 3rem;}
						.mask2 .txt{
						background: linear-gradient(to right,#004b6d,#01ddfc);
						color: #fff;
						text-align: center;
						padding-top: 50px;
						border-bottom: 4px solid #de6d1b;
						padding-bottom: 26px;
						line-height: 2;
						}
						.mask2 .txt a{color:#fff;}
						.mask2 i{
						    position: relative;
							z-index: 9;
							display: block;
							margin: -38px auto;
							width: 75px;
							height: 75px;
							background-color: #fff;
							border-radius: 50%;
							background-repeat: no-repeat;
							background-position: center center;
							font-size: 2.5rem;
							line-height: 75px;
						}
						.i_part3 .bottom .on{overflow: visible !important}
						.i_part3 .bottom .on .mask2{bottom: 0;}
						.i_part3 .tit .f_16{font-weight: 500;}
						.mask2 h3{font-weight: normal;}
						.mask2 .info{
						  white-space: nowrap;      /* 保持文本在一行，不换行 */
						  overflow: hidden;         /* 超出容器部分隐藏 */
						  text-overflow: ellipsis;  /* 超出部分显示为省略号 */
						  padding:0 5px;
						}

						.tits .tit{    opacity: 0;}
						.tits .show{opacity: 1;display: block !important;}
						@media (max-width: 768px) {
							.mask2{display: none;}
							.f_18 .mask1 i{font-size: 1rem;}
							.i_part3 .con .bottom .btn .icon {font-size:0.5rem}
							.i_part3 .con .bottom .btn:hover, .i_part3 .con .bottom .btn.on{
								color: #fff;
							    background: -webkit-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
								background: -moz-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
								background: -o-linear-gradient(bottom, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
								background: linear-gradient(0deg, #0075CC -20%, rgba(44, 44, 44, 0) 80%);
							}
						}


@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_b1 .img img{height:auto;}
  .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;
  }
}