.home {
  width: 100%;
  position: relative;
}

.home .banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: big2 32s forwards linear;
}

@keyframes big2 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.home .banner .t1 {
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: #ffffff;
  font-size: 40px;
  font-weight: bolder;
  letter-spacing: 3px;
}

.home .banner .links {
  position: absolute;
  left: 15%;
  width: 70%;
  bottom: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.home .banner .links i {
  color: #ffffff;
}

.home .banner .links a,
.home .banner .links p {
  color: #ffffff;
  font-weight: 200;
}

.home .banner .links a {
  margin: 0 8px;
  display: inline-block;
}

.home .main {
  width: 100%;
}

.home .main .pt {
  width: 100%;
  background: url("../images/tBg1.png") no-repeat;
  background-size: cover;
  padding: 100px 0 40px 0;
}

.home .main .pt .t1 {
  text-align: center;
}

.home .main .pt .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}

.home .main .pt .t1 p:nth-child(2) {
  font-size: 22px;
  font-weight: 200;
  margin-top: 30px;
  letter-spacing: 2px;
}

.home .main .pt .content {
  width: 80%;
  margin: 0 auto;
  position: relative;
  height: 800px;
}

.home .main .pt .content .br1 {
  position: absolute;
  left: 0;
  top: 11%;
  width: 58%;
}

.home .main .pt .content .br1 img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}

.home .main .pt .content .br1 img:nth-child(1) {
  transform: rotate(-180deg);
}

.home .main .pt .content .br1 img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
}

.home .main .pt .content .br1 .nr {
  position: absolute;
  left: 10%;
  top: 15%;
  width: 70%;
  transition: all 600ms;
}

.home .main .pt .content .br1 .nr .p1 {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 30px;
}

.home .main .pt .content .br1 .nr .des p {
  display: flex;
  flex-direction: row;
  line-height: 30px;
  margin-bottom: 15px;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 200;
}

.home .main .pt .content .br1 .nr .des p::before {
  width: 5px;
  height: 5px;
  background: #031D58;
  border-radius: 50%;
  content: "";
  display: inline-block;
  margin-right: 20px;
  transform: translateY(10px);
  transition: all 600ms;
  flex-shrink: 0
}

.home .main .pt .content .br1 .nr .des p span {
  display: block;
  width: calc(98% - 5px);
}

.home .main .pt .content .br1:hover img:nth-child(2) {
  opacity: 1;
}

.home .main .pt .content .br1:hover .nr {
  color: white;
}

.home .main .pt .content .br1:hover .nr .des p::before {
  background-color: white;
}

.home .main .pt .content .br2 {
  position: absolute;
  right: 0;
  bottom: 14%;
  width: 58%;
}

.home .main .pt .content .br2 img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}

.home .main .pt .content .br2 img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: rotate(180deg);
}

.home .main .pt .content .br2 .nr {
  position: absolute;
  left: 30%;
  top: 30%;
  width: 60%;
  transition: all 600ms;
}

.home .main .pt .content .br2 .nr .p1 {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 30px;
}

.home .main .pt .content .br2 .nr .des p {
  display: flex;
  flex-direction: row;
  line-height: 30px;
  margin-bottom: 15px;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 200;
}

.home .main .pt .content .br2 .nr .des p::before {
  width: 5px;
  height: 5px;
  background: #031D58;
  border-radius: 50%;
  content: "";
  display: inline-block;
  margin-right: 20px;
  transform: translateY(10px);
  transition: all 600ms;
  flex-shrink: 0
}

.home .main .pt .content .br2 .nr .des p span {
  display: block;
  width: calc(98% - 5px);
}

.home .main .pt .content .br2:hover img {
  opacity: 1;
}

.home .main .pt .content .br2:hover .nr {
  color: white;
}

.home .main .pt .content .br2:hover .nr .des p::before {
  background-color: #ffffff;
}

.home .main .pt .content .circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 153px;
  height: 153px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: scalc 2s infinite linear;
}

@media screen and (min-width: 400px) {
  .home .main .pt .content .circle {
    top: 43%;
  }
}

@media screen and (min-width: 750px) {
  .home .main .pt .content .circle {
    top: 35%;
  }
}

@media screen and (min-width: 1200px) {
  .home .main .pt .content .circle {
    top: 50%;
  }
}

.home .main .pt .content .circle p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bolder;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}

@keyframes scalc {
  0% {
    transform: scale(1) translate(-50%, -50%);
  }

  50% {
    transform: scale(1.04) translate(-50%, -50%);
  }

  100% {
    transform: scale(1) translate(-50%, -50%);
  }
}

.home .main .hx {
  width: 100%;
  background: url("../images/hxBg.png") no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.home .main .hx .t1 {
  text-align: center;
  color: white;
}

.home .main .hx .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}

.home .main .hx .t1 p:nth-child(2) {
  font-size: 22px;
  font-weight: 200;
  margin-top: 30px;
  letter-spacing: 2px;
}

.home .main .hx .content {
  width: 80%;
  margin: 100px auto 0 auto;
  height: 600px;
  position: relative;
}

.home .main .hx .content .circle1 {
  width: 462px;
  height: 462px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home .main .hx .content .circle1::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url("../images/bc1.png") no-repeat;
  background-size: cover;
  border-radius: 50%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: scale 2s linear infinite;
}

.home .main .hx .content .circle1 .circle2 {
  width: 256px;
  height: 256px;
  background: url("../images/bcir.png") no-repeat;
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  left: 103px;
  top: 103px;
  animation: rotate 10s infinite linear;
}

.home .main .hx .content .circle1 .circle2 .sc1 {
  width: 10px;
  height: 10px;
  background: #1B4098;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 6.5%;
  top: 20%;
}

.home .main .hx .content .circle1 .circle2 .sc2 {
  width: 10px;
  height: 10px;
  background: #195AF5;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  right: 6.5%;
  top: 20%;
}

.home .main .hx .content .circle1 .circle2 .sc3 {
  width: 10px;
  height: 10px;
  background: #1A6996;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -5px;
}

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

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

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

.home .main .hx .content .circle1 .systerm {
  width: 107px;
  height: 107px;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home .main .hx .content .circle1 .systerm i {
  color: white;
  font-size: 40px;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.home .main .hx .content .ball {
  position: absolute;
  left: 2%;
  display: flex;
  flex-direction: row;
  z-index: 100;
  align-items: center;
  top: 0;
}

.home .main .hx .content .ball .text {
  width: 340px;
}

.home .main .hx .content .ball .text .p1 {
  color: white;
  font-size: 18px;
  font-weight: bolder;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
  position: relative;
}

.home .main .hx .content .ball .text .p1::after {
  content: "";
  bottom: -1px;
  right: -100px;
  transform: rotate(30deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  width: 100px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  opacity: 1;
}

.home .main .hx .content .ball .text .p1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #195AF5;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  right: -99px;
  top: 100px;
}

.home .main .hx .content .ball .text .des {
  color: white;
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  margin-top: 30px;
}

.home .main .hx .content .ball .circle {
  width: 151px;
  height: 151px;
  border-radius: 50%;
  border: 1px dashed #7EABFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 600ms;
  margin-left: 110px;
}

.home .main .hx .content .circle .sc {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(0deg, #1B4098 0%, #117BF0 100%);
  transition: all 600ms;
}

.home .main .hx .content .ball .circle .sc .icon {
  transition: all 600ms;
}

.home .main .hx .content .ball .circle .sc .icon i {
  color: #ffffff;
  font-size: 40px;
}

.home .main .hx .content .ball .circle .sc p {
  color: #ffffff;
  font-size: 18px;
  transition: all 600ms;
}

.home .main .hx .content .ball .circle:hover {
  transform: scale(1.1);
}

.home .main .hx .content .circle .sc p {
  color: #ffffff;
  margin-top: 5px;
  font-size: 18px;
  transition: all 600ms;
}

.home .main .hx .content .circle .sc:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  background: url(../images/s.png) no-repeat;
  background-size: cover;
  opacity: 0;
  transition: ease all 1s;
}

.home .main .hx .content .circle .sc:hover:after {
  opacity: 1;
}

.home .main .hx .content .circle .sc * {
  position: relative;
  z-index: 2;
}

.home .main .hx .content .ball2 {
  position: absolute;
  left: 2%;
  bottom: 0;
  display: flex;
  flex-direction: row;
  z-index: 100;
  align-items: center;
}

.home .main .hx .content .ball2 .text {
  width: 340px;
}

.home .main .hx .content .ball2 .text .p1 {
  color: white;
  font-size: 18px;
  font-weight: bolder;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
  position: relative;
}

.home .main .hx .content .ball2 .text .p1::after {
  content: "";
  bottom: -1px;
  right: -100px;
  transform: rotate(30deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  width: 100px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  opacity: 1;
}

.home .main .hx .content .ball2 .text .p1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #195AF5;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  right: -99px;
  top: 100px;
}

.home .main .hx .content .ball2 .text .des {
  color: white;
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  margin-top: 30px;
}

.home .main .hx .content .ball2 .circle {
  width: 151px;
  height: 151px;
  border-radius: 50%;
  border: 1px dashed #7EABFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 600ms;
  margin-left: 110px;
}

.home .main .hx .content .ball2 .circle .sc .icon {
  transition: all 600ms;
}

.home .main .hx .content .ball2 .circle .sc .icon i {
  color: #ffffff;
  font-size: 40px;
}

.home .main .hx .content .ball2 .circle .sc p {
  color: #ffffff;
  font-size: 18px;
  transition: all 600ms;
}

.home .main .hx .content .ball2 .circle:hover {
  transform: scale(1.1);
}

.home .main .hx .content .ball3 {
  position: absolute;
  right: 2%;
  display: flex;
  flex-direction: row;
  z-index: 100;
  top: 0;
  align-items: center;
}

.home .main .hx .content .ball3 .text {
  width: 340px;
  margin-left: 110px;
}

.home .main .hx .content .ball3 .text .p1 {
  color: white;
  font-size: 18px;
  font-weight: bolder;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
  position: relative;
  text-align: right;
}

.home .main .hx .content .ball3 .text .p1::after {
  content: "";
  bottom: -26px;
  left: -93px;
  transform: rotate(-30deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  width: 100px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  opacity: 1;
}

.home .main .hx .content .ball3 .text .p1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #195AF5;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: -96px;
  top: 100px;
}

.home .main .hx .content .ball3 .text .des {
  color: white;
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  margin-top: 30px;
}

.home .main .hx .content .ball3 .circle {
  width: 151px;
  height: 151px;
  border-radius: 50%;
  border: 1px dashed #7EABFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 600ms;
}

.home .main .hx .content .ball3 .circle .sc .icon {
  transition: all 600ms;
}

.home .main .hx .content .ball3 .circle .sc .icon i {
  color: #ffffff;
  font-size: 40px;
}

.home .main .hx .content .ball3 .circle:hover {
  transform: scale(1.1);
}

.home .main .hx .content .ball4 {
  position: absolute;
  right: 2%;
  display: flex;
  flex-direction: row;
  z-index: 100;
  align-items: center;
  bottom: 0;
}

.home .main .hx .content .ball4 .text {
  width: 340px;
  margin-left: 110px;
}

.home .main .hx .content .ball4 .text .p1 {
  color: white;
  font-size: 18px;
  font-weight: bolder;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
  position: relative;
  text-align: right;
}

.home .main .hx .content .ball4 .text .p1::after {
  content: "";
  bottom: -26px;
  left: -93px;
  transform: rotate(-30deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  width: 100px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  opacity: 1;
}

.home .main .hx .content .ball4 .text .p1::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #195AF5;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: -96px;
  top: 100px;
}

.home .main .hx .content .ball4 .text .des {
  color: white;
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  margin-top: 30px;
}

.home .main .hx .content .ball4 .circle {
  width: 151px;
  height: 151px;
  border-radius: 50%;
  border: 1px dashed #7EABFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 600ms;
}

.home .main .hx .content .ball4 .circle .sc .icon {
  transition: all 600ms;
}

.home .main .hx .content .ball4 .circle .sc .icon i {
  color: #ffffff;
  font-size: 40px;
}

.home .main .hx .content .ball4 .circle .sc p {
  color: #ffffff;
  font-size: 18px;
  transition: all 600ms;
}

.home .main .hx .content .ball4 .circle:hover {
  transform: scale(1.1);
}

.home .main .high {
  width: 100%;
  background: url("../images/qx.png") no-repeat;
  background-size: cover;
  padding: 100px 0 0 0;
}

.home .main .high .t1 {
  text-align: center;
}

.home .main .high .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}

.home .main .high .t1 p:nth-child(2) {
  font-size: 22px;
  font-weight: 200;
  margin-top: 30px;
  letter-spacing: 2px;
}

.home .main .high .dots {
  width: 80%;
  padding: 80px 0;
  margin: auto;
  margin-top: 0;
  min-height: 550px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.home .main .high .dots .don1 {
  width: 25%;
  margin: 15px 0;
  transition: all 600ms;
}

.home .main .high .dots .don1:hover {
  transform: scale(1.2);
}

.home .main .high .dots .don1 .circle {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 600ms;
  animation: 3s movedom linear infinite;
}

.home .main .high .dots .don1 .circle .line {
  border: 1px dashed #0E3FA4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: xuanzhuan 4s infinite linear;
}

.home .main .high .dots .don1 .circle::before {
  width: 160px;
  height: 160px;
  background: url(../images/s.png) no-repeat;
  background-size: cover;
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes movedom {
  0% {
    transform: translate(10px, 15px);
  }

  25% {
    transform: translate(20px, 30px);
  }

  50% {
    transform: translate(10px, 15px);
  }

  75% {
    transform: translate(20px, 30px);
  }

  100% {
    transform: translate(10px, 15px);
  }
}

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

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

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

.home .main .high .dots .don1 .circle .p1 {
  position: absolute;
  left: 0;
  text-align: center;
  color: white;
  width: 100%;
  font-size: 50px;
  font-family: 'MONTSERRAT-BOLD';
  font-weight: bolder;
  top: 30%;
}

.home .main .high .dots .don1 .circle .p2 {
  position: absolute;
  left: 15%;
  text-align: center;
  color: white;
  width: 70%;
  top: 60%;
  font-size: 13px;
  letter-spacing: 1.5px;
  line-height: 1.55;
}

.home .main .high .dots .don1:nth-of-type(even) {
  margin-left: -30px;
  margin-top: -30px;
}

.home .main .high .dots .c1 {
  left: 5%;
  top: 0;
}

.home .main .high .dots .c2 {
  left: 30%;
  top: 15%;
  animation-duration: 4s;
}

.home .main .high .dots .c3 {
  left: 55%;
  top: 0;
  animation-duration: 5s;
}

.home .main .high .dots .c4 {
  left: 80%;
  top: 15%;
  animation-duration: 6s;
}

.home .main .high .dots .c5 {
  left: 15%;
  bottom: 15%;
  animation-duration: 7s;
}

.home .main .high .dots .c6 {
  left: 40%;
  bottom: 10%;
  animation-duration: 8s;
}

.home .main .high .dots .c7 {
  left: 65%;
  bottom: 15%;
  animation-duration: 9s;
}

.home .main .coop {
  width: 100%;
  background: url("../images/coBg.png") no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.home .main .coop .t1 {
  text-align: center;
  color: white;
}

.home .main .coop .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}

.home .main .coop .t1 p:nth-child(2) {
  color: white;
  font-size: 22px;
  font-weight: 200;
  margin-top: 30px;
  letter-spacing: 2px;
}

.home .main .coop .allImgs {
  width: 70%;
  margin: 60px auto;
  margin-top: 120px;
  padding-bottom: 60px;
  position: relative;
}

.home .main .coop .allImgs .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 100;
}

.home .main .coop .allImgs .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 600ms;
  margin: 0 10px;
}

.home .main .coop .allImgs .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.home .main .coop .allImgs .swiper-container {
  width: 100%;
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic {
  width: 50%;
  overflow: hidden;
  height: 350px;
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 2s;
  height: 100%;
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic:hover img {
  transform: scale(1.05);
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text {
  width: 50%;
  font-size: 16px;
  line-height: 35px;
  padding: 0 3%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des {
  color: white;
  height: 170px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 30px;
  font-size: 18px;
  font-weight: 200;
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des::-webkit-scrollbar {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des::-webkit-scrollbar-thumb {
  width: 1px;
  background-color: rgba(255, 255, 255, 1);
}

@media screen and (min-width: 2500px) {
  .home .main .pt .content {
    height: 1200px;
  }
}

@media screen and (max-width: 1440px) {
  .home .main .high {
    padding-bottom: 0;
  }

  .home .main .high .dots {
    width: 90%;
  }

  .home .main .pt {
    padding-bottom: 60px;
  }

  .home .main .pt .content {
    width: 90%;
    height: 650px;
  }

  .home .main .pt .content .br1 .nr {
    top: 10%;
  }

  .home .main .pt .content .br1 .nr .des p {
    line-height: 28px;
    margin-bottom: 10px;
  }

  .home .main .pt .content .br2 .nr {
    top: 20%;
  }

  .home .main .pt .content .br2 .nr .des p {
    line-height: 28px;
    margin-bottom: 10px;
  }
  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic{
    height: 250px;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text {
    height: 250px;
  }

  .home .main .hx .content .ball .text,
  .home .main .hx .content .ball2 .text,
  .home .main .hx .content .ball3 .text,
  .home .main .hx .content .ball4 .text {
    width: 200px;
  }
}

@media screen AND (max-width: 1366px) {
  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic {
    height: 250px;
  }

  .home .main .pt .content .br1 .nr {
    width: 65%;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des p {
    font-size: 16px;
    width: 95%;

  }
}

@media screen and (min-width: 700px) {
  .home .main .high .dots .don1 {
    padding-left: 17%;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des p {
    font-size: 16px;

  }
}

@media screen and (min-width: 1200px) {
  .home .main .high .dots .don1 {
    padding-left: 0;
  }
}

@media screen and (max-width: 1300px) {

  .home .banner img {
    height: 300px;
  }

  .home .banner .t1 {
    font-size: 20px;
    width: 90%;
    left: 5%;
    line-height: 30px;
  }

  .home .main .pt {
    padding: 40px 0 0 0;
  }

  .home .main .pt .t1 {
    width: 90%;
    margin: 0 auto;
  }

  .home .main .pt .t1 p:nth-child(1) {
    font-size: 20px;
  }

  .home .main .pt .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
  }

  .home .main .pt .content {
    margin-top: 30px;
  }

  .home .main .pt .content .br1 {
    position: static;
    width: 100%;
  }

  .home .main .pt .content .br1 img {
    display: none;
  }

  .home .main .pt .content .br1 .nr {
    position: static;
    width: 100%;
  }

  .home .main .pt .content .br1 .nr .p1 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .home .main .pt .content .br1 .nr .des p {
    font-size: 16px;
  }

  .home .main .pt .content .br2 {
    position: static;
    width: 100%;
    margin-top: 150px;
  }

  .home .main .pt .content .br2 img {
    display: none;
  }

  .home .main .pt .content .br2 .nr {
    position: static;
    width: 100%;
  }

  .home .main .pt .content .br2 .nr .p1 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .home .main .pt .content .br2 .nr .des p {
    font-size: 16px;
  }

  .home .main .hx {
    padding: 40px 0;
  }

  .home .main .hx .t1 {
    width: 90%;
    margin: 0 auto;
  }

  .home .main .hx .t1 p:nth-child(1) {
    font-size: 20px;
  }

  .home .main .hx .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
  }

  .home .main .hx .content {
    width: 90%;
    margin: 30px auto;
    height: auto;
  }

  .home .main .high {
    padding: 40px 0;
  }

  .home .main .hx .content .ball,
  .home .main .hx .content .ball2 {
    position: static;
    flex-direction: column;
  }

  .home .main .hx .content .ball3,
  .home .main .hx .content .ball4 {
    flex-direction: column-reverse;
    position: static;
  }

  .home .main .hx .content .ball .text,
  .home .main .hx .content .ball2 .text,
  .home .main .hx .content .ball3 .text,
  .home .main .hx .content .ball4 .text {
    width: 100%;
    margin-left: 0;
  }

  .home .main .hx .content .ball .text .p1::before,
  .home .main .hx .content .ball .text .p1::after,
  .home .main .hx .content .ball2 .text .p1::before,
  .home .main .hx .content .ball2 .text .p1::after,
  .home .main .hx .content .ball3 .text .p1::before,
  .home .main .hx .content .ball3 .text .p1::after,
  .home .main .hx .content .ball4 .text .p1::before,
  .home .main .hx .content .ball4 .text .p1::after {
    display: none;
  }

  .home .main .hx .content .ball .text .des {
    margin-top: 15px;
  }

  .home .main .hx .content .ball .circle,
  .home .main .hx .content .ball2 .circle,
  .home .main .hx .content .ball3 .circle,
  .home .main .hx .content .ball4 .circle {
    margin-left: 0;
    margin-top: 30px;
  }

  .home .main .hx .content .circle1 {
    display: none;
  }


  .home .main .high .t1 {
    width: 90%;
    margin: 0 auto;
  }

  .home .main .high .t1 p:nth-child(1) {
    font-size: 20px;
  }

  .home .main .high .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
  }

  .home .main .high .dots {
    width: 90%;
    margin: 30px auto;
    padding: 0;
  }

  .home .main .high .dots .don1 {
    width: 50%;
  }

  .home .main .high .dots .don1 .circle {
    width: 120px;
    height: 120px;
    margin: 0;
  }

  .home .main .high .dots .don1 .circle::before {
    height: 100px;
    width: 100px;
  }

  .home .main .high .dots .don1 .circle .p1 {
    font-size: 20px;
  }

  .home .main .high .dots .don1 .circle .p2 {
    font-size: 12px;
    top: 50%;
  }

  .home .main .coop {
    padding: 40px 0;
  }

  .home .main .coop .t1 {
    width: 90%;
    margin: 0 auto;
  }

  .home .main .coop .t1 p:nth-child(1) {
    font-size: 20px;
  }

  .home .main .coop .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
  }

  .home .main .coop .allImgs {
    width: 90%;
    margin: 40px auto 0 auto;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item {
    flex-direction: column;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic {
    width: 100%;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic img {
    /* height: auto; */
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text {
    width: 100%;
    padding: 30px 5%;
  }
}

@media screen AND (max-width: 767px) {
  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .pic {
    height: auto;
  }

  .home .main .coop .allImgs .swiper-container .swiper-wrapper .swiper-slide .item .text .des {
    padding: 0;
  }
}

/*# sourceMappingURL=tech.css.map */