.home .banner {
  width: 100%;
  position: relative;
}
.home .banner .swiper-container {
  width: 100%;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .pic {
  position: relative;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .pic .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .pic .bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .pic img, .home .banner .swiper-container .swiper-wrapper .swiper-slide .pic video {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100vh;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text {
  position: absolute;
  left: 10vw;
  top: 62%;
  transform: translateY(-50%);
  width: 80vw;
  color: white;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text .cn {
  color: white;
  font-size: 3vw;
  font-weight: bolder;
  letter-spacing: 2px;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text .en {
  color: #E6EAF2;
  font-family: "StardosStencil-Regular";
  font-size: 1.8vw;
  text-transform: capitalize;
}
.home .banner .swiper-pagination {
  position: absolute;
  left: 10vw;
  bottom: 120px;
  width: 70vw;
  display: flex;
}
.home .banner .swiper-pagination .swiper-pagination-bullet {
  width: 64px;
  height: 4px;
  margin: 0 5px;
  opacity: 0.3;
  background: white;
  cursor: pointer;
  transition: all 600ms;
  border-radius: 10px;
}
.home .banner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.home .about {
  width: 100%;
  height: 100vh;
  background: url("../image/abg.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .about .nr {
  width: 80vw;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.home .about .nr .l {
  width: 50vw;
}
.home .about .nr .l .p1 {
  color: #1B338B;
  font-weight: bolder;
  font-size: 2.2vw;
}
.home .about .nr .l .three {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.home .about .nr .l .three .item .tag {
  color: #111111;
  font-size: 0.9vw;
}
.home .about .nr .l .three .item .num {
  color: #1F368E;
  font-family: "StardosStencil-Bold";
  font-style: italic;
  font-size: 4vw;
  margin-top: 10px;
}
.home .about .nr .l .p2 {
  color: #111111;
  font-size: 18px;
  font-weight: bolder;
  margin: 60px 0 20px 0;
}
.home .about .nr .l .des {
  color: #111111;
  font-size: 18px;
  line-height: 1.8;
}
.home .about .nr .l .more {
  width: 194px;
  height: 52px;
  border: 1px solid rgba(27, 51, 139, 0.5);
  border-radius: 48px;
  position: relative;
  display: block;
  margin-top: 60px;
}
.home .about .nr .l .more p {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #1B338B;
}
.home .about .nr .l .more .circle {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  top: 0;
  background: #1B338B;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  justify-content: center;
  transition: all 600ms;
}
.home .about .nr .l .more .circle img {
  transform: translateY(-2px);
  display: block;
}
.home .about .nr .l .more:hover .circle {
  right: 30px;
}
.home .about .nr .r {
  width: 25vw;
}
.home .about .nr .r img {
  max-width: 100%;
  transition: all 600ms;
  object-fit: contain;
}
.home .about .nr .r:hover img {
  transform: scale(1.05);
}
.home .products {
  width: 100%;
  height: 100vh;
  background: url("../image/pbg.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .products .nr {
  width: 80vw;
}
.home .products .nr .t {
  color: white;
  font-size: 2.2vw;
  text-align: center;
  font-weight: bolder;
}
.home .products .nr .allPro {
  width: 100%;
  margin-top: 5vw;
  position: relative;
}
.home .products .nr .allPro .prev {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  z-index: 10;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.home .products .nr .allPro .prev img {
  display: block;
  transform: translateY(-2px);
  transition: all 600ms;
}
.home .products .nr .allPro .prev:hover img {
  transform: translateY(-2px) translateX(-10px);
}
.home .products .nr .allPro .next {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  z-index: 10;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.home .products .nr .allPro .next img {
  display: block;
  transition: all 600ms;
  transform: translateY(-2px);
}
.home .products .nr .allPro .next:hover img {
  transform: translateY(-2px) translateX(-10px);
}
.home .products .nr .allPro .swiper-container {
  width: 100%;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item {
  display: block;
  position: relative;
  cursor: pointer;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg {
  position: relative;
  transform: scale(0.9);
  transform-origin: center center;
  transition: all 600ms;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 200px 0px 200px 0px;
  transition: all 600ms;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg img {
  width: 100%;
  display: block;
  border-radius: 200px 0px 200px 0px;
  transition: all 600ms;
  position: relative;
  height: 25vw;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg .text {
  top: 50%;
  position: absolute;
  left: 40px;
  color: white;
  transform: translateY(-50%);
  transition: all 600ms;
  z-index: 10;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg .text .cn {
  font-size: 1.8vw;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg .text .en {
  font-size: 1.4vw;
  font-family: "StardosStencil-Regular";
  text-transform: capitalize;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 81%;
  padding: 30px 10%;
  z-index: 100;
  opacity: 0;
  transition: all 600ms;
  height: calc(100% - 60px);
  background: rgba(0, 0, 0, 0.8);
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .hover .list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .hover .list a p {
  width: calc(98% - 23px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .hover .list a:hover p {
  text-decoration: underline;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .hover .pt {
  color: white;
  font-size: 1.3vw;
  font-weight: bolder;
  position: absolute;
  left: 10%;
  bottom: 60px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item:hover .bg {
  border-radius: 20px;
  transform: scale(1);
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item:hover .bg::before {
  border-radius: 20px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item:hover .bg img {
  border-radius: 20px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item:hover .bg .text {
  opacity: 0;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item:hover .hover {
  opacity: 1;
  border-radius: 20px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .active .bg {
  border-radius: 20px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .active .bg::before {
  border-radius: 20px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .active .bg img {
  border-radius: 20px;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .active .bg .text {
  opacity: 0;
}
.home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .active .hover {
  opacity: 1;
  border-radius: 20px;
}
.home .honor {
  width: 100%;
  height: 100vh;
  background: url("../image/hbg.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home .honor .nr {
  width: 80vw;
}
.home .honor .nr .t {
  color: #1B338B;
  font-size: 2.2vw;
  font-weight: bolder;
  text-align: center;
}
.home .honor .nr .five {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 0 0;
}
.home .honor .nr .five .pic img {
  max-width: 100%;
}
.home .honor .nr .more {
  width: 194px;
  height: 52px;
  border: 1px solid rgba(27, 51, 139, 0.5);
  border-radius: 48px;
  position: relative;
  display: block;
  margin: 15px auto 0 auto;
}
.home .honor .nr .more p {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #1B338B;
}
.home .honor .nr .more .circle {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  top: 0;
  background: #1B338B;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  justify-content: center;
  transition: all 600ms;
}
.home .honor .nr .more .circle img {
  transform: translateY(-2px);
  display: block;
}
.home .honor .nr .more:hover .circle {
  right: 30px;
}
.home .news {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.home .news .nr {
  width: 80vw;
}
.home .news .nr .dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home .news .nr .dt .t {
  color: #1B338B;
  font-size: 2.2vw;
  font-weight: bolder;
}
.home .news .nr .dt .types {
  display: flex;
}
.home .news .nr .dt .types a {
  display: inline-block;
  padding: 15px 40px;
  transition: all 600ms;
  border-radius: 30px;
  margin-left: 20px;
  color: #1B338B;
}
.home .news .nr .dt .types a:hover {
  background: #1B338B;
  color: white;
}
.home .news .nr .dt .types .active {
  background: #1B338B;
  color: white;
}
.home .news .nr .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
}
.home .news .nr .content .l {
  width: 48%;
  position: relative;
}
.home .news .nr .content .l .swiper-container {
  width: 100%;
  height: 100%;
}
.home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  height: 100%;
}
.home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a .pic {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  transition: all 600ms;
}
.home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a .time {
  position: absolute;
  right: 20px;
  top: 0;
  background: #1B338B;
  display: inline-block;
  padding: 10px 20px;
  color: white;
  font-size: 1.5vw;
}
.home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a .time p {
  font-family: "StardosStencil-Regular";
}
.home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a:hover .pic img {
  transform: scale(1.05);
}
.home .news .nr .content .l .swiper-pagination {
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: flex;
}
.home .news .nr .content .l .swiper-pagination .swiper-pagination-bullet {
  width: 64px;
  height: 4px;
  margin: 0 5px;
  opacity: 0.3;
  background: white;
  cursor: pointer;
  transition: all 600ms;
  border-radius: 10px;
}
.home .news .nr .content .l .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.home .news .nr .content .r {
  width: 48%;
}
.home .news .nr .content .r .list a {
  display: block;
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.home .news .nr .content .r .list a .time {
  color: #666666;
  font-size: 0.7vw;
  font-family: "StardosStencil-Regular";
}
.home .news .nr .content .r .list a .pt {
  color: rgba(17, 17, 17, 0.4);
  font-size: 1.2vw;
  margin: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 600ms;
}
.home .news .nr .content .r .list a .des {
  color: rgba(51, 51, 51, 0.4);
  line-height: 1.8;
  word-break: break-all;
  font-size: 0.9vw;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: all 600ms;
}
.home .news .nr .content .r .list a:hover .pt {
  color: #1B338B;
}
.home .news .nr .content .r .list a:hover .des {
  color: #333333;
}
.home .news .nr .content .r .more {
  width: 194px;
  height: 52px;
  border: 1px solid rgba(27, 51, 139, 0.5);
  border-radius: 48px;
  position: relative;
  display: block;
}
.home .news .nr .content .r .more p {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #1B338B;
}
.home .news .nr .content .r .more .circle {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  top: 0;
  background: #1B338B;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  justify-content: center;
  transition: all 600ms;
}
.home .news .nr .content .r .more .circle img {
  transform: translateY(-2px);
  display: block;
}
.home .news .nr .content .r .more:hover .circle {
  right: 30px;
}
@media screen and (max-width: 1680px) {
  .home .honor .nr .five {
    margin-top: 20px;
  }
  .home .honor .nr .five img {
    max-height: 70vh;
  }
  .home .news .nr {
    margin-top: 1vw;
  }
  .home .news .nr .content .r .list a {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1440px) {
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg img {
    border-radius: 150px 0px 150px 0px;
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg::before {
    border-radius: 150px 0px 150px 0px;
  }
  .home .about .nr .l .three {
    margin-top: 30px;
  }
  .home .about .nr .l .p2, .home .about .nr .l .more {
    margin-top: 30px;
  }
  .home .honor .nr .five {
    margin-top: 20px;
  }
  .home .honor .nr .five img {
    max-height: 60vh;
  }
  .home .news .nr {
    margin-top: 1vw;
  }
  .home .news .nr .content {
    margin-top: 10px;
  }
  .home .news .nr .content .r .list a .pt {
    margin: 5px 0;
  }
}
@media screen and (max-width: 1280px) {
  .home .banner .swiper-container .swiper-wrapper .swiper-slide .text {
    left: 5%;
    width: 90%;
  }
  .home .about .nr, .home .products .nr, .home .honor .nr, .home .news .nr {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
.home .banner{
margin-top: 60px;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .pic .bg img,.home .banner .swiper-container .swiper-wrapper .swiper-slide .pic  video{
height:200px;
}
  .home .banner .swiper-container .swiper-wrapper .swiper-slide .text .cn {
    font-size: 20px;
  }
  .home .banner .swiper-container .swiper-wrapper .swiper-slide .text .en {
    font-size: 16px;
  }
  .home .banner .swiper-pagination {
    left: 5%;
    width: 90%;
    bottom: 30px;
  }
  .home .section {
    height: auto !important;
  }
  .home .section .fp-tableCell {
    height: auto !important;
  }
  .home .about {
    height: auto !important;
    padding: 20px 0;
  }
  .home .about .nr {
    flex-direction: column;
    align-items: flex-start;
  }
  .home .about .nr .l {
    width: 100%;
  }
  .home .about .nr .l .p1 {
    font-size: 20px;
  }
  .home .about .nr .l .three {
    margin-top: 15px;
    flex-direction: column;
  }
  .home .about .nr .l .three .item {
    margin-bottom: 10px;
  }
  .home .about .nr .l .three .item .tag {
    font-size: 16px;
  }
  .home .about .nr .l .three .item .num {
    font-size: 30px;
  }
  .home .about .nr .l .p2 {
    margin: 20px 0;
    font-size: 16px;
  }
  .home .about .nr .l .des {
    font-size: 16px;
  }
  .home .about .nr .l .more {
    width: 180px;
    margin-top: 30px;
  }
  .home .about .nr .r {
    width: 100%;
    margin-top: 20px;
  }
  .home .honor {
    height: auto;
    padding: 30px 0;
  }
  .home .honor .nr {
    align-items: flex-start;
  }
  .home .honor .nr .t {
    font-size: 20px;
  }
  .home .honor .nr .five .pic img {
    max-height: 100%;
  }
  .home .products {
    height: auto;
    padding: 30px 0;
    align-items: flex-start;
  }
  .home .products .nr {
    transform: scale(1);
  }
  .home .products .nr .t {
    font-size: 20px;
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item {
    width: 90%;
    margin: 0 auto;
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg {
    transform: scale(0.9);
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg img {
    height: 350px;
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg .text .cn {
    font-size: 20px;
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .bg .text .en {
    font-size: 18px;
  }
  .home .products .nr .allPro .swiper-container .swiper-wrapper .swiper-slide .item .hover .pt {
    font-size: 20px;
  }
  .home .news {
    height: auto;
    align-items: flex-start;
    margin: 30px 0;
  }
  .home .news .nr .dt {
    flex-direction: column;
  }
  .home .news .nr .dt .t {
    font-size: 20px;
  }
  .home .news .nr .dt .types {
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
  }
  .home .news .nr .dt .types a {
    width: 48%;
    margin: 0;
    padding: 15px 0;
    text-align: center;
  }
  .home .news .nr .content {
    margin-top: 25px;
    flex-direction: column;
  }
  .home .news .nr .content .l {
    width: 100%;
  }
  .home .news .nr .content .l .swiper-container .swiper-wrapper .swiper-slide a .time {
    font-size: 16px;
  }
  .home .news .nr .content .r {
    width: 100%;
    margin-top: 20px;
  }
  .home .news .nr .content .r .list a .time {
    font-size: 16px;
  }
  .home .news .nr .content .r .list a .pt {
    font-size: 18px;
  }
  .home .news .nr .content .r .list a .des {
    font-size: 14px;
  }
}

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