.container {
  max-width: 1440px !important;
}

.web_head .container {
  max-width: 1830px !important;
  height: 100%;
}

.head_con{
  margin-left: 20px;
}

.indexRightFix {
  position: fixed;
  right: 0;
  bottom: 14%;
  z-index: 9999999;
}

.RightFixbox {
  display: flex;
  flex-direction: column;
  background: #324fbb;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: all ease .3s;
  position: relative;
  right: 0;
}

.ir_backtop {
  transform: rotate(180deg);
  width: 45px;
  height: 0px;
  cursor: pointer;
  transition: all ease .3s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ir_backtop i {
  color: #fff;
}

.ir_backtop.ir_hi {
  height: 45px;
  opacity: 1;
}

.irBox {
  position: relative;
  transition: all ease .3s;
  cursor: pointer;
}

.irBox_i {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  pointer-events: none;
  transition: all ease .3s;
}

.irBox_i i {
  color: #fff;
}

.irBox_p {
  position: absolute;
  right: 55px;
  top: 0;
  background: #fff;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all ease .3s;
  padding: 5px 5px 5px 10px;
  -webkit-box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
  box-shadow: 0 1px 3px rgb(18 18 18 / 10%);
  min-width: 230px;
  min-height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.irBox_p a {

  font-size: 18px;
  color: #324fbb;
}

.irBox:hover .irBox_p {
  z-index: 3;
  opacity: 1;
  pointer-events: visible;
  right: 45px;
}

.ir_backbottom {
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all ease .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ir_backbottom {
  color: #fff;
}

.ir_backright {
  margin-top: 10px;
  background: #324fbb;
  width: 45px;
  height: 45px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  cursor: pointer;
  transition: all ease .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 0;
}

.ir_toright {
  right: -45px;
}

.ir_toright+.ir_backright {
  width: 30px;
  height: 30px;
  right: -15px;
  position: relative;
}

.ir_backright i {
  color: #fff;
}

.irBox:hover {
  background: #1f3a9d;
}

.irBox:hover .irBox_i {
  opacity: .6;
}



/* index_pro */
.index_pro {
  background: url(../images/ipbg.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0;
}

.indexPro {
  display: flex;
  align-items: center;
}

.indexPro_ltop {
  margin-bottom: 50px;
}

.indexPro_ltop h2 {
  font-size: 36px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.indexPro_ltop p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.ipdesBox h4 {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ipdesBox p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.ipdesBoxbtn {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.indexBtn {
  display: inline-block;
  background: transparent;
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: all ease 0.3s;
}

.indexBtn:hover {
  color: #fff !important;
  background-color: #ec761c !important;
  border-color: #ec761c !important;
}

.ipdesBoxbtn a {
  margin-right: 30px;
  padding: 8px 25px;
}

.ipSwiperDes .swiper-slide .ipdesBox {
  opacity: 0;
}

.ipSwiperDes .swiper-slide-active .ipdesBox {
  opacity: 1;
}

.indexPro_mid {
  padding-left: 5%;
}

.indexPro_midImg {
  width: 28vw;
  height: 28vw;
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 50%;
  position: relative;
}

.ipSwiperImg {
  background-color: #fff;
}

.ipSwiperImg img {
  border-radius: 50%;
  transition: all 0.5s;
  transform: scale(0.5);
  opacity: 0;
}

.ipSwiperImg .swiper-slide-active img {
  transform: scale(1);
  opacity: 1;
}

.ipSwiperImg:hover img {
  transform: scale(1.1);
}

@keyframes mycircle {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

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

.indexPro_midcircle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px #fff solid;
  animation: mycircle 10s infinite linear;
}

.indexPro_midcircle::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 50%;
}

.ipSwiperImg {
  border-radius: 50%;
}

.indexPro_right {
  height: 80vh;
  max-height: 1440px;
  position: relative;
  padding-left: 50px;
}

.ipSwiperThumb {
  height: 100%;
  position: relative;
  padding-bottom: 40px;
}

.ipSwiperThumb_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ipSwiperThumbImg {
  overflow: hidden;
  display-radio: 1;
  width: 80px;
  height: 80px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  border: 2px #fff solid;
  transition: all 0.5s;
  opacity: 0.5;
  margin-left: 20px;
}

.ipSwiperThumbImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ipSwiperThumb_box p {
  line-height: 1.6;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  transition: all 0.5s;
}

.ipSwiperThumb .swiper-wrapper {
  padding: 20px 0;
}

.ipSwiperThumb .swiper-button-next::after,
.ipSwiperThumb .swiper-button-prev::after {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
}

.ipSwiperThumb .swiper-slide {
  display: flex;
  justify-content: flex-end;
}

.ipSwiperThumb .swiper-slide-thumb-active .ipSwiperThumbImg {
  border-color: #ec761c;
  opacity: 1;
}

.ipSwiperThumb .swiper-slide-thumb-active p {
  padding-right: 20px;
}

.ipSwiperThumb .swiper-button-prev {
  left: auto;
  right: 27px;
  top: 6px;
  bottom: auto;
  transform: rotate(90deg);
}

.ipSwiperThumb .swiper-button-next {
  left: auto;
  right: 27px;
  bottom: 0;
  top: auto;
  transform: rotate(90deg);
}

.ipSwiperThumb::after {
  content: "";
  display: block;
  width: 1px;
  height: 100vh;
  max-height: 1440px;
  border-right: 1px #fff dashed;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-40px, -50%);
  opacity: 0.3;
}



/* index_about */
.index_about {
  padding: 80px 0;
  background: url(../images/iabg.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.indexTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.indexTitle h1,
.indexTitle h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 5px;
}

.indexTitle p {
  width: 90%;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.indexAboutMain {
  width: 70%;
  margin: 40px auto;
}

.indexAbout_video {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.indexAbout_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.index_aboutBot {
  display: flex;
  justify-content: center;
}



/* index_data */
.index_data {
  padding: 80px 0;
}

.index_data .indexTitle,
.index_partner .indexTitle,
.index_feedback .indexTitle,
.index_news .indexTitle {
  color: #111;
}

.indexData_main {
  margin-top: 50px;
}

.indexDataBox {
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.indexData_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: 20px 0; */
  padding-bottom: 20px;
}

.indexData_box img {
  width: 40px;
}

.indexData_box h4 {
  margin-top: 5px;
  line-height: 1.3;
  font-size: 44px;
  color: #324fbb;
  font-style: italic;
  font-weight: bold;
  transition: all ease 0.3s;
}

.indexData_box span {
  line-height: 1.5;
  font-size: 18px;
  color: #324fbb;
}

.indexData_line {
  background-color: #ec761c;
  width: 50px;
  height: 2px;
  margin: 10px auto;
}

.indexData_box p {
  font-size: 18px;
  color: #111;
}

.indexDataBox:nth-child(3n) {
  border-right: none;
}

.indexDataBox:nth-child(n+4) {
  border-bottom: none;
}

.indexDataBox:nth-child(n+4) .indexData_box {
  padding-top: 30px;
  padding-bottom: 0;
}


/* index_customer */
.index_customer {
  position: relative;
}

.index_customer .indexTitle {
  position: absolute;
  top: 12%;
  width: 100%;
}

.indexMap_point {
  cursor: pointer;
  z-index: 0;
  position: absolute;
  opacity: 0.8;
  transform: translate(-50%, -50%);
  outline: none;
  border-radius: 20px;
  background: rgb(41, 52, 80);
  transition: opacity 0.25s ease-in-out 0.25s;
}

.indexCusto_i {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: #ffffff;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -14px 0 0 -13px;
}

.indexCusto_i::after {
  content: '';
  width: 12px;
  height: 12px;
  margin: 9px 0 0 8px;
  background: #2f2f2f;
  position: absolute;
  top: -4px;
  right: 5px;
  border-radius: 50%;
}

.indexCusto_box:last-child .indexCusto_i {
  background: #ec761c;
}

.indexCusto_box:last-child .indexCusto_i::after {
  background: #ffffff;
}

@keyframes pulsate {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
    transform: translate(-50%, -50%)
  }

  100% {
    width: 40px;
    height: 30px;
    opacity: 0;
    transform: translate(-50%, -50%)
  }
}

.indexCusto_pulse {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 10%;
  top: 0;
  margin: 11px 0px 0px -4px;
  transform: rotateX(55deg);
  z-index: -2;
}

.indexCusto_pulse::after {
  content: "";
  border-radius: 50%;
  height: 30px;
  width: 30px;
  position: absolute;
  margin: 0 0 0 -5px;
  animation: pulsate 1s ease-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-iteration-count: infinite;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-box-shadow: 0 0 1px 2px #89849b;
  box-shadow: 0 0 1px 2px #ffffff;
  animation-delay: 1.1s;
}

.indexCusto_main {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  position: relative;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: overlay;
  background: #0c4266;
  border-radius: 20px;
}

.indexCusto_y {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.indexCusto_y h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px dashed #fff;
  padding-bottom: 10px;
  width: 90%;
  margin: 0 auto 10px;
}

.indexCusto_y p {
  font-size: 15px;
  line-height: 1.5;
  width: 90%;
  margin: 0 auto;
}

.indexMap_point:hover,
.indexMap_point:hover {
  opacity: 1;
  width: 300px;
  height: 220px;
  color: #e5e5e5;
  z-index: 1;
  transition: opacity 0.25s ease-in-out;
}

.indexMap_point:hover .indexCusto_main,
.indexMap_point:hover .indexCusto_main {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  overflow: hidden;
}


/* index_partner */
.index_partner {
  padding: 110px 0 120px;
  background: url(../images/ipartnerbg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.index_partner::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.index_partner .container {
  position: relative;
  z-index: 9;
}

.indexPartner {
  margin-top: 30px;
}

.ipartnerSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: calc((100% - 30px) / 2) !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  height: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ipartnerSwiper .ipartner_box {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 50%;
}

.ipartnerSwiper .ipartner_box img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  border-radius: 5px;
  transition: all ease 0.5s;
}

.ipartner_box:hover img {
  transform: scale(1.15);
}

.ipartnerSwiper.swiper-grid-column>.swiper-wrapper {
  flex-direction: row;
}

.ipartnerSwiper {
  padding-bottom: 70px;
}

.ipartnerSwiper .swiper-pagination-bullet {
  width: 100px !important;
  height: 6px !important;
  display: inline-block;
  border-radius: 5px !important;
  background: #fff;
}

.ipartnerSwiper .swiper-pagination-bullet-active {
  background: #005ac8;
}



/* index_contact */
.index_contact {
  padding: 150px 0 160px;
  background: url(../images/icontactbg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.indexContact {
  margin-top: 40px;
}

.indexContact #form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.indexContact #form .list {
  width: 32%;
}

.indexContact #form p {
  width: 100%;
}

.indexContact #form .list:nth-child(4) {
  width: 100%;
}

.indexContact .yandex-form #form #submit {
  background-color: transparent;
  border: 1px solid #fff;
  margin-bottom: 0;
  cursor: pointer;
  border-radius: 30px;
  transition: all ease 0.3s;
}

.indexContact .yandex-form #form #submit:hover {
  background-color: #ec761c;
  border-color: transparent;
}


/* index_feedback */
.index_feedback {
  padding: 120px 0 110px;
  background: url(../images/ifbg.png);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.indexFeed_main {
  margin-top: 40px;
}

.indexFeed_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #fff;
  padding: 3vw 2vw;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  height: 100%;
  background-color: #fff;
  transition: all ease 0.5s;
}

.indexFeedBox:hover .indexFeed_box {
  transform: translateY(-20px);
}

.indexFeed_img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ec761c;
  border-radius: 50%;
}

.indexFeed_box h6 {
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 30px;
  font-weight: bold;
}

.indexFeed_box p {
  line-height: 1.5;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.indexFeed_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.indexFeed_btn .indexBtn {
  color: #111;
  border-color: #333;
}


/* index_honor */
.index_honor {
  padding: 110px 0 130px;
  background: url(../images/ihbg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.index_honor .container {
  /* max-width: 1600px !important; */
}

.indexHonor_top {
  display: flex;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #e9f5ff;
  margin-top: 30px;
  margin-bottom: 40px;
}

.indexHonor_top h4 {
  display: block;
  width: 50%;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  line-height: 3;
  color: #000;
}

.indexHonor_top h4.active {
  color: #fff;
  background-color: #005ac8;
}

.ihonor1Swiper {
  position: relative;
  padding: 0 60px;
}

.ihonor2Swiper {
  position: relative;
  padding: 0 60px;
}


.indexHonor_bBox .swiper-button-next {
  /* right: 0; */
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  background-color: #fff;
  z-index: 9999;
  position: absolute;
  color: #333;
  border-radius: 50%;
  transition: all ease 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.indexHonor_bBox .swiper-button-prev {
  /* left: 0; */
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  background-color: #fff;
  z-index: 9999;
  position: absolute;
  color: #333;
  border-radius: 50%;
  transition: all ease 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.indexHonor_bBox .swiper-button-next::after,
.indexHonor_bBox .swiper-button-prev::after {
  font-size: 22px;
}

.indexHonor_bBox .swiper-button-prev:hover,
.indexHonor_bBox .swiper-button-next:hover {
  background-color: #005ac8;
  color: #fff;
}

.indexHonor_box {
  background-color: #fff;
  color: #000;
}

.indexHonor_Img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 45%;
}

.indexHonor_Img img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
}

.indexHonor_des {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.indexHonor_des h3 {
  font-size: 18px;
  text-align: center;
}

.indexHonor_des p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 5px auto;
  width: 90%;
  text-align: center;
  height: 100%;
  position: relative;
}

.ihonor1Swiper .swiper-slide,
.ihonor2Swiper .swiper-slide {
  position: relative;
  height: 100%;
  background-color: #fff;
  height: initial;
}

.ihonor1Swiper .swiper-slide::before,
.ihonor2Swiper .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.ihonor1Swiper .swiper-slide-active::before,
.ihonor2Swiper .swiper-slide-active::before {
  display: none;
}

.ihonor1Swiper .swiper-slide:hover img,
.ihonor2Swiper .swiper-slide:hover img {
  transform: scale(1.1);
}

.indexHonor_bBox.none {
  display: none;
}


/* index_news */
.index_news {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.indexNews {
  margin-top: 50px;
}

.iNewsLeft {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 100%;
}

.iNews_lbox {
  flex: 1;
  padding: 15px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iNews_lbox:nth-child(1) {
  border-right: 1px solid #ddd;
}

.iNews_lbox:hover img {
  transform: scale(1.15);
}

.iNews_lbox:hover h6 {
  color: #005ac8;
}

.iNews_lImg {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 100%;
}

.iNews_lImg img {
  width: 100%;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}

.iNews_lDes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iNews_lDes h6 {
  line-height: 1.6;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  margin: 20px 0 10px;
  text-align: center;
  transition: all 0.5s ease;
}

.iNews_lDes p {
  line-height: 1.3;
  font-size: 14px;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  text-align: center;
  margin-bottom: 10px;
}

.iNewsRight {
  height: 100%;
  position: relative;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.iNews_Rbox {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 25px 10px;
  transition: all ease 0.3s;
  cursor: pointer;
  border-bottom: 2px #f4f4f4 solid;
}

.iNews_Rbox:nth-last-child(1) {
  border-bottom: none;
}

.iNews_Rbox:hover {
  background-color: #005ac8;
  transition: all ease 0.3s;
}

.iNews_Rbox:hover a,
.iNews_Rbox:hover .iNews_Rdes,
.iNews_Rbox:hover .iNews_Rtimes span,
.iNews_Rbox:hover .iNews_Rtimes h2,
.iNews_Rbox:hover .iNews_Rdes span {
  color: #fff
}

.iNews_Rtimes {
  text-align: center;
  border-right: 2px #ddd solid;
  flex: 0 18%;
  padding-right: 10px;
}

.iNews_Rtimes span {
  color: #555;
  font-size: 14px;
}

.iNews_Rtimes h2 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.iNews_Rdes {
  flex: 0 82%;
  padding: 0 20px;
}

.iNews_Rdes h2 {
  color: #555;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.iNews_Rdes span {
  color: #555;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: bold;
}

.iNews_Rdes p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.indexNews_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.indexNews_btn .indexBtn {
  color: #000;
  border-color: #000;
}

/* footer */
footer {
  background-color: #222222;
  padding-top: 95px;
  color: #fff;
}

.footer_lBox {
  display: flex;
  flex-direction: column;
}

.footer_lBox h4,
.footer_mid h4 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer_lBox a {
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  opacity: 0.7;
  transition: all ease 0.3s;
  margin-bottom: 10px;
}

.footer_lBox a:hover {
  opacity: 1;
}

.footer_mid {
  height: 100%;
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_mid h6,
.footer_mid span,
.footer_mid a {
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 10px;
  transition: all ease 0.3s;
}

.footer_mid p a:hover {
  opacity: 1;
}

.footer_right {
  display: flex;
  flex-wrap: wrap;
}

.footer_rbox {
  position: relative;
  width: 50%;
}

.footer_rdes {
  position: absolute;
  left: 50%;
  bottom: 150%;
  width: 120px;
  padding: 5px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0);
  z-index: 20;
}

.footer_rbox:hover .footer_rdes {
  opacity: 1;
  visibility: visible;
  bottom: 100%;
}

.footer_rbtn {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.footer_ri {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #9da3a3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.footer_ri i {
  color: #222222;
  font-size: 20px;
}

.footer_rbtn p {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  transition: all ease 0.3s;
}

.footer_rbox:hover .footer_rbtn p {
  opacity: 1;
}

.footerBot {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerBot p {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
  text-align: center;
}

/* shi pei */
@media (max-width:575px) {
  .banner .swiper-horizontal>.swiper-pagination-bullets {
    display: none;
  }

  /* index_pro */
  .index_pro {
    padding: 30px 0;
  }

  .indexPro_ltop h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
  }

  .indexPro_ltop p {
    text-align: center;
  }

  .indexPro_ltop {
    margin-bottom: 25px;
  }

  .ipdesBoxbtn {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .ipdesBoxbtn a {
    margin-bottom: 10px;
  }

  .indexPro_midImg {
    width: 100%;
    height: 100%;
  }

  .indexPro_mid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    border-radius: 50%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .indexPro_right {
    flex: none;
    width: 100%;
    padding: 0px 15px;
    height: 16vh;
  }

  .ipSwiperThumb .swiper-button-next {
    bottom: -15px
  }

  .ipSwiperThumb {
    padding-bottom: 40px;
  }

  .ipSwiperThumb_box {
    justify-content: space-between;
    width: 100%;
  }

  /* index_about */
  .index_about {
    padding: 40px 0;
  }

  .indexTitle h1,
  .indexTitle h2 {
    font-size: 30px;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-all;
    margin-bottom: 10px;
  }

  .indexBtn {
    font-size: 14px;

  }

  .indexAboutMain {
    width: 100%;
    margin: 20px auto;
  }


  /* index_data */
  .index_data {
    padding: 40px 0 10px;
  }

  .indexData_main {
    margin-top: 30px;
  }

  .indexDataBox {
    border: none;
    margin-bottom: 30px;
  }

  .indexData_box {
    border-bottom: 1px solid #ebebeb;
  }

  .indexData_box h4 {
    line-height: 1.5;
    font-size: 36px;
  }


  /* index_customer */
  .index_customer .indexTitle h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .indexCusto_y h2 {
    font-size: 20px;
  }

  .indexCusto_y p {
    font-size: 14px;
  }



  /* index_partner */
  .index_partner {
    padding: 60px 0 40px;
  }

  .indexPartner {
    margin-top: 10px;
  }

  .ipartnerSwiper .swiper-slide {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .ipartnerSwiper .swiper-pagination-bullet {
    width: 30px !important;
  }

  .ipartnerSwiper {
    padding-bottom: 40px;
  }


  /* index_contact */
  .index_contact {
    padding: 50px 0 60px;
  }

  .indexContact #form .list {
    width: 100%;
  }

  .indexContact {
    margin-top: 20px;
  }

  .indexContact .yandex-form #form .list p {
    line-height: 1;
  }

  /* index_feedback */
  .index_feedback {
    padding: 40px 0;
  }

  .indexFeedBox {
    margin-bottom: 30px;
  }

  .indexFeed_btn {
    margin-top: 10px;
  }

  /* index_honor */
  .index_honor {
    padding: 50px 0 60px;
  }

  .indexHonor_top h4 {
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ihonor1Swiper,
  .ihonor2Swiper {
    padding: 0;
  }

  /* index_news */
  .index_news {
    padding: 40px 0;
  }

  .indexNews {
    margin-top: 30px;
  }

  .iNewsLeft {
    flex-direction: column;
  }

  .iNews_lbox {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }


  /* footer */
  footer {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .footer_mid {
    padding: 20px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
  }

  .footer_right {
    padding-top: 30px;
  }

  .footerBot {
    margin-top: 10px;
  }
  
  .indexMap_point:hover {
    width: 106px;
    height: 280px;
    z-index: 2;
  }
}

@media (min-width:576px) and (max-width:767px) {
  .banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 40px !important;
  }

  .banner .swiper-pagination-bullet {
    width: 50px;
  }

  /* .index_pro */
  .index_pro {
    padding: 45px 0;
  }

  .indexPro_ltop h2 {
    font-size: 32px;
  }

  .ipdesBoxbtn {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .indexPro_midImg {
    width: 100%;
    height: 100%;
  }

  .indexPro_mid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    border-radius: 50%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .indexPro_right {
    padding: 0px 15px;
    height: 50vh;
  }

  .ipSwiperThumb_box p {
    font-size: 16px;
    flex: 1;
    word-wrap: break-word;
    word-break: break-all;
  }

  .ipSwiperThumb .swiper-slide-thumb-active p {
    padding-right: 0;
  }

  /* index_about */
  .index_about {
    padding: 45px 0 50px;
  }

  .indexTitle h1,
  .indexTitle h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .indexAboutMain {
    width: 100%;
    margin: 30px auto;
  }

  .index_data {
    padding: 45px 0;
  }

  .indexDataBox {
    border-right: 1px solid #ebebeb !important;
    border-bottom: 1px solid #ebebeb !important;
  }

  .indexDataBox:nth-child(2n) {
    border-right: none !important;
  }

  .indexDataBox:nth-child(n+5) {
    border-bottom: none !important;
  }

  .indexData_box {
    padding: 20px 0 !important;
  }



  .indexMap_point:hover {
    width: 200px;
    z-index: 2;
  }
  
  .indexCusto_y h2 {
    font-size: 30px;
  }

  .indexCusto_y p {
    font-size: 16px;
  }

  .index_partner {
    padding: 60px 0;
  }

  .indexPartner {
    margin-top: 10px;
  }

  .ipartnerSwiper {
    padding-bottom: 50px;
  }

  .ipartnerSwiper .swiper-pagination-bullet {
    width: 50px !important;
  }

  .index_contact {
    padding: 60px 0 70px;
  }

  .index_contact .yandex-form #form .list p {
    line-height: 1.3;
  }

  .index_feedback {
    padding: 50px 0;
  }

  .indexFeedBox {
    margin-bottom: 30px;
  }

  .indexFeed_btn {
    margin-top: 20px;
  }

  .index_honor {
    padding: 50px 0 70px;
  }

  .indexHonor_top {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  /* index_news */
  .index_news {
    padding: 50px 0;
  }

  .indexNews {
    margin-top: 30px;
  }

  .iNews_left {
    margin-bottom: 30px;
  }

  footer {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .footer_mid {
    height: auto;
    margin-top: 30px;
    padding: 30px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer_rbox {
    position: relative;
    width: 25%;
  }

  .footerBot {
    margin-top: 10px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 40px !important;
  }

  .banner .swiper-pagination-bullet {
    width: 50px;
  }

  /* .index_pro */
  .ipdesBoxbtn {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .indexPro_midImg {
    width: 100%;
    height: 100%;
  }

  .indexPro_mid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    border-radius: 50%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .indexPro_right {
    padding: 0px 15px;
    height: 55vh;
  }

  .ipSwiperThumb_box p {
    font-size: 16px;
    flex: 1;
    word-wrap: break-word;
    word-break: break-all;
  }

  .ipSwiperThumb .swiper-slide-thumb-active p {
    padding-right: 0;
  }

  /* index_about */
  .indexTitle h1,
  .indexTitle h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .indexAboutMain {
    width: 100%;
    margin: 30px auto;
  }

  .index_data {
    padding: 45px 0;
  }

  .indexDataBox {
    border-right: 1px solid #ebebeb !important;
    border-bottom: 1px solid #ebebeb !important;
  }

  .indexDataBox:nth-child(2n) {
    border-right: none !important;
  }

  .indexDataBox:nth-child(n+5) {
    border-bottom: none !important;
  }

  .indexData_box {
    padding: 20px 0 !important;
  }


  .indexMap_point:hover {
    width: 240px;
    z-index: 2;
  }

  .indexCusto_y h2 {
    font-size: 30px;
  }

  .indexCusto_y p {
    font-size: 16px;
  }

  .index_partner {
    padding: 60px 0;
  }

  .indexPartner {
    margin-top: 10px;
  }

  .ipartnerSwiper {
    padding-bottom: 50px;
  }

  .ipartnerSwiper .swiper-pagination-bullet {
    width: 50px !important;
  }

  .index_contact {
    padding: 60px 0 70px;
  }

  .index_feedback {
    padding: 50px 0;
  }

  .indexFeedBox {
    margin-bottom: 30px;
  }

  .indexFeed_btn {
    margin-top: 20px;
  }

  .index_honor {
    padding: 50px 0 70px;
  }

  .indexHonor_top {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  /* index_news */
  .index_news {
    padding: 50px 0;
  }

  .indexNews {
    margin-top: 30px;
  }

  .iNews_left {
    margin-bottom: 30px;
  }

  footer {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .footer_left {
    margin-bottom: 30px;
  }

  .footer_mid {
    height: 100%;
    padding: 0;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footerBot {
    margin-top: 10px;
  }
}

@media (min-width:992px) and (max-width:1200px) {
  .banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 40px !important;
  }

  /* .index_pro */
  .indexPro_ltop {
    margin-bottom: 20px;
  }

  .ipdesBoxbtn {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .ipdesBoxbtn a {
    margin-bottom: 10px;
  }

  .indexPro_midImg {
    width: 100%;
    height: 100%;
  }

  .indexPro_mid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    border-radius: 50%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .indexPro_right {
    padding: 0px 15px;
    height: 55vh;
  }

  .ipSwiperThumb_box p {
    font-size: 16px;
    flex: 1;
    word-wrap: break-word;
    word-break: break-all;
  }

  .ipSwiperThumb .swiper-slide-thumb-active p {
    padding-right: 0;
  }

  /* index_about */
  .indexAboutMain {
    width: 80%;
  }

  .index_partner {
    padding: 80px 0;
  }

  .indexPartner {
    margin-top: 10px;
  }

  .ipartnerSwiper {
    padding-bottom: 50px;
  }


  .indexFeed_btn {
    margin-top: 20px;
  }

  .indexHonor_top {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .index_contact,
  .index_feedback {
    padding: 100px 0;
  }

  /* index_news */
  .indexNews {
    margin-top: 30px;
  }

  .iNews_lbox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .iNews_Rdes {
    padding-right: 0;
  }

  .iNews_Rbox {
    padding: 15px 10px;
  }

  footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width:1201px) and (max-width:1440px) {
  .banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 40px !important;
  }

  /* .index_pro */
  .indexPro_ltop {
    margin-bottom: 20px;
  }

  .ipdesBoxbtn {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .ipdesBoxbtn a {
    margin-bottom: 10px;
  }

  .indexPro_midImg {
    width: 100%;
    height: 100%;
  }

  .indexPro_mid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    border-radius: 50%;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .indexPro_right {
    height: 70vh;
  }

  .ipSwiperThumb_box p {
    flex: 1;
    word-wrap: break-word;
    word-break: break-all;
  }

  .index_contact,
  .index_feedback,
  .index_honor,
  .index_partner {
    padding: 100px 0;
  }
}

@media (min-width:1401px) and (max-width:1680px) {
  .ipdesBoxbtn {
    flex-wrap: wrap;
  }

  .ipdesBoxbtn a {
    margin-bottom: 10px;
  }

  .indexPro_midImg {
    width: 100%;
    height: 100%;
  }

  .indexPro_mid {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .indexPro_right {
    height: 80vh;
  }

  .ipSwiperThumb_box p {
    flex: 1;
    word-wrap: break-word;
    word-break: break-all;
  }

  .index_contact,
  .index_feedback,
  .index_honor,
  .index_partner {
    padding: 110px 0;
  }
}

.bannerSwiper .swiper-slide {
    height: auto;
}

.bannerSwiper .swiper-slide img{
    height: 100%;
}