.toppic {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.toppic .box {
  margin-top: 200px;
  margin-left: 32px;
  color: #fff;
}
.toppic .box h1 {
  font-size: 72px;
  margin-bottom: 2rem;
}
.toppic .box p {
  font-size: 22px;
}

.newslist .box {
  position: relative;
  overflow: hidden;
}
.newslist .box .pic {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.newslist .box:hover .pic {
  transform: scale(1.1);
}
.newslist .box .text {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 20px;
  color: #fff;
  font-weight: bolder;
  padding: 15px;
}