/* bannersvg */
@-webkit-keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-o-keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes bannerSvg {
  0% {
    stroke-dashoffset: 100;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes aScale {
  from {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes aScale {
  from {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes aScale {
  from {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes aScale {
  from {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes rotate {
  from {
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.bannerSwiper {
  overflow: hidden;
}

.bannerSwiper .bannerVideo,
.bannerSwiper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  /* min-height: 300px; */
}

.bannerSwiper .bannerItem {
  position: relative;
}

.bannerPagina {
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0;
  z-index: 2;
}

.bannerPagina span {
  /* @include inline-top; */
  position: relative;
  /* margin-left: 1rem; */
  margin: 0 15px;
  cursor: pointer;
  display: inline-block;
  width: 30px !important;
  height: 30px !important;
}

.bannerPagina span:nth-of-type(1) {
  margin-left: 0;
}

.bannerPagina span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}

.bannerPagina span::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}

.bannerPagina span svg {
  fill: none;
  stroke: #e50042;
  stroke-width: 1px;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.bannerPagina span.active::before {
  opacity: 1;
}

.bannerPagina span.active svg {
  -webkit-animation: bannerSvg 3s linear forwards;
  -moz-animation: bannerSvg 3s linear forwards;
  -o-animation: bannerSvg 3s linear forwards;
  animation: bannerSvg 3s linear forwards;
}

@media only screen and (min-width: 996px) {
  .bannerCon {
    position: relative;
 /*   min-height: 300px;*/
    margin-top: 70px;
  }
}

.bannerCon {
  position: relative;
  /* min-height: 300px; */
}

.bannerCon .bannerText {
  left: 50%;
  bottom: 13px;
  z-index: 5;
  height: auto;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, 0%);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  line-height: 1;

}

.bannerCon .prevBox {
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  position: absolute;
}

.bannerCon .prevBox:hover .bannerPrev {
  opacity: 1;
  visibility: visible;
}

.bannerCon .nextBox {
  width: 30%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 5;
  position: absolute;
}

.bannerCon .nextBox:hover .bannerNext {
  opacity: 1;
  visibility: visible;
}

.bannerCon .bannerNext,
.bannerCon .bannerPrev {
  width: max(30px, 0.5rem);
  height: max(30px, 0.5rem);
  border: 1px solid #ccc;
  border-radius: 50%;
  z-index: 10;
  top: 50%;
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.bannerCon .bannerNext:hover,
.bannerCon .bannerPrev:hover {
  background: -webkit-linear-gradient(left, #35a5f5 0%, #0a7ac9 100%);
  background: -moz-linear-gradient(left, #35a5f5 0%, #0a7ac9 100%);
  background: -o-linear-gradient(left, #35a5f5 0%, #0a7ac9 100%);
  background: linear-gradient(90deg, #35a5f5 0%, #0a7ac9 100%);
  border-color: transparent;
  box-shadow: 0px 10px 30px 0px rgba(16, 140, 238, 0.3);
}

.bannerCon .czBoxL,
.bannerCon .czBoxR {
  width: 30vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  position: absolute;
}

.bannerCon .czBoxR {
  left: auto;
  right: 0;
}

.bannerCon .czBoxR:hover .bannerNext {
  opacity: 1;
  visibility: visible;
}

.bannerCon .czBoxL:hover .bannerPrev {
  opacity: 1;
  visibility: visible;
}

.bannerCon .bannerPrev {
  left: max(30px, 0.6rem);
}

.bannerCon .bannerNext {
  right: max(30px, 0.6rem);
}

.bannerCon h3 {
  font-size: max(26px, 0.6rem);
  text-shadow: 1px 1px 5px rgba(7, 33, 55, 0.6588235294);
}

.bannerCon h4 {
  font-size: max(18px, 0.32rem);
  font-weight: 400;
  padding-top: max(10px, 0.27rem);
}

.bannerCon .btnBox {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: max(10px, 0.2rem);
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* padding: max(26px, 4.99rem) 0 0; */
}

.bannerCon .bannerPagination {
  bottom: 1.2rem;
}

.bannerCon .bannerPagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.bannerCon .bannerPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: -webkit-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -webkit-linear-gradient(#0055ff, #0055ff);
  background: -moz-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -moz-linear-gradient(#0055ff, #0055ff);
  background: -o-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -o-linear-gradient(#0055ff, #0055ff);
  background: linear-gradient(270deg, #0a7ac9 0%, #35a5f5 100%), linear-gradient(#0055ff, #0055ff);
}

@media only screen and (max-width: 1024px) {
  .bannerCon .bannerText {
    width: 100%;
    margin: 0;
    padding: 0 60px;
  }

  .bannerCon .bannerNext {
    right: 20px;
  }

  .bannerCon .bannerPrev {
    left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .bannerCon .bannerText {
    padding: 0 30px;
    position: relative;
    top: 5px;
  }

  .bannerCon .bannerText .btnBox .comBtn{
    background: #0a7ac9;
    color: #fff;
  }
  .bannerCon .bannerPagination {
    bottom: 0.8rem;
  }
}

@media only screen and (max-width: 559px) {
  .bannerCon h3 {
    font-size: 20px;
  }

  .bannerCon h4 {
    font-size: 16px;
  }

  .bannerCon .btnBox a {
   width: 82px;
        height: 27px;
        font-size: 11px;

  }
}


.blockBtnBox {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0 0;
}

@media only screen and (max-width: 767px) {
  .blockBtnBox {
    padding: 20px 0 0;
  }
}

.indexP1 {
  padding: max(120px, 2.1rem) 0 max(60px, 1.6rem);
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../images/index1bg.jpg");
  background-attachment: scroll;
}

.indexP1 .wrap {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.indexP1 .picBox {
  width: 430px;
  position: relative;
  padding: max(10px, 0.26rem) 0 0;
}

.indexP1 .picBox .pic {
  width: 100%;
  height: 581px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-radius: max(10px, 0.3rem);
}

.indexP1 .picBox .pic img {
  display: block;
  width: 100%;
  border-radius:0.3rem;
}

.indexP1 .picBox::after {
  top: 0;
  right: min(-20px, -0.46rem);
  position: absolute;
  width: 95%;
  height: 65%;
  content: "";
  background: -webkit-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -webkit-linear-gradient(#0055ff, #0055ff);
  background: -moz-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -moz-linear-gradient(#0055ff, #0055ff);
  background: -o-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -o-linear-gradient(#0055ff, #0055ff);
  background: linear-gradient(270deg, #0a7ac9 0%, #35a5f5 100%), linear-gradient(#0055ff, #0055ff);
  border-radius: max(10px, 0.3rem);
}

.indexP1 .picBox .videoBtn {
  bottom: max(30px, 1rem);
  right: 0;
  position: absolute;
  width: 2.24rem;
  height: 2.24rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
  color: #fff;
  border-radius: 50%;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(60%);
  -moz-transform: translateX(60%);
  -ms-transform: translateX(60%);
  -o-transform: translateX(60%);
  transform: translateX(60%);
  font-size: max(22px, 0.38rem);
  border: max(4px, 0.12rem) solid #fff;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index1playbg.jpg");
  background-attachment: scroll;
}

.indexP1 .text {
  width: 50%;
  color: #696969;
  line-height: 1.8;
  font-size: max(14px, 0.2rem);
}

.indexP1 .text .nr {
  padding: max(10px, 0.2rem) 0 max(20px, 0.44rem);
}

.indexP1 .text .indexTitle {
  line-height: 1.3;
}

@media only screen and (max-width: 1365px) {
  .indexP1 .picBox {
    width: 380px;
  }

  .indexP1 .picBox .pic {
    height: 514px;
  }
}

@media only screen and (max-width: 1024px) {
  .indexP1 .picBox {
    width: 35vw;
  }

  .indexP1 .picBox .pic {
    height: 47.2vw;
  }
}

@media only screen and (max-width: 959px) {
  .indexP1 {
    padding-top: 90px;
  }

  .indexP1 .picBox {
    padding-top: 10px;
  }

  .indexP1 .picBox .videoBtn {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }

  .indexP1 .picBox::after {
    right: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .indexP1 .wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .indexP1 .picBox {
    width: 100%;
    padding-top: 0;
  }

  .indexP1 .picBox .pic {
    height: 55vw;
    background: #000;
  }

  .indexP1 .picBox .pic img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.8;
  }

  .indexP1 .picBox .videoBtn {
    right: 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%);
  }

  .indexP1 .picBox::after {
    display: none;
  }

  .indexP1 .text {
    width: 100%;
    padding: 30px 0 0;
  }
}

.indexP2 {
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/indexp2bg.jpg");
  background-attachment: fixed;
}

.indexP3 {
  background: #f5f6f5;
  padding: max(60px, 1.26rem) 0 max(60px, 1.1rem);
}

.indexP3 .comBtn.blue {
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  -o-background-origin: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: -webkit-linear-gradient(left, #f5f6f5, #f5f6f5), -webkit-linear-gradient(bottom, #35a5f5, #0a7ac9);
  background-image: -moz-linear-gradient(left, #f5f6f5, #f5f6f5), -moz-linear-gradient(bottom, #35a5f5, #0a7ac9);
  background-image: -o-linear-gradient(left, #f5f6f5, #f5f6f5), -o-linear-gradient(bottom, #35a5f5, #0a7ac9);
  background-image: linear-gradient(to right, #f5f6f5, #f5f6f5), linear-gradient(0deg, #35a5f5, #0a7ac9);
}

.indexP3 .comBtn.blue:hover {
  background: -webkit-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -webkit-linear-gradient(#0055ff, #0055ff);
  background: -moz-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -moz-linear-gradient(#0055ff, #0055ff);
  background: -o-linear-gradient(right, #0a7ac9 0%, #35a5f5 100%), -o-linear-gradient(#0055ff, #0055ff);
  background: linear-gradient(270deg, #0a7ac9 0%, #35a5f5 100%), linear-gradient(#0055ff, #0055ff);
}

.indexP3 .indexNewsSlide {
  padding: 0 0 max(70px, 1.16rem);
}

.indexP3 .indexNewsWrap {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.indexP3 .indexNewsItem {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.indexP3 .indexNewsItem a {
  width: 95%;
  display: block;
  overflow: hidden;
  border-radius: max(5px, 0.1rem);
}

.indexP3 .indexNewsItem .pic {
  width: 100%;
  height: 18.4vw;
  height: 18vw;
}

.indexP3 .indexNewsItem .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.indexP3 .indexNewsItem.swiper-slide-active {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.indexP3 .indexNewsItem.swiper-slide-active a {
  width: 105%;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.indexP3 .indexNewsItem.swiper-slide-active .text {
  font-size: max(16px, 0.24rem);
}

.indexP3 .indexNewsItem.swiper-slide-active .pic {
  height: 32vw;
  height: 22vw;
}

.indexP3 .indexNewsItem.swiper-slide-prev {
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.indexP3 .indexNewsItem.prev-2 .box {
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.indexP3 .indexNewsItem.swiper-slide-next .box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.indexP3 .indexNewsItem .text {
  color: #112241;
  background: #fff;
  font-size: max(14px, 0.22rem);
  padding: max(20px, 0.4rem) max(20px, 0.4rem) max(25px, 0.5rem);
}

.indexP3 .indexNewsItem .text .date {
  font-size: max(14px, 0.16rem);
  color: #bdbebf;
  padding: max(5px, 0.2rem) 0 0;
}

@media only screen and (max-width: 1024px) {
  .indexP3 .indexNewsItem .pic {
    height: 19vw;
  }

  .indexP3 .indexNewsItem a {
    width: 90%;
  }

  .indexP3 .indexNewsItem.swiper-slide-active a {
    width: 120%;
  }

  .indexP3 .indexNewsItem.swiper-slide-active .pic {
    height: 25.5vw;
  }
}

@media only screen and (max-width: 767px) {
  .indexP3 .indexNewsItem .pic {
    height: 24vw;
  }

  .indexP3 .indexNewsItem.swiper-slide-active .pic {
    height: 32.4vw;
  }

  .indexP3 .indexNewsSlide {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 479px) {
  .indexP3 .indexNewsItem .pic {
    height: 30vw;
  }

  .indexP3 .indexNewsItem .text {
    padding: 15px;
  }

  .indexP3 .indexNewsItem.swiper-slide-active a {
    width: 120%;
  }

  .indexP3 .indexNewsItem.swiper-slide-active .pic {
    height: 39.5vw;
  }
}

.indexP4 {
  padding: max(60px, 1.2rem) 0;
}

.indexP4 .bigPic {
  width: 100%;
  overflow: hidden;
  border-radius: max(5px, 0.1rem);
}

.indexP4 .slideLogoCon {
  padding: max(20px, 0.42rem) 0 0;
}

.indexP4 .slideBox {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0 0 10px;
  box-shadow: 0px 10px 30px 0px rgba(51, 112, 255, 0.1);
  height: auto;
}

.indexP4 .slideBox .slideUl {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.indexP4 .slideBox .slideUl li {
  width: 140px;
  height: 70px;
  margin: 0 10px 0 0;
  background: #fff;
  border-radius: 7px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  box-shadow: 0px 10px 30px 0px rgba(51, 112, 255, 0.1);
  list-style: none;
}

.indexP4 .slideBox .slideUl li a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.indexP4 .slideBox .slideUl li img {
  max-width: 80%;
  max-height: 60%;
  display: block;
}

.indexP4 .slideBox .slideUl li:hover {
  border: solid 3px #febd11;
}

.indexP4 .slideBox .slideUl.index4Slide2 {
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  right: 0;
}

.indexP4 .slideBox:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .indexP4 .slideBox .slideUl {
    margin: 0 0 5px;
  }

  .indexP4 .slideBox .slideUl li {
    width: 110px;
    height: 55px;
    margin: 0 5px 0 0;
  }
}

@media screen and (max-width: 479px) {
  .indexP4 .slideLogoCon {
    padding-top: 20px;
  }

  .indexP4 .slideBox .slideUl li {
    width: 74px;
    height: 37px;
  }
}

.indexP5 {
  padding-bottom: max(60px, 1.2rem);
}

.indexP5 .yjjbSwiper a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: auto;
}

.indexP5 .yjjbSwiper .pic {
  width: 292px;
  height: 292px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.indexP5 .yjjbSwiper .pic::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/yjjbq1.png");
  background-attachment: scroll;
}

.indexP5 .yjjbSwiper .item:nth-child(2n) .pic::after {
  background-image: url("../images/yjjbq2.png");
}

.indexP5 .yjjbSwiper .item:hover .pic::after {
  -webkit-animation: rotate 3s linear infinite;
  -moz-animation: rotate 3s linear infinite;
  -o-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}

.indexP5 .yjjbSwiper .text {
  padding: max(20px, 0.5rem) 0 0;
  text-align: center;
  font-size: max(14px, 0.16rem);
  color: #f4b50f;
}

.indexP5 .yjjbSwiper .text .name {
  font-size: max(16px, 0.24rem);
  color: #001726;
  padding-bottom: max(5px, 0.1rem);
}

.indexP5 .slideBox {
  position: relative;
}

.indexP5 .slideBox .yjjbSlidePrev,
.indexP5 .slideBox .yjjbSlideNext {
  cursor: pointer;
  position: absolute;
  top: 146px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.indexP5 .slideBox .yjjbSlidePrev {
  left: -80px;
}

.indexP5 .slideBox .yjjbSlideNext {
  right: -80px;
}

@media screen and (max-width: 1439px) {
  .indexP5 .slideBox .yjjbSlidePrev {
    left: -35px;
  }

  .indexP5 .slideBox .yjjbSlideNext {
    right: -35px;
  }
}

@media screen and (max-width: 1365px) {
  .indexP5 .yjjbSwiper .pic {
    width: 100%;
    height: 226px;
  }

  .indexP5 .slideBox .yjjbSlidePrev,
  .indexP5 .slideBox .yjjbSlideNext {
    top: 113px;
  }
}

@media screen and (max-width: 1199px) {
  .indexP5 .slideBox .yjjbSlidePrev {
    left: 10px;
    z-index: 10;
  }

  .indexP5 .slideBox .yjjbSlideNext {
    right: 10px;
    z-index: 10;
  }
}

@media screen and (max-width: 1024px) {
  .indexP5 .yjjbSwiper .pic {
    height: 19.3vw;
  }

  .indexP5 .slideBox .yjjbSlidePrev,
  .indexP5 .slideBox .yjjbSlideNext {
    top: 9.65vw;
  }
}

@media screen and (max-width: 959px) {
  .indexP5 .yjjbSwiper .pic {
    height: 17.3vw;
  }

  .indexP5 .slideBox .yjjbSlidePrev,
  .indexP5 .slideBox .yjjbSlideNext {
    top: 8.65vw;
  }
}

@media screen and (max-width: 767px) {
  .indexP5 .yjjbSwiper .pic {
    height: 40vw;
  }

  .indexP5 .slideBox .yjjbSlidePrev,
  .indexP5 .slideBox .yjjbSlideNext {
    top: 20vw;
  }
}

@media screen and (max-width: 479px) {
  .indexP5 .yjjbSwiper .pic {
    height: auto;
  }
}

.indexP6 .ljhgSwiper {
  padding: 0.4rem 0 max(60px, 0.8rem);
}

.indexP6 .item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.indexP6 .item .text {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  line-height: 1;
  color: #fff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
  position: absolute;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: max(15px, 0.3rem);
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.indexP6 .item .text .comBtn {
  border-color: #fff;
}

.indexP6 .item .year {
  font-size: max(20px, 0.4rem);
  font-family: "WorkSans-Bold", "WorkSans", "Arial";
}

.indexP6 .item .name {
  font-size: max(16px, 0.24rem);
  padding: 10px 0 max(15px, 0.25rem);
}

.indexP6 .item::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  content: "";
  visibility: hidden;
  position: absolute;
  background: -webkit-linear-gradient(bottom, rgba(20, 132, 212, 0.8), rgba(20, 132, 212, 0.1));
  background: -moz-linear-gradient(bottom, rgba(20, 132, 212, 0.8), rgba(20, 132, 212, 0.1));
  background: -o-linear-gradient(bottom, rgba(20, 132, 212, 0.8), rgba(20, 132, 212, 0.1));
  background: linear-gradient(to top, rgba(20, 132, 212, 0.8), rgba(20, 132, 212, 0.1));
}

.indexP6 .item.swiper-slide-active .text, .indexP6 .item.swiper-slide-active::after {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1024px) {
  .indexP6 .ljhgSwiper {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .indexP6 .ljhgSwiper {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .indexP6 .item .text {
    text-align: center;
  }

  .indexP6 .item .name {
    padding: 10px 0;
  }

  .indexP6 .item .comBtn.min {
    width: 76px;
    height: 28px;
  }
}

.indexP7 {
  padding: max(60px, 1.2rem) 0 max(120px, 2.7rem);
}

.indexP7 .hzmtSwiper {
  padding-bottom: 80px;
}

.indexP7 .hzmtSwiper .hzmtSwiperPagina .swiper-pagination-bullet {
  width: max(6px, 0.12rem);
  height: max(6px, 0.12rem);
  border-radius: max(3px, 0.06rem);
  background: #0456de;
}

.indexP7 .hzmtSwiper .hzmtSwiperPagina .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: max(18px, 0.33rem);
  background: #0099ff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.indexP7 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 10px;
}

.indexP7 .list li {
  box-shadow: 0px 10px 30px 0px rgba(51, 112, 255, 0.1);
  width: -webkit-calc((100% - 90px) / 7);
  width: -moz-calc((100% - 90px) / 7);
  width: calc((100% - 90px) / 7);
  border: solid 1px #e8f0f6;
  height: 90px;
}

.indexP7 .list a {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.indexP7 .list img {
  max-width: 90%;
  max-height: 85%;
  display: block;
}

@media screen and (max-width: 1679px) {
  .indexP7 .list li {
    height: 5.5vw;
  }
}

@media only screen and (max-width: 1024px) {
  .indexP7 .hzmtSwiper {
    padding-bottom: 40px;
  }

  .indexP7 .hzmtSwiperPagina {
    bottom: 0;
  }

  .indexP7 .list {
    gap: 10px;
    row-gap: 7px;
  }

  .indexP7 .list li {
    width: -webkit-calc((100% - 60px) / 7);
    width: -moz-calc((100% - 60px) / 7);
    width: calc((100% - 60px) / 7);
  }
}

@media only screen and (max-width: 767px) {
  .indexP7 .list {
    gap: 3px;
    row-gap: 3px;
  }

  .indexP7 .list li {
    width: -webkit-calc((100% - 30px) / 7);
    width: -moz-calc((100% - 30px) / 7);
    width: calc((100% - 30px) / 7);
  }
}

@media only screen and (max-width: 479px) {
  .indexP7 {
    padding-bottom: 24px;
  }

  .indexP7 .hzmtSwiper {
    padding-bottom: 20px;
  }
}

.index8 {
  position: relative;
}

.index8 .content {
  width: 100%;
  height: 240px;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  position: absolute;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(20px, 0.4rem);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: max(10px, 0.2rem);
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index8bg.jpg");
  background-attachment: scroll;
  padding: 0 max(30px, 0.8rem) 0 max(20px, 0.6rem);
}

.index8 .content .comBtn {
  border: 2px solid #fff;
}

.index8 .content .comBtn:hover {
  border: 0 none;
}

@media only screen and (max-width: 1365px) {
  .index8 .content {
    height: 187px;
  }
}

@media only screen and (max-width: 767px) {
  .index8 .content {
    height: 140px;
    padding: 0 20px;
    font-size: 18px;
  }

  .index8 .comBtn {
    width: 88px;
    height: 32px;
  }
}

@media only screen and (max-width: 479px) {
  .index8 .content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
  }
}

#footer {
  padding-top: max(80px, 1.4rem);
}

@media only screen and (max-width: 767px) {
  #footer {
    padding-top: 45px;
  }
}

.indexActivity {
  padding: max(60px, 1.26rem) 0 0;
}

.indexActivity .indexActivitySwiper {
  border-radius: max(5px, 0.1rem);
  box-shadow: 0px 0px 30px 0px rgba(3, 60, 228, 0.05);
}

.indexActivity .activityItem {
  margin: 0;
  box-shadow: none;
}

.indexActivity .swiper-slide {
  height: 100%;
}

.indexActivity .comSwiperCzBox {
  bottom: 0;
}

.indexActivity .slideBox {
  padding: 0 0 max(40px, 1rem);
  position: relative;
  width: 100%;
  height: auto;
}

/*# sourceMappingURL=index.css.map */

.houji .text {
  background: none;
  padding: 0;
  line-height: normal;
  height: auto;
  color: inherit;
}

@media only screen and (max-width: 980px) {
	  .bannerCon .prevBox{ display:none}
  .bannerCon .nextBox{ display:none}
  .bannerCon .prevBox:hover .bannerPrev{ opacity:0}
  .bannerCon .nextBox:hover .bannerNext{ opacity:0}
  }