.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 .navList {
  width: 70%;
  margin: 0 auto;
  display: flex;
  transform: translateY(-35px);
  background-color: #ffffff;
}
.home .main .navList .item {
  width: 20%;
  text-align: center;
  color: #333333;
  position: relative;
  padding: 25px 0;
  transition: all 600ms;
  cursor: pointer;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
}
.home .main .navList .item p:nth-child(2) {
  position: absolute;
  left: 0;
  bottom: 5px;
  opacity: 0;
  text-align: center;
  width: 100%;
  font-family: "Raleway-Regular";
  font-size: 12px;
  text-transform: uppercase;
}
.home .main .navList .item::before {
  background: linear-gradient(0deg, #11327E 0%, #0349A3 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: inline-block;
  opacity: 0;
  transition: all 600ms;
}
.home .main .navList .item:hover {
  color: #ffffff;
  border-color: #11327E;
border-left:1px solid #E5E5E5;
border-right:1px solid #E5E5E5;
}
.home .main .navList .item:hover::before {
  opacity: 1;
}

.home .main .navList .item:first-child{
border-left:none;
}

.home .main .navList .item:last-child{
border-right:none;
}
.home .main .navList .item:hover p {
  transform: translateY(-7px);
}
.home .main .navList .item:hover p:nth-child(2) {
  opacity: 1;
}
.home .main .navList .active {
  color: #ffffff;
  border-color: #11327E;
}
.home .main .navList .active::before {
  opacity: 1;
}
.home .main .navList .active p {
  transform: translateY(-7px);
}
.home .main .navList .active p:nth-child(2) {
  opacity: 1;
}
.home .main .about {
  width: 100%;
  padding: 80px 0;
  background-image: url("../images/inBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.home .main .about .t1 {
  text-align: center;
color:#222222;
}
.home .main .about .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}
.home .main .about .t1 p:nth-child(2) {
  font-size: 36px;
  font-family: "Raleway-Regular";
  text-transform: uppercase;
  margin-top: 30px;
}
.home .main .about .des {
  width: 80%;
  margin: 40px auto;
  text-align: center;
  line-height: 36px;
}
.home .main .about .vision {
  width: 60%;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home .main .about .vision .item {
  width: 40%;
  padding: 40px 0 80px 0;
  background:linear-gradient(0deg, #11327eb3 0%, #0349a3c9 100%);
  -webkit-background-color:linear-gradient(0deg, #11327eb3 0%, #0349a3c9 100%) ;
  /*background-color:rgba(62,110,176,1.0);*/

  text-align: center;
  position: relative;
  transition: all 600ms;
  /*border: 1px solid red;*/
}
.home .main .about .vision .item .pic {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  transition: all 600ms;
  opacity: 0;
}
.home .main .about .vision .item .pic i {
  color: #ffffff;
  font-size: 50px;
}
.home .main .about .vision .item .p1 {
  color: #FFFFFF;
  /*color: green;*/
  font-size: 24px;
  font-weight: bolder;
  padding: 15px 0;
  transition: all 600ms;
  position: relative;
  display: inline-block;
  /*border: 1px solid red;*/
}

.home .main .about .vision .item .p1::after {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #FFFFFF;
  content: "";
  display: inline-block;
  opacity: 0;
  transition: all 600ms;
}
.home .main .about .vision .item .p2 {
color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
    font-weight: 200;
    transition: all 600ms;
    width: 90%;
    margin: 0 auto;
    line-height: 30px;
}
.home .main .about .vision .item:hover {
  background-color: rgba(17, 50, 126, 0.8);
  transform: translateY(-30px);
}
.home .main .about .vision .item:hover .pic {
  opacity: 1;
  transform: translateY(30px);
}
.home .main .about .vision .item:hover .p1 {
  transform: translateY(30px);
}
.home .main .about .vision .item:hover .p1::after {
  opacity: 1;
}
.home .main .about .vision .item:hover .p2 {
  transform: translateY(30px);
}
.home .main .history {
  padding: 100px 10% 0 10%;
  background: url("../images/hBg.png") no-repeat;
  background-position: center;
  background-size: cover;
}
.home .main .history .t1 {
  text-align: center;
  color: #ffffff;
}
.home .main .history .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}
.home .main .history .t1 p:nth-child(2) {
  font-size: 36px;
  font-family: "Raleway-Regular";
  margin-top: 30px;
  text-transform: uppercase;
}
.home .main .history .allImgs {
  position: relative;
  padding: 0 5%;
transform: translateY(-100px);
}
.home .main .history .allImgs .rotate {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .main .history .allImgs .rotate img {
  animation: run 3s infinite linear;
}
.home .main .history .allImgs .rotate .pic2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes run {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.home .main .history .allImgs::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1B4098;
  height: 3px;
  width: 100%;
}
.home .main .history .allImgs .swiper-container {
  width: 100%;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  padding: 300px 0;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .year {
  width: 172px;
  height: 172px;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 600ms;
  border: 1px solid #ffffff;
  transform: scale(0.25);
  cursor: pointer;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .year::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 10%;
  top: 10%;
  width: 80%;
  height: 80%;
  background: #1B4098;
  border-radius: 50%;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .year p {
  color: #ffffff;
  font-size: 60px;
  font-weight: bolder;
  position: absolute;
  left: 30px;
  top: -80px;
  font-family: "Poppins-Bold";
  transition: all 600ms;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des {
  width: 850px;
  height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 40px;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 600ms;
  z-index: 1000;
  pointer-events: none;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des::-webkit-scrollbar {
  width:2px;
  background: rgba(255, 255, 255, 0.2);
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des::-webkit-scrollbar-thumb {
  width: 1px;
  background-color: rgba(255, 255, 255, 1);
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item p:nth-child(1) {
  color: #ffffff;
  font-size: 20px;
  width: 90px;
  display: inline-block;
  text-align: center;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item .dot {
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 50%;
  position: relative;
  align-items: center;
  margin: 0 20px;
}
/*.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item .dot::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #1B4098;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
}*/
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item p:nth-child(3) {
  color: #ffffff;
  font-size: 20px;
  font-weight: 200;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide-active .year {
  transform: scale(1);
  border-color: transparent;
  background: #1B4098;
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide-active .year p {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide-active .des {
  opacity: 1;
  pointer-events: auto;
}
.home .main .history .allImgs .prev {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #1B4098;
  border-radius: 50%;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 600ms;
}
.home .main .history .allImgs .prev i {
  color: #ffffff;
  display: inline-block;
  transform: translateX(-5px);
  transition: all 600ms;
  font-size: 20px;
}
.home .main .history .allImgs .prev:hover {
  background: white;
}
.home .main .history .allImgs .prev:hover i {
  color: #1B4098;
}
.home .main .history .allImgs .next {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #1B4098;
  border-radius: 50%;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 600ms;
}
.home .main .history .allImgs .next i {
  color: #ffffff;
  display: inline-block;
  transform: translateX(-5px);
  transition: all 600ms;
  font-size: 20px;
}
.home .main .history .allImgs .next:hover {
  background: white;
}
.home .main .history .allImgs .next:hover i {
  color: #1B4098;
}
.home .main .honor {
  width: 100%;
  padding: 100px 10% 100px 10%;
  background: url("../images/honorBg.png") no-repeat;
  background-size: cover;
}
.home .main .honor .t1 {
  text-align: center;
}
.home .main .honor .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}
.home .main .honor .t1 p:nth-child(2) {
  font-size: 36px;
  font-family: "Raleway-Regular";
  margin: 20px 0;
  text-transform: uppercase;
}
.home .main .honor .t1 p:nth-child(3) {
  font-size: 24px;
  font-weight: 200;
}
.home .main .honor .content {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 60px auto;
}
.home .main .honor .content .ltypes {
  width: 25%;
  height: 713px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.home .main .honor .content .ltypes .item {
  border: 1px solid #EEEEEE;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
  margin-bottom: 29px;
  transition: all 600ms;
  cursor: pointer;
}
.home .main .honor .content .ltypes .item .pic {
  width: 84px;
  height: 84px;
  background: #FFFFFF;
  border: 1px solid #DCDCDC;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 600ms;
}
.home .main .honor .content .ltypes .item .pic i {
  color: #D7D7D7;
  font-size: 35px;
  transition: all 600ms;
}
.home .main .honor .content .ltypes .item .text {
  margin-left: 20px;
  width: 150px;
}
.home .main .honor .content .ltypes .item .text p:nth-child(1) {
  color: #909090;
  transition: all 600ms;
  font-size: 22px;
}
.home .main .honor .content .ltypes .item .text p:nth-child(2) {
  color: #B3B3B3;
  font-size: 18px;
  margin-top: 10px;
  font-family: "Raleway-Regular";
  transition: all 600ms;
}
.home .main .honor .content .ltypes .active {
  box-shadow: 0px 2px 14px 2px rgba(0, 0, 0, 0.06);
}
.home .main .honor .content .ltypes .active .pic {
  background-color: #1B4098;
}
.home .main .honor .content .ltypes .active .pic i {
  color: #ffffff;
}
.home .main .honor .content .ltypes .active .text p:nth-child(1), .home .main .honor .content .ltypes .active .text p:nth-child(2) {
  color: #1B4098;
}
.home .main .honor .content .rInfo {
  width: 73%;
  border: 1px solid #EEEEEE;
  position: relative;
  height: 713px;
}
.home .main .honor .content .rInfo .prev {
  position: absolute;
  left: 2.5%;
  top: 55%;
  cursor: pointer;
  z-index: 1000;
}
.home .main .honor .content .rInfo .prev svg {
  height:20px;
  fill: rgba(203, 203, 203, 0.5);
  transition: all 600ms;
}
.home .main .honor .content .rInfo .prev:hover svg {
  fill: #000000;
}
.home .main .honor .content .rInfo .next {
  position: absolute;
  right: 2.5%;
  top: 55%;
  cursor: pointer;
  z-index: 1000;
}
.home .main .honor .content .rInfo .next svg {
  height: 20px;
  fill: rgba(203, 203, 203, 0.5);
  transition: all 600ms;
}
.home .main .honor .content .rInfo .next:hover svg {
  fill: #000000;
}
.home .main .honor .content .rInfo .aInfo {
  width: 100%;
  display: none;
}
.home .main .honor .content .rInfo .aInfo .d1 {
  width: 80%;
  padding: 20px 10%;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.home .main .honor .content .rInfo .aInfo .d1 .num {
  color: #1B4098;
  font-size: 90px;
  font-family: "Raleway-Regular";
}
.home .main .honor .content .rInfo .aInfo .d1 .des {
  display: flex;
  align-items: center;
}
.home .main .honor .content .rInfo .aInfo .d1 .des span {
  color: #A0A0A0;
  font-size: 24px;
}
.home .main .honor .content .rInfo .aInfo .d1 .des i {
  color: #CBCBCB;
  display: inline-block;
  font-size: 105px;
  margin-left: 20px;
}
.home .main .honor .content .rInfo .aInfo .allImgs {
  width: 80%;
  margin: 40px auto;
}
.home .main .honor .content .rInfo .aInfo .allImgs .swiper-container {
  width: 100%;
}
.home .main .honor .content .rInfo .aInfo .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic {
  width: 100%;
  overflow: hidden;
}
.home .main .honor .content .rInfo .aInfo .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic img {
  width: 100%;
  display: block;
  object-fit: contain;
  transition: all 4s;
  height: 450px;
}
.home .main .honor .content .rInfo .aInfo .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: scale(1.05);
}
.home .main .honor .content .rInfo .aInfo:first-child {
  display: block;
}
.home .main .cooperate {
  padding: 100px 10% 100px 10%;
  background: url("../images/coopBg.png") no-repeat;
  background-size: cover;
}
.home .main .cooperate .t1 {
  text-align: center;
  color: #ffffff;
}
.home .main .cooperate .t1 p:nth-child(1) {
  font-size: 36px;
  font-weight: bolder;
}
.home .main .cooperate .t1 p:nth-child(2) {
  font-size: 36px;
  font-family: "Raleway-Regular";
  margin-top: 20px;
  text-transform: uppercase;
}
.home .main .cooperate .allImgs {
  width: 100%;
  padding: 80px 0;
  position: relative;
}
.home .main .cooperate .allImgs .swiper-container {
  width: 100%;
}
.home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide {
  padding-top: 20px;
}
.home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #EEEEEE;
  border-radius: 20px;
  text-align: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 600ms;
}
.home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic img {
  max-width: 80%;
  object-fit: contain;
  max-height: 80%;
  transition: all 600ms;
}
.home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic:hover {
  transform: translateY(-20px);
  box-shadow: 1px 2px 12px 1px rgba(0, 0, 0, 0.21);
  background-color: #ffffff;
}
.home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic:hover img {
  transform: rotateY(360deg);
}
.home .main .cooperate .allImgs .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.home .main .cooperate .allImgs .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 600ms;
  cursor: pointer;
  margin: 0 10px;
}
.home .main .cooperate .allImgs .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .home .main .honor .content {
    width: 100%;
  }
  .home .main .honor .content .ltypes .item {
    margin-bottom: 30px;
  }
  .home .main .honor .content .ltypes .item .text {
    width: 120px;
  }
  .home .main .about .vision .item .p2{
    font-size: 16px;
  }
}
@media screen AND (max-width: 1366px) {
  .home .main .honor .content{

  }
  .home .main .about .vision .item{
    padding: 40px 0 40px 0;
  }
  .home .main .about .vision .item .p2{
    font-size: 15px;
  }
  .home .main .about .vision .item:hover .pic{
    transform: translateY(21px);
  }
  .home .main .about .vision .item:hover .p1{
    transform: translateY(21px);
  }
  .home .main .about .vision .item:hover .p2{
    transform: translateY(21px);
  }
  .home .main .about .vision .item:hover{
    transform: translateY(-21px);
  }
  .home .main .honor .content .ltypes .item .pic{
    width: 59px;
    height: 59px;
  }
  .home .main .honor .content .ltypes{
    height: 614px;
  }
  .home .main .honor .content .rInfo{
    height: 614px;
  }
}
@media screen and (max-width: 1300px) {
  .home .main .honor .content .ltypes .item .pic{
    width: 50px;
    height: 50px;
  }
  .home .main .honor .content .ltypes .item .pic i{
    font-size: 20px;
  }
  .home .banner img {
    height: 300px;
  }
.home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic{
    height: 140px;
}
  .home .banner .t1 {
    font-size: 20px;
    width: 90%;
    left: 5%;
  }
  .home .main .navList {
    width: 80%;
    flex-wrap: wrap;
  }
  .home .main .navList .item {
    width: 100%;
    border-right: none;
    border-bottom: none;
  }
  .home .main .navList .item:last-child {
    border-bottom: 1px solid #E5E5E5;
  }
  .home .main .about {
    padding: 30px 0;
  }
  .home .main .about .t1 p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .about .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 15px;
  }
  .home .main .about .des {
    width: 90%;
    margin: 20px auto;
  }
  .home .main .about .vision {
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .home .main .about .vision .item {
    width: 100%;
    padding: 40px 5% 80px 5%;
    margin-bottom: 40px;
  }
.home .main .about .vision .item .p2 {
    line-height: 30px;
}
  .home .main .history {
    width: 100%;
    padding: 50px 5%;
  }
  .home .main .history .t1 p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .history .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 15px;
  }
  .home .main .history .allImgs {
    padding-bottom: 30px;
    transform: translateY(0);
  }
  .home .main .history .allImgs .rotate {
    top: 23%;
    transform: translate(-50%, -50%) scale(0.8);
  }
  .home .main .history .allImgs::before {
    display: none;
  }
  .home .main .history .allImgs .prev {
    left: -10px;
    transform: translateY(0);
    top: auto;
    bottom: 0;
  }
  .home .main .history .allImgs .next {
    right: -10px;
    transform: translateY(0) rotateY(180deg);
    top: auto;
    bottom: 0;
  }
  .home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide {
    padding: 40px 0;
  }
  .home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .year {
    width: 150px;
    height: 150px;
    margin: 15px auto;
    transform: scale(0.8);
  }
  .home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .year p {
    font-size: 44px;
  }
  .home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des {
    width: 100%;
    position: static;
    transform: translateX(0);
    margin-top: 70px;
    line-height: 30px;
    height: 224px;
  }
  .home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item p {
    font-size: 14px;
  }
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item p:nth-child(3) {
    font-size: 17px;
    text-align: center;
    margin: 0px 10px;
}
  .home .main .honor {
    width: 100%;
    padding: 50px 5% 0 5%;
  }
  .home .main .honor .t1 p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .honor .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 15px;
  }
  .home .main .honor .t1 p:nth-child(3) {
    font-size: 14px;
    line-height: 28px;
  }
  .home .main .honor .content {
    margin: 30px auto;
    flex-direction: column;
  }

  .home .main .honor .content .ltypes {
    width: 100%;
    height: 375px;
  }
  .home .main .honor .content .ltypes .item {
    margin-bottom: 15px;
    padding: 15px 0;
  }
  .home .main .honor .content .rInfo {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
  .home .main .honor .content .rInfo .aInfo .d1{
    width: 100%;
    justify-content: center;
  }
  .home .main .honor .content .rInfo .aInfo .d1 .des i{
    font-size: 56px;
  }
  .home .main .honor .content .rInfo .aInfo .d1 .num {
    font-size: 60px;
  }
  @media screen and (max-width: 320px) {
    .home .main .honor .content .rInfo .aInfo .d1 .des i{
      font-size: 29px;
    }
  }
  .home .main .honor .content .rInfo .aInfo .allImgs {
    width: 90%;
    margin: 20px auto;
  }
  .home .main .honor .content .rInfo .aInfo .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic img {
    height: 250px;
  }
  .home .main .honor .content .rInfo .prev, .home .main .honor .content .rInfo .next {
    top: 65%;
  }
  .home .main .cooperate {
    width: 100%;
    padding: 50px 5%;
  }
.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item {
    flex-direction: column;
margin-bottom: 8px;
}

.home .main .history .allImgs .swiper-container .swiper-wrapper .swiper-slide .des .item p:nth-child(2){
display:none;
}

  .home .main .cooperate .t1 p:nth-child(1) {
    font-size: 20px;
  }
  .home .main .cooperate .t1 p:nth-child(2) {
    font-size: 18px;
    margin-top: 15px;
  }
  .home .main .cooperate .allImgs {
    padding: 20px 0;
  }
  .home .main .cooperate .allImgs .swiper-pagination {
    display: none;
  }
}

@media screen AND (max-width: 767px) {
    .home .banner .t1{
        line-height: 26px;
    }
    .home .main .cooperate .allImgs .swiper-container .swiper-wrapper .swiper-slide .pic{
        height: 181.5px;
    }
    .home .main .about .vision .item .p2{
      font-size: 16px;
    }
    .home .main .honor .content .rInfo .prev, .home .main .honor .content .rInfo .next{
      top: 60%;
    }
    .home .main .honor .content .rInfo .prev{
      left: 5.5%;
    }
    .home .main .honor .content .rInfo .next{
      right: 5.5%;
    }

  }

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