@charset "utf-8";

/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: calc(100vw / 19);
}
 
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}

.line1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.trans {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.er-ul {
  position: absolute;
  width: 100%;
  left: 00%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 90%;
  z-index: 2000;
  background: #222222;
  display: none;
  padding: 0.2rem 0.2rem;
}

header .center>ul>li:nth-child(6) .er-ul,
header .center>ul>li:nth-child(3) .er-ul {
  width: 160%;
  left: -30%;
}

header .center>ul>li:nth-child(4) .er-ul {
  width: 200%;
  left: -50%;
}

.er-ul::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 0.1rem solid transparent;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
  border-bottom: 0.1rem solid #222222;
}

.er-ul>li {
  line-height: 0.3rem;
  text-align: center;
  font-size: 0.14rem;
}

.er-ul>li a {
  color: #fff;
}

.er-ul li:hover a {
  color: #007cc3;
}

.er-ul>li:nth-child(1) {
  padding-top: 0.1rem;
}

.er-ul>li:last-child {
  padding-bottom: 0.1rem;
}

header .center>ul>li:hover:hover .er-ul {
  transform: scale(1);
  opacity: 1;
  display: block;
}

.bg {
  background: #007cc3;
}

.logo_phone img {
  width: 7.5rem;
}

.c {
  color: #007cc3;
}

.cf {
  color: #fff !important;
}

.c0 {
  color: #000 !important;
}

.phone_weibu {
  background: #0A0A0A;
  display: none;
}

.phone_weibu .mobMenu>li>a {
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}

.phone_weibu .mobMenu>li {
  border-bottom: #424245 1px solid;
}

.phone_weibu .mobMenu>li>.subDepth>li>a {
  font-size: 1em;
  color: #9a9797;
  line-height: 28px;
}

.mobMenu>li>a::after,
.mobMenu>li>a::before{
  display:none;
}

.mobMenu>li.gnb2>a::before {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 13px;
  height: 1px;
  background-color: #000;
  content: '';
}

.mobMenu>li.gnb2>a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  margin-top: -6px;
  width: 1px;
  height: 13px;
  background-color: #000;
  content: '';
}

.phone_weibu .mobMenu>li>a::before {
  background-color: #fff;
}

.phone_weibu .mobMenu>li>a::after {
  background-color: #fff;
}

.phone_weibu .mobMenu>li>.subDepth {
  display: none;
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

  .phone_weibu {
    display: block;
  }
}

.container {
  padding: 0 2.4rem;
  width: 100%;
}

header {
  position: fixed;
  top: 0%;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #007cc3;
  line-height: 0.8rem;
}

header .container {
  padding: 0 1rem;
}

header .logo img {
  width: 1.5rem;
}

header .center {
  width: 70%;
  margin: 0 auto;
}

header .center>ul>li {
  float: left;
  font-size: 0.16rem;
  padding: 0 0.25rem;
  position: relative;
}

header .center>ul>li>a {
  color: #fff;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  position: relative;
  font-weight: 600;
}

header .center>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  height: 2px;
  background: #ffffff;
}

header .center>ul>li:hover>a::before,
header .center>ul>li.active>a::before {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  width: 100%;
}

header .left,
header .right {
  width: 15%;
}

header .menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  width: 0.22rem;
  height: 0.16rem;
  padding-top: 0.07rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

header .menu span {
  margin: auto;
  display: block;
  width: 0.15rem;
  height: 2px;
  background: #fff;
  position: relative;
  vertical-align: middle;
  transition: 0.45s;
}

header .menu span::before {
  content: "";
  position: absolute;
  top: -0.07rem;
  height: 2px;
  width: 0.22rem;
  background: #fff;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

header .menu span::after {
  content: "";
  position: absolute;
  bottom: -0.07rem;
  height: 2px;
  width: 0.22rem;
  background: #fff;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

header .menu.active span:before {
  top: 0px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

header .menu.active span:after {
  bottom: 0px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

header .menu.active span {
  background: transparent;
  -webkit-transition-delay: 0s, 0s;
  -moz-transition-delay: 0s, 0s;
  -ms-transition-delay: 0s, 0s;
  -o-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}

header .tel {
  font-size: 0.16rem;
  color: #ffffff;
  margin-right: 0.5rem;
}

header .tel i {
  font-size: 0.16rem;
  margin-right: 0.1rem;
  display: inline-block;
}

header.active {
  background: transparent;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

header.active .center,
header.active .tel {
  opacity: 0;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.navigators.active {
  height: 100%;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.navigators {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 998;
  overflow: hidden;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  background-image: linear-gradient(64deg, #007cc3 0%, #83c7ec 100%), linear-gradient(#0d80c2, #0d80c2);
  background-blend-mode: normal,
    normal;
}

.navigators ul {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}

.navigators ul li .name {
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
  color: #fff;
}

.navigators ul li .text {
  font-size: 0.14rem;
  line-height: 0.28rem;
  color: #fff;
}

.navigators ul li a.text:hover {
  font-weight: 600;
}

.navigators .top {
  line-height: 0.8rem;
  padding: 0 1rem;
}

.navigators .top .logo img {
  width: 1.2rem;
}
.banner .swiper-container {
  margin-top: 0.8rem;
}
.banner .p1 {
  font-size: 0.6rem;
  line-height: 0.7rem;
  margin-bottom: 0.1rem;
  color: #ffffff;
  font-weight: 600;
}

.banner .p2 {
  font-size: 0.16rem;
  line-height: 0.3rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.banner .img img {
  height: calc(100vh - 0.8rem);
  object-fit: cover;
  width: 100vw;
}

.banner .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.banner .swiper-pagination {
  left: 50%;
  bottom: 30px;
  transform: translateY(-50%);
  width: auto;
}

.banner .swiper-pagination-bullet {
  width: 0.12rem;
  height: 0.12rem;
  border: 1px solid #fff;
  background: #fff;
  opacity: 1;
}

.banner .swiper-pagination-bullet-active {
  background: transparent;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.15rem 0 0;
}

.entitle {
  font-size: 0.14rem;
  line-height: 0.28rem;
  margin-bottom: 0.1rem;
  color: #007cc3;
  text-transform: uppercase;
}

.title {
  font-size: 0.44rem;
  line-height: 0.5rem;
  color: #000000;
  font-weight: 600;
}

.more,
.list_contact .right button {
  background-image: linear-gradient(90deg, #007cc3 0%, #72c4f1 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal,
    normal;
  box-shadow: 0px 3px 7px 0px rgb(95 184 234);
  border-radius: 24px;
  line-height: 0.5rem;
  display: inline-block;
  padding: 0 0.35rem;
  font-size: 0.16rem;
  color: #f7f7f7;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.more a,
.list_contact .right button a {
  font-size: 0.16rem;
  color: #f7f7f7;
}

.more i,
.list_contact .right button i {
  display: inline-block;
  margin-left: 0.15rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_contact .right button {
  border: none;
}

.text {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #7f7f7f;
}

.more:hover,
.list_contact .right button:hover {
  background-image: linear-gradient(90deg, #93c9e8 0%, #007cc3 100%), linear-gradient(#000000, #000000);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.more:hover i,
.list_contact .right button:hover i {
  transform: translateX(0.1rem);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

#spsy_tc video {
  display: block;
}

#spsy_tc {
  background: #000000;
  z-index: 9999;
}

#spsy_tc .modal-header {
  padding: 0;
  border: none;
  position: absolute;
  right: 15px;
}

.modal-content {
  background: #000;
}

#spsy_tc .modal-body {
  padding: 0;
  background: #000000;
}

#sp1_tc .modal-body {
  border: none;
}

#spsy_tc .modal-content {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#spsy_tc button.close {
  margin-top: 0;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  margin: 20px 0 0 0;
  font-size: 50px;
  font-weight: lighter;
}

#spsy_tc .modal-dialog {
  width: 49%;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.section2 .left {
  padding-right: 0.85rem;
}

.section2 .left .title {
  margin-bottom: 0.4rem;
}

.section2 .left ul {
  margin: 0.47rem 0 0.65rem;
}

.section2 .left ul li {
  float: left;
  width: 33.3%;
  border-left: 1px solid #c7c7c7;
}

.section2 .left ul li .icon {
  margin-bottom: 0.15rem;
}

.section2 .left ul li .icon div {
  margin: 0 auto;
  background-size: contain;
}

.section2 .left ul li:hover .icon div {
  background: url(../img/icon1.png) !important;
}

.section2 .left ul li:last-child {
  border-right: 1px solid #c7c7c7;
}

.section2 .left ul li:nth-child(1) .icon div {
  width: 47px;
  height: 38px;
  background-position: 0 0 !important;
}

.section2 .left ul li:nth-child(2) .icon div {
  width: 40px;
  height: 38px;
  background-position: -51px 0px !important;
}

.section2 .left ul li:nth-child(3) .icon div {
  width: 55px;
  height: 38px;
  background-position: 100% 100% !important;
}

.section2 .right {
  cursor: pointer;
}

.section3 .sum>div {
  display: none;
}

.section3 .sum>div.active {
  display: block;
}

.section3 .subtitle {
  font-size: 0.28rem;
  line-height: 0.36rem;
  color: #ffffff;
  margin: 0.4rem 0 0.3rem;
}

.section3 .more {
  margin-top: 0.9rem;
}

.section3 .left {
  padding-right: 0.9rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 41%;
}

.section3 .right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-45%);
}

.section3 .right .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.section3 .right .hover img {
  width: 40%;
  margin: 0 auto;
}

.section3 .right .swiper-button-next,
.section3 .right .swiper-button-prev {
  width: 0.52rem;
  height: 0.52rem;
  background-color: #2d2d35;
  border-radius: 50%;
  background-size: 0.2rem 0.2rem;
  margin-top: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.section3 .right .swiper-button-next {
  right: 1.05rem;
}

.section3 .right .swiper-button-prev {
  left: 1.05rem;
}

.section3 .right .yuan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  text-align: center;
  z-index: 999;
  overflow: hidden;
}

.section3 .right .yuan .yuan1 {
  -webkit-animation: circle 1s infinite linear;
  padding: 0.4rem;
}

.section3 .right .yuan .yuan2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.25rem;
  -webkit-animation: circle1 10s infinite linear;
}

.section3 .right .yuan .yuan3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: circle2 7s infinite linear;
}
.section3 .right .swiper-slide{
  opacity: 0 !important;
}
.section3 .right .swiper-slide-active{
  opacity: 1 !important;
}
.section3 .right ul li {
  position: absolute;
  width: 0.68rem;
  height: 0.68rem;
  background-color: #ffffff;
  border: solid 1px #0d80c2;
  line-height: 0.68rem;
  text-align: center;
  border-radius: 50%;
}

.section3 .right ul li:hover,
.section3 .right ul li.active {
  transform: rotateY(360deg);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.section3 .right ul li:first-child {
  top: 15%;
  left: 1.37rem;
}

.section3 .right ul li:nth-child(2) {
  top: 15%;
  right: 1.37rem;
}

.section3 .right ul li:nth-child(3) {
  bottom: 15%;
  left: 1.37rem;
}

.section3 .right ul li:nth-child(4) {
  bottom: 15%;
  right: 1.37rem;
}

.section3 .right ul li:hover {
  border: 1px dashed #0d80c2;
}

.section3 .row.pr {
  height: 100vh;
}

@-webkit-keyframes circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

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

  100% {
    transform: rotate(0deg);
  }
}

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

  100% {
    transform: rotate(0deg);
  }
}

.section4 .number {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #007cc3;
}

.section4 .name {
  margin: 0.3rem 0 0.2rem;
  font-size: 0.28rem;
  line-height: 0.36rem;
  color: #010101;
}

.section4 .swiper-pagination-bullet {
  background-color: #a1a1a1;
  opacity: 1;
}

.section4 .swiper-pagination-bullet-active {
  width: 0.27rem;
  background-color: #010101;
  border-radius: 4px;
}

.section4 .swiper-container {
  margin-top: 0.6rem;
  padding-bottom: 0.7rem;
}

.section4 .swiper-container .swiper-slide>div {
  padding: 0 0.2rem 0 0.25rem;
}

.section4 .swiper-container .swiper-slide .over {
  border: 1px solid #fff;
}

.section4 .swiper-container .text {
  margin-top: 0.1rem;
}

.section4 .swiper-container .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.05rem;
  width: 1px;
  height: 100%;
  background-color: rgba(87, 106, 116, 0.2);
}

.section4 .swiper-container .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: #007cc3;
}

/*.section4 .swiper-container .swiper-slide:nth-child(even) {
  margin-top: 0.5rem;
}*/

.section4 .swiper-container .swiper-slide:hover .over {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border: solid 1px #0e88cd;
}

.section4 .swiper-container .swiper-slide:hover .name {
  color: #007cc3;
}

.section5 .bot {
  padding: 0 0 0 2.4rem;
  margin-top: 0.5rem;
}

.section5 .left {
  height: 4.22rem;
  width: 4.85rem;
  background-image: linear-gradient(64deg, #007cc3 0%, #7aabcc 100%), linear-gradient(#6195ba, #6094b9);
  background-blend-mode: normal,
    normal;
  padding: 0.5rem;
}

.section5 .left .number {
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.section5 .left .name {
  font-size: 0.28rem;
  line-height: 0.34rem;
  color: #ffffff;
  padding: 0.25rem 0 0.2rem;
  position: relative;
}

.section5 .left .name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.section5 .left .more {
  margin-top: 0.35rem;
  background: transparent;
  border: 1px solid #fff;
}

.section5 .left .more:hover {
  background: #fff;
}

.section5 .left .more:hover a {
  color: #007cc3;
}

.section5 .right a {
  width: 4.84rem;
  height: 4.22rem;
}

.section5 .center {
  width: 40%;
  height: 4.22rem;
  vertical-align: bottom;
  padding-left: 0.4rem;
  position: relative;
}
.section5 .right {
  padding-right: 20px;
}
.section5 .center .text {
  font-size: 0.6rem;
  line-height: 0.7rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.section5 .swiper-button-next,
.section5 .swiper-button-prev {
  width: 0.52rem;
  height: 0.52rem;
  border: solid 1px #ffffff;
  border-radius: 50%;
  margin-top: 0;
  background-size: 0.2rem 0.2rem;
}

.section5 .swiper-button-next {
  right: 4.35rem;
}

.section5 .swiper-button-prev {
  left: auto;
  right: 5.25rem;
}

.section5 .swiper-button-next:hover,
.section5 .swiper-button-prev:hover {
  background-color: #007cc3;
}

.section6 .container {
  padding: 0 0 0 2.4rem;
}

.section6 .data {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #007cc3;
}

.section6 .swiper-container {
  margin-top: 0.5rem;
}

.section6 .name {
  font-size: 0.28rem;
  line-height: 0.34rem;
  color: #000000;
  margin: 0.1rem 0;
}

.section6 .more_a {
  width: 0.5rem;
  height: 0.5rem;
  border: solid 1px #747474;
  border-radius: 50%;
  color: #747474;
  display: inline-block;
  line-height: 0.5rem;
  text-align: center;
  margin-top: 0.3rem;
}

.section6 .more_a i {
  font-size: 0.2rem;
  display: block;
}

.section6 .more_a:hover {
  background: #007cc3;
  color: #fff;
}

.section6 .swiper-slide>div {
  padding: 0.45rem;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.section6 .swiper-slide:hover>div {
  border: solid 1px #0d80c2;
}

.section6 .swiper-container {
  padding-bottom: 0.6rem;
}

.section6 .bot {
  padding: 0 2.4rem;
}

.section6 .bot .swiper-pagination {
  width: 62%;
  height: 2px;
  background: #cbcbcb;
}

.section6 .bot .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  background-color: #000;
  margin-top: -1px;
}

.section6 .more {
  float: right;
  margin-top: -0.25rem;
}

#fp-nav.fp-right {
  left: 0.4rem;
  right: auto;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  width: 0.1rem;
  height: 2px;
  background-color: #000;
  margin: 0;
}

#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li a.active span,
.fp-slidesNav ul li:hover a.active span,
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 0.24rem;
  height: 2px;
  background-color: #000;
  margin: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  margin: 0 0 0.1rem 0;
  height: 2px;
}

.fp-viewing-page1 #fp-nav ul li a.active span,
.fp-viewing-page5 #fp-nav ul li a.active span,
.fp-viewing-page1 #fp-nav ul li:hover a.active span,
.fp-viewing-page5 #fp-nav ul li:hover a.active span,
.fp-viewing-page1 .fp-slidesNav ul li a.active span,
.fp-viewing-page5 .fp-slidesNav ul li a.active span,
.fp-viewing-page1 .fp-slidesNav ul li:hover a.active span,
.fp-viewing-page5 .fp-slidesNav ul li:hover a.active span,
.fp-viewing-page1 #fp-nav ul li:hover a span,
.fp-viewing-page5 #fp-nav ul li:hover a span,
.fp-viewing-page1 .fp-slidesNav ul li:hover a span,
.fp-viewing-page5 .fp-slidesNav ul li:hover a span,
.fp-viewing-page1 #fp-nav ul li a span,
.fp-viewing-page5 #fp-nav ul li a span,
.fp-viewing-page1 .fp-slidesNav ul li a span,
.fp-viewing-page5 .fp-slidesNav ul li a span {
  background-color: #fff;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
  width: auto;
  height: auto;
  background: transparent;
}

footer {
  background-color: #2d2d35;
  padding: 0.9rem 0 0.7rem;
}

footer ul li:last-child {
  margin-right: 0;
  width: 23.7%;
}

footer ul li {
  float: left;
}

footer ul li .name {
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
  color: #949494;
}

footer ul li .text {
  font-size: 0.14rem;
  line-height: 0.28rem;
  color: #949494;
}

footer a.text:hover {
  color: #007cc3 !important;
}

footer .fenxiang a:hover {
  background: #007cc3 !important;
}

footer .fenxiang a {
  width: 0.5rem !important;
  height: 0.5rem !important;
  line-height: 0.5rem !important;
  border: none !important;
  background-color: #3e3e47 !important;
  font-size: 0.18rem !important;
  color: #fff !important;
}

footer ul li:nth-child(1),
footer ul li:nth-last-child(2),
footer ul li:nth-last-child(3),
footer ul li:nth-child(6) {
  width: 7.7%;
}

footer ul li:nth-child(2) {
  width: 13.4%;
}

footer ul li:nth-child(3) {
  width: 14.5%;
}

footer ul li:nth-child(4) {
  width: 10%;
}

footer ul li:nth-child(5) {
  width: 7.6%;
}

.ewm {
  margin: 0.2rem 0;
}

.ewm .fl {
  width: 50%;
  height: 1.17rem;
}

.ewm .fl img {
  width: 1.17rem;
}

.ewm .fl:nth-child(1) {
  width: auto;
}

.ewm .fl.pr .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ewm .fl:nth-child(2) {
  padding-left: 0.15rem;
}

.beian {
  background-color: #2d2d35;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0;
}

.beian .text {
  font-size: 0.14rem;
  line-height: 0.28rem;
  color: #949494;
}

.nybanner .hover {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.nybanner .bread {
  font-size: 0.16rem;
  line-height: 0.3rem;
  margin: 0.1rem 0 0.75rem;
  color: #333333 !important;
}

.nybanner .bread a {
  color: #333333;
}

.nybanner .bread span:last-child {
  display: none;
}

.nybanner .icon {
  width: 0.48rem;
  height: 0.48rem;
  line-height: 0.45rem;
  text-align: center;
  border: 1px solid #000;
  border-radius: 50%;
  overflow: hidden;
}

.nybanner .icon img {
  width: 0.1rem;
  -webkit-animation: run 1s infinite linear;
  -moz-animation: run 1s infinite linear;
  -o-animation: run 1s infinite linear;
  animation: run 1s infinite linear;
  display: inline-block;
  position: relative;
}

@keyframes run {
  from {
    top: -10%;
  }

  to {
    top: 50%;
  }
}

.list_pro .container {
  padding: 0 2.4rem 0 0;
}

.ptb100 {
  padding: 1rem 0;
}

.list_pro .left {
  background-color: #F3F3F3;
  padding: 0.45rem 0.35rem 0.35rem 0.8rem;
  width: 25%;
  float: left;
}

.list_pro .left .ny_title {
  margin-bottom: 0.25rem;
}

.list_pro .right .content .swiper-button-next,
.list_pro .right .content .swiper-button-prev {
  background-size: 0.3rem;
}

.list_pro .left ul li {
  margin-bottom: 0.08rem;
}

.list_pro .left ul li .bot {
  font-size: 0.16rem;
  line-height: 0.4rem;
  color: #7F7F7F;
  padding-left: 0.56rem;
  display: none;
}

.list_pro .left ul li .bot a i {
  opacity: 0;
  font-size: 0.18rem;
  color: #007cc3;
  float: right;
}

.list_pro .left ul li .bot a:hover,
.list_pro .left ul li .bot a.active {
  color: #007cc3;
}

.list_pro .left ul li .bot a:hover i,
.list_pro .left ul li .bot a.active i {
  opacity: 1;
}

.list_pro .left ul li .top {
  font-weight: 600;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #000000;
}

.list_pro .left ul li .top i {
  display: inline-block;
  margin-right: 0.2rem;
  color: #007cc3;
  font-size: 0.18rem;
}

.list_pro .left ul li.active .bot {
  display: block;
}

.list_pro .left ul li.active .top a {
  color: #007cc3;
}

.list_pro .right {
  width: 70%;
  float: right;
}

.list_pro .right .name,
.show_pro_four .swiper-slide>div .name {
  font-size: 0.18rem;
  line-height: 0.3rem;
  margin: 0.2rem 0 0.05rem;
  color: #282828;
  font-weight: 600;
}

.list_pro .right .col-md-4 {
  margin-bottom: 0.35rem;
}

.list_pro .right .col-md-4>div,
.show_pro_four .swiper-slide>div {
  padding: 0.3rem;
  border: 1px solid #E6EAEF;
  position: relative;
}

.list_pro .right .col-md-4>div::before,
.show_pro_four .swiper-slide>div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #007cc3;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_pro .right .col-md-4:hover>div::before,
.show_pro_four .swiper-slide:hover>div::before {
  width: 100%;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_pro .right .col-md-4:hover img,
.show_pro_four .swiper-slide:hover img {
  transform: scale(1.1);
}

.list_pro .right .col-md-4:hover .name,
.show_pro_four .swiper-slide:hover .name {
  color: #007cc3;
}

.list_pro .right .content .text strong {
  font-size: 1.125rem;
  color: #000;
}

.ny_title {
  font-weight: bold;
  font-size: 0.34rem;
  line-height: 0.45rem;
  position: relative;
  color: #000000;
  z-index: 3;
}

.ny_title span {
  z-index: 3;
}

.ny_title span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.08rem;
  background: #007cc3;
  z-index: -1;
}

.show_pro {
  position: relative;
}

.show_pro .fl,
.show_pro .fr {
  width: 50%;
}

.show_pro .fl {
  padding-right: 0.4rem;
}

.show_pro .fr {
  border: 1px solid #ddd;
}

.show_pro .name {
  font-weight: bold;
  font-size: 0.34rem;
  line-height: 0.45rem;
  color: #231815;
}

.show_pro .text {
  margin: 0.25rem 0 0.55rem;
}

.show_pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: #F1F1F1;
  z-index: -1;
}

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

.bread_pro {
  line-height: 0.7rem;
  border-bottom: 1px solid #F1F1F1;
}

.show_pro_two,
.show_pro_three,
.show_pro_four {
  padding: 0.6rem 0;
}

.show_pro_two .ny_title,
.show_pro_three .ny_title,
.show_pro_four .ny_title {
  margin-bottom: 0.2rem;
}

.show_pro_two ul {
  border-bottom: 1px solid #E6EAEF;

}
.dao_mb {
  margin-bottom: 0.45rem;
}
.daoh ,.nav-wrap,.dao_mb {
  height: 0.7rem;
}
.show_pro_two ul li {
  float: left;

  font-size: 0.2rem;
  line-height: 0.7rem;
  height: 0.7rem;
  color: #231815;
  position: relative;
  cursor: pointer;
}
.show_pro_two ul li  a {
  padding: 0 0.32rem;
}
.show_pro_two ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #007cc3;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.show_pro_two ul li:hover::before,
.show_pro_two ul li.active::before {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  width: 100%;
}

.show_pro_three {
  background: #F1F1F1;
}

.show_pro_three .table>tbody>tr>td {
  border-color: #AAAAAA;
}

.show_pro_three .table>tbody>tr>td:nth-child(odd) {
  background: #E0E0E0;
  border-right: none;
}

.show_pro_three .table>tbody>tr>td,
.show_pro_three .table>tbody>tr>th,
.show_pro_three .table>tfoot>tr>td,
.show_pro_three .table>tfoot>tr>th,
.show_pro_three .table>thead>tr>td,
.show_pro_three .table>thead>tr>th {
  padding: 0.2rem 0.2rem 0.2rem 0.7rem;
  font-size: 0.16rem;
  color: #686868;
}

.show_pro_three .text.c {
  color: #007cc3 !important;
}

body {
  padding-top: 0.8rem;
}

.show_pro_four .swiper-container {
  padding-bottom: 0.6rem;
}

.show_pro_four .swiper-pagination-bullet-active {
  background: #007cc3;
}

.show_pro_two .daoh.active {
  position: fixed;
  top: 0.8rem;
  left: 0;
  width: 100%;
  z-index: 100;
}

.show_pro_two .daoh.active ul {
  padding: 0 2.4rem;
  background-color: #fff;
}

.list_contact .ewm {
  padding-left: 0.3rem;
}

.list_contact .left .name {
  font-size: 0.2rem;
  line-height: 0.55rem;
  color: #111111;
  position: relative;
  padding-left: 0.3rem;
}

.list_contact .left .name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #007cc3;
}

.list_contact .left ul {
  padding-left: 0.3rem;
  margin: 0.25rem 0;
}

.list_contact .left ul li {
  font-size: 0.16rem;
  margin-bottom: 0.15rem;
  line-height: 0.3rem;
  color: #949494;
}

.list_contact .left ul li .iconfont {
  font-size: 0.16rem;
}

.list_contact .left ul li span {
  display: inline-block;
}

.list_contact .left ul li span:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.3rem;
}

.list_contact .right .margin.text {
  margin: 0.25rem 0 0.1rem;
}

.list_contact .right form .name {
  font-size: 0.16rem;
  line-height: 0.45rem;
  color: #232323;
}

.list_contact .right form .name span {
  color: #007cc3;
  font-weight: 600;
}

.list_contact .right form input {
  width: 100%;
  line-height: 0.45rem;
  padding: 0 0.2rem;
  border: 1px solid #D8D8D8;
}

.list_contact .right form textarea {
  width: 100%;
  padding: 0.1rem 0.2rem;
  border: 1px solid #D8D8D8;
  height: 1.3rem;
}

.list_contact .right form button {
  margin-top: 0.3rem;
}

.ny_erji {
  line-height: 0.6rem;
  background: #F7F7F7;
}

.ny_erji li {
  position: relative;
  float: left;
  font-size: 0.16rem;
  color: #333333;
  margin-right: 0.75rem;
}

.ny_erji li a {
  color: #333333;
}

.ny_erji li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  height: 4px;
  background: #007cc3;
}

.ny_erji li:hover::before,
.ny_erji li.active::before {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  width: 100%;
}

.ny_erji li:hover a,
.ny_erji li.active a {
  color: #007cc3;
}

.list_about .text {
  margin-top: 0.15rem;
}
.list_about  {
  padding-bottom: 0;
}
.list_about_two {
  padding-top: 1rem;
}
.list_about_two .name {
  font-size: 0.2rem;
  line-height: 0.35rem;
  color: #000000;
  font-weight: 600;
}

.list_about_two .text {
  font-size: 0.18rem;
  line-height: 0.35rem;
  color: #494949;
}

.list_about_two .content {
  background: url(../img/13.jpg) no-repeat;
  background-size: cover;
  padding: 1rem 0;
}

.list_about_two .content ul {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.6rem;
  width: 48%;
  border-radius: 0.2rem;
}

.list_about_two .content ul li {
  margin-bottom: 0.35rem;
}

.list_about_two .content ul li:last-child {
  margin-bottom: 0;
}

.mt40 {
  margin-top: 0.4rem;
}

/* .list_about_three{
  display:none;
} */

.list_about_three .padding {
  padding: 0.15rem;
  border: 1px solid #EAEAEA;
}

.list_about_three .name {
  line-height: 0.53rem;
  padding: 0 0.15rem;
  font-size: 0.16rem;
  text-transform: uppercase;
  color: #7F7F7F;
  background: #EFEFEF;
}

.list_about_three .swiper-slide-active .name {
  background-image: linear-gradient(90deg, #007cc3 0%, #8fbcfc 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
  color: #fff;
}

.list_about_three .swiper-slide-active .padding {
  border: 1px solid #007cc3;
}

.list_about_three .swiper-button-next,
.list_about_three .swiper-button-prev {
  width: 0.6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  background-size: 0.2rem 0.2rem;
  background-color: #007cc3;
  border-radius: 50%;
}

.list_about_three .swiper-button-next:hover,
.list_about_three .swiper-button-prev:hover {
  background-color: #000;
}

.list_about_four {
  background-color: #F1F1F1;
}

.list_about_four .swiper-slide {
  border: 1px solid #EAEAEA;
  background-color: #fff;
}

.list_about_four .swiper-slide>div {
  padding: 0.38rem 0.55rem;
}

.list_download ul li {
  line-height: 0.6rem;
  margin-bottom: 0.08rem;
  background: #FAFAFA;
  display:flex;
}

.list_download ul li div {
  float: left;
  width: 25%;
  text-align: center;
  font-size: 0.16rem;
}

.list_download ul li div .iconfont {
  color: #007cc3 !important;
  font-size: 0.16rem;
}

.list_download ul li>div:nth-child(1) {
  color: #007cc3;
}

.list_download ul li:hover div:last-child a {
  color: #007cc3;
}

.list_download ul li:first-child {
  background: #007cc3;
}

.list_download ul li:first-child div {
  color: #fff;
}

.list_download_two {
  background: url(../img/16.jpg) no-repeat;
  background-size: cover;
}

.list_download_two .title {
  position: relative;
  padding-bottom: 0.2rem;
}

.list_download_two .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 4px;
  background: #007cc3;
}

.list_download_two .text {
  margin: 0.3rem 0 0.5rem;
}

.list_news .name {
  font-size: 0.28rem;
  line-height: 0.4rem;
  color: 000;
  margin-top: 0.1rem;
}

.list_news .data {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #A0A0A0;
  margin: 0.1rem 0;
}

.list_news .more {
  margin-top: 0.25rem;
}

.list_news .right {
  padding-left: 0.4rem;
}

.list_news ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #E5E5E5;
}

.list_news ul li:first-child {
  padding-top: 0;
}

.show_news .name {
  font-size: 0.28rem;
  line-height: 0.4rem;
  color: 000;
}

.show_news .data {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #A0A0A0;
  margin: 0.2rem 0 0;
}

.show_news .border_top {
  border-top: 1px solid #E5E5E5;
  padding-top: 0.4rem;
  margin-top: 0.4rem;
}

.show_news .border_top .fr {
  width: 90%;
}

.show_news .border_top .fl {
  width: 10%;
}

.show_news .social-share a {
  display: block !important;
  width: 0.8rem;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #d4d4d4;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 0.3rem;
}

.show_news .shangxia {
  border-top: 1px solid #E5E5E5;
  margin-top: 0.77rem;
  padding-top: 0.35rem;
}

.about_news {
  background: url(../img/18.jpg) no-repeat;
  background-size: cover;
}

.about_news .name {
  font-size: 0.28rem;
  line-height: 0.45rem;
}

.about_news .text.line2 {
  margin: 0.05rem 0;
}

.about_news .swiper-slide {
  padding: 0.3rem;
  border: 2px solid #fff;
  background: #fff;
}

.about_news .swiper-slide .more_a {
  position: absolute;
  bottom: 0.2rem;
  right: 0.3rem;
  left: auto;
  opacity: 0;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.about_news .swiper-slide:hover {
  border: 2px solid #007cc3;
}

.about_news .swiper-slide:hover .more_a {
  opacity: 1;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_join .top_join {
  background: #F1F1F1;
  padding: 0.4rem 0.5rem;
  margin-bottom: 0.32rem;
}

.list_join .top_join .title {
  font-size: 0.28rem;
  line-height: 0.45rem;
}

.list_join .top_join form {
  margin-top: 0.15rem;
}

.list_join .top_join form .fl {
  width: 20%;
  margin-right: 0.3rem;
}

.list_join .top_join form .fl:nth-last-child(2) {
  margin-right: 0;
}

.list_join .top_join form select,
.list_join .top_join form input {
  width: 100%;
  height: 0.45rem;
  border: 1px solid #D8D8D8;
  line-height: 0.45rem;
  padding: 0 0.2rem;
  font-size: 0.16rem;
  color: #A0A0A0;
}

.list_join .top_join .butt {
  line-height: 0.45rem;
  height: 0.45rem;
  padding: 0 0.3rem;
  text-align: center;
  font-size: 0.16rem;
  color: #fff;
  width: auto;
  display: inline-block;
  border: none;
  background: #007cc3;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  float: left;
  cursor: pointer;
}

.list_join .top_join .butt:hover {
  background-color: #000;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_join .bot_join li.li0 {
  background: #007cc3;
}

.list_join .bot_join li.li0 .top div {
  color: #fff;
}

.list_join .bot_join li,
.list_qa ul li {
  line-height: 0.6rem;
  background-color: #FAFAFA;
  margin-bottom: 0.1rem;
}

.list_join .bot_join li .text span {
  color: #007cc3;
}

.list_join .bot_join li .top div {
  width: 20%;
}

.list_join .bot_join li .top div,
.list_qa ul li .top div {

  font-size: 0.16rem;
  color: #7F7F7F;
  padding-left: 0.8rem;
  cursor: pointer;
}

.list_join .bot_join .bot,
.list_qa ul li .bot {
  border: 1px solid #CBCDCE;
  padding: 0.55rem 0.8rem;
}

.list_join .bot_join li.active .top,
.list_qa ul li .top {
  background-color: #CBCDCE;
}

.list_join .bot_join li.active .top div,
.list_qa ul li.active .top div {
  color: #fff;
}

.list_qa ul li.active .top {
  background: #007cc3;
}

.mt20 {
  margin-top: 0.2rem;
}

.list_case .name {
  line-height: 0.6rem;
  padding: 0 0.15rem;
  font-size: 0.16rem;

}

.list_case .col-md-4>div {
  border: 1px solid #ddd;
}

.list_case .col-md-4:hover .name {
  background: #007cc3;
  color: #fff;
}

.list_case .col-md-4:hover img {
  transform: scale(1.1);
}

.list_parents .squera {
  width: 20%;
  padding: 0 0.15rem;
  margin-bottom: 0.3rem;
  float: left;
}

.list_parents .squera>div {
  border: 1px solid #ddd;
  padding: 0.1rem;
}
#about1 ,
#about2,
#about3 ,
#about4 {
  position: absolute;
  top: -1.3rem;
}
.list_parents .squera:hover>div {
  border: 1px solid #007cc3;
}

.about_erji.active {
  position: fixed;
  z-index: 99;
  top: 0.79rem;
  width: 100%;
}

.nybanner .bread a:hover {
  color: #007cc3;
}.mobMenu>li>.subDepth>li>a,
.phone_weibu .mobMenu>li>.subDepth>li>a  {
  font-size: 12px;
}

@media (max-width: 1440px) {
  header .center>ul>li {
    padding: 0 0.2rem;
  }
  .section5 .center {
    width: 30%;
  }
  .section5 .center .text {
    font-size: 0.5rem;
  }
}

@media (max-width: 1366px) {
  header .center>ul>li {
    padding: 0 0.15rem;
  }

  header .center {
    width: 75%;
  }
}

@media (max-width: 1280px) {
  header .left {
    width: 10%;
  }
}

@media (max-width: 1095px) {

  .list_contact .row .col-md-4{
    width:38%;
 }
  .list_contact .row .col-md-8{
    width:62%;
 }

}

@media (max-width: 1024px) {
  header {
    display: none;
  }

  html {
    font-size: 50px !important;
  }

  .phone {
    display: block;
    background: #007cc3;
  }

  .phone img {
    height: 40px;
  }
 
  .phone .iconfont {
    color: #fff;
  }

  .container {
    padding: 0 2rem;
  }

  #siteFunctions .hd .lang a.active {
    color: #007cc3;
  }

  .section2,
  .section3,
  .section4,
  .section5,
  .section6 {
    padding: 60px 0;
  }

  .text,
  .entitle,
  .section4 .number,
  .section6 .data,
  .section5 .left .number {
    font-size: 14px;
    line-height: 26px;
  }

  .title {
    line-height: 36px;
    font-size: 26px;
  }

  .more,
  .list_contact .right form button {
    line-height: 40px;
    padding: 0 30px;
  }

  .section3 .right ul li {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .section3 .right .swiper-button-next,
  .section3 .right .swiper-button-prev,
  .section5 .swiper-button-next,
  .section5 .swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .section4 .name,
  .section5 .left .name {
    font-size: 18px;
    line-height: 30px;
    margin-top: 10px;
  }

  .section5 .swiper-button-next {
    right: 5.7rem;
  }

  .section5 .swiper-button-prev {
    right: 7.3rem;
  }

  .section5 .left,
  .section5 .right a {
    height: 6.22rem;
    width: 6.85rem;
  }

  .section5 .center {
    display: none;
  }

  .section3 .row.pr {
    height: 80vh;
  }

  .section4 .swiper-container .swiper-slide>div {
    padding: 0 20px 0 25px;
  }

  .section4 .swiper-container {
    padding-bottom: 45px;
  }

  .section6 .name,
  .list_about_two .name {
    font-size: 16px;
    line-height: 30px;
  }

  .section6 .bot .swiper-pagination {
    margin-top: 10px;
  }

  footer {
    display: none;
  }

  .beian {
    padding: 15px 0;
    background-color: #000;
  }

  .phone_weibu {
    display: block;
  }

  .phone_weibu .mobMenu>li:last-child {
    border-bottom: none;
  }

  .section6 .container,
  .section5 .bot {
    padding-left: 2rem;
  }

  .nybanner .bread {
    font-size: 14px;
  }

  .ny_erji {
    line-height: 50px;
  }

  .ny_erji li,
  .list_about_two .text {
    font-size: 14px;
  }

  .list_about_two .text {
    line-height: 28px;
  }

  .list_about_two .content ul {
    width: 60%;
  }

  .list_about_three .name,
  .list_download ul li,
  .list_join .bot_join li {
    line-height: 50px;
    font-size: 14px;
  }

  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: none;
  }

  .list_about_three .swiper-button-next,
  .list_about_three .swiper-button-prev {
    display: none;
  }

  .list_about_three .swiper-container {
    padding-bottom: 60px;
  }

  .list_about_three .swiper-pagination-bullet-active {
    background: #007cc3;
    width: 15px;
    border-radius: 5px;
  }

  .list_about_four .swiper-slide>div {
    padding: 0.2rem;
  }

  .list_contact .left ul li,
  .list_contact .right form .name {
    font-size: 14px;
    line-height: 30px;
  }

  .list_contact .left .name {
    font-size: 18px;
  }

  .ewm .fl img {
    width: 110px;
  }

  .ewm .fl {
    height: 110px;
  }

  .list_contact .right form input {
    height: 40px;
    line-height: 40px;
  }

  .list_contact .right form textarea {
    height: 180px;
  }

  .list_contact form .col-md-4,
  .list_contact form .col-md-12 {
    margin-top: 10px;
  }

  .list_download ul li div {
    font-size: 14px;
  }

  .list_join .top_join form select,
  .list_join .top_join form input,
.list_join .top_join .butt {
    line-height: 40px;
    height: 40px;
  }

  .list_join .top_join form .fl {
    width: 25%;
  }

  .list_join .top_join form button.fl {
    width: auto;
    height: 40px;
    line-height: 40px;
  }

  .list_news .name,
  .show_news .name {
    font-size: 18px;
    line-height: 40px;
  }

  .list_pro .right .name,
  .show_pro_four .swiper-slide>div .name {
    font-size: 16px;
    line-height: 30px;
  }

  .list_news .data,
  .show_news .data {
    line-height: 26px;
    font-size: 14px;
  }

  .show_news .data {
    margin-top: 0;
  }

  .show_pro_three .table>tbody>tr>td,
  .show_pro_three .table>tbody>tr>th,
  .show_pro_three .table>tfoot>tr>td,
  .show_pro_three .table>tfoot>tr>th,
  .show_pro_three .table>thead>tr>td,
  .show_pro_three .table>thead>tr>th {
    font-size: 14px;
  }

  .list_pro .left ul li .top {
    line-height: 30px;
  }

  .show_pro .fr {
    margin-top: 20px;
  }

  .show_pro_two ul li {
    font-size: 16px;
    line-height: 52px;
  }

  .show_pro_four .swiper-container {
    padding-bottom: 45px;
  }

  .list_pro .left ul li .top {
    font-size: 14px;
  }

  .list_pro .left .ny_title,
  .about_news .name {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 990px) {
  .banner .img img {
    height: auto;
  }
  .banner .swiper-container {
    margin-top: 0;
}
.banner .swiper-pagination { 
  bottom: 15px;
}
  .section3 .left,
  .section3 .right {
    position: relative;
    transform: translateY(0);
    width: 100%;
  }

  .section3 .row.pr {
    height: auto;
  }

  .section2 .left {
    padding-right: 15px;
  }

  body {
    padding-top: 60px;
  }

  .list_about .col-md-6:last-child {
    margin-top: 15px;
  }

  .nybanner .bread,
  .nybanner .icon {
    display: none;
  }

  .list_join .bot_join li .top div {
    padding-left: 0;
    text-align: center;
  }

  .list_join .bot_join .bot {
    padding: 15px;
  }

  .list_join .bot_join .bot .fr {
    float: none;
    margin-top: 15px;
  }

  .list_join .bot_join .bot {
    float: none;
  }

  .list_join .bot_join li .top div {
    font-size: 14px;
    line-height: 20px;
  }.list_join .bot_join li>.clearfix {
    padding: 15px 10px;
  }.list_join .bot_join li .top div:last-child {
    text-align: right;
    /* width: 10%; */
  }
   /*.list_join .bot_join li .top div:nth-last-child(2){
 
    width: 30%;
  }
  .list_join .bot_join li .top div:nth-child(1)  {
    width: 40%;
  }
  .list_join .bot_join li .top div:nth-child(2),
  .list_join .bot_join li .top div:nth-child(3) {
    width: 10%;
  } */
  .list_join .top_join {
    padding: 15px;
  }

  .list_join .top_join form button.fl {
    font-size: 14px;
  }

  .show_pro::before {
    width: 100%;
  }

  .bread_pro {
    display: none;
  }

 .section6 .bot .swiper-pagination {
    width: 50%;
  }
.list_contact .row .col-md-4{
    width:100%;
 }
  .list_contact .row .col-md-8{
    width:100%;
 }

.list_case .col-md-4{
 margin-bottom:20px;
}

.list_case .col-md-4 img{
  width:100%;
}
.list_case .name{
  font-size:16px;
  line-height:26px;
  padding: 10px 0;
}

}

@media (max-width: 770px) {

  .section6 .container,
  .section5 .bot,
  .container {
    padding: 0 15px;
  }

  .banner .hover {
    width: 100%;
  }

  .banner .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
  }

  .banner .p1 {
    font-size: 26px;
  }

  .section2,
  .section3,
  .section4,
  .section5,
  .section6 {
    padding: 25px 0;
  }

  .section2 .left ul li .text {
    font-size: 12px;
  }

  .section3 .right .swiper-button-next {
    right: 0;
  }

  .section3 .right .swiper-button-prev {
    left: 0;
  }

  .section3 .right ul {
    display: none;
  }

  .section4 .swiper-container .swiper-slide>div {
    padding: 0 10px 0 15px;
  }

  .section5 .left,
  .section5 .right {
    width: 100%;
    height: auto;
  }

  .section5 .right {
    display: none;
  }

  .section5 .right a {
    margin: 0 0 0;
    width: 100%;
  }

  .section5 .swiper-button-next,
  .section5 .swiper-button-prev {
    display: none;
  }

  .section5 .swiper-container {
    padding-bottom: 45px;
  }

  .section5 .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
  }

  .section5 .swiper-pagination-bullet-active {
    width: 0.27rem;
    border-radius: 4px;
  }

  .section6 .container {
    padding: 0 0 0 15px;
  }

  .section6 .bot.container {
    padding: 0 15px !important;
  }

  .section6 .bot .swiper-pagination {
    width: 55%;
  }

  .beian .text {
    font-size: 14px;
    line-height: 24px;
  }

  .ny_erji li {
    margin-right: 15px;
  }

  .ptb100 {
    padding: 25px 0;
  }

  .list_about_two .content ul {
    width: 100%;
    padding: 20px;
  }

  .list_download ul li div {
    line-height: 24px;
  }

  .list_download ul li {
    padding: 15px 0;
  }

  .list_download_two {
    background-position: center center;
  }

  .list_join .top_join form .fl {
    width: 100%;
    margin-bottom: 10px;
  }

  .list_join .top_join form select,
  .list_join .top_join form input {
    font-size: 14px;
  }

  .list_join .top_join form button.fl {
    width: 100%;
    margin-right: 0;
  }

  .list_pro .left {
    width: 100%;
  }

  .list_pro .container {
    padding: 0 15px;
  }

  .list_pro .left {
    padding: 15px;
  }

  .list_pro .right {
    width: 100%;
    margin-top: 20px;
  }

.show_pro .fl, .show_pro .fr {
  width: 100%;
}

  .show_news .border_top .fl {
    display: none;
  }

  .show_news .border_top .fr {
    width: 100%;
  }
}