.home {
  width: 100%;
  background: #F7F7F7;
}
.home .banner {
  position: relative;
}
.home .banner p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bolder;
  text-transform: uppercase;
}
.home .banner img {
  width: 100%;
  display: block;
}
.home .main .section3 {
  width: 90%;
  margin: 60px auto;
}
.home .main .section3 .news {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .main .section3 .news a {
  width: 49%;
  display: flex;
  justify-content: space-between;
  background: white;
  margin-bottom: 30px;
}
.home .main .section3 .news a .pic {
  width: 40%;
  overflow: hidden;
}
.home .main .section3 .news a .pic img {
  width: 100%;
  height: 244px;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .main .section3 .news a .info {
  width: 50%;
  padding: 60px 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home .main .section3 .news a .info .name {
  font-size: 20px;
  font-weight: bolder;
  color: black;
}
.home .main .section3 .news a .info .time {
  color: #999999;
  font-size: 15px;
}
.home .main .section3 .news a:hover .pic img {
  transform: scale(1.05);
}
.home .main .section3 .pager {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.home .main .section3 .pager a {
  display: block;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border: 1px solid black;
  margin: 0 2px;
  transition: all 600ms;
  font-size: 14px;
  color: black;
}
.home .main .section3 .pager a:hover {
  background: black;
  color: white;
}
.home .main .section3 .pager .active {
  background: black;
  color: white;
}
@media screen and (max-width: 1200px) {
  .home .banner p {
    font-size: 24px;
  }
  .home .main .section3 {
    margin: 30px auto;
  }
  .home .main .section3 .news a {
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column;
  }
  .home .main .section3 .news a .pic {
    width: 100%;
  }
  .home .main .section3 .news a .pic img {
    height: 150px;
  }
  .home .main .section3 .news a .info {
    width: 90%;
    padding: 20px 5%;
  }
  .home .main .section3 .news a .info .time {
    margin-top: 10px;
  }
}

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