.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../images/news-banner.jpg) fixed;
}
.banner .infobox {
  display: flex;
  align-items: center;
  position: relative;
  width: 80%;
  height: 100vh;
  margin: 0 auto;
}
.banner .infobox .info {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.banner .infobox .info p {
  font-size: 24px;
  font-weight: 200;
  color: #fff;
}
.banner .infobox .info h4 {
  font-weight: normal;
  font-size: 46px;
  color: #ffffff;
}
.banner .mouse-prompt {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%);
  animation: mouse 2s linear infinite;
}
.banner .mouse-prompt .icon-shubiao {
  color: #fff;
  opacity: 0.6;
  font-size: 24px;
}
.banner .mouse-prompt p {
  text-align: center;
  font-weight: 100;
  font-size: 16px;
  color: #fff;
  opacity: 0.6;
}
@keyframes mouse {
  0% {
    bottom: 30px;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  25% {
    bottom: 25px;
    opacity: 0.8;
  }
  50% {
    bottom: 20px;
    opacity: 0.4;
  }
  75% {
    bottom: 15px;
    opacity: 0.1;
  }
  100% {
    bottom: 10px;
    animation-timing-function: ease-out;
    opacity: 0;
  }
}
.news {
  width: 100%;
  height: auto;
  background-color: #f8fbff;
}
.news .main {
  width: 80%;
  margin: 0 auto;
  padding-top: 60px;
}
.news .main ul li {
  display: flex;
  padding-bottom: 70px;
}
.news .main ul li .pic {
  width: 30%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.news .main ul li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news .main ul li:hover .pic img {
  transform: scale(1.05);
}
.news .main ul li .box {
  width: 70%;
  padding: 45px 80px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.news .main ul li .box .time {
  display: flex;
  text-align: center;
  line-height: 36px;
}
.news .main ul li .box .time .day {
  width: 50px;
  height: 32px;
  background-color: #1553a0;
  border-radius: 3px 0 0 3px;
}
.news .main ul li .box .time .day span {
  font-size: 18px;
  color: #fff;
}
.news .main ul li .box .time .month {
  width: 50px;
  height: 32px;
  background-color: #f0f0f0;
  border-radius: 0 3px 3px 0;
  font-size: 18;
  color: #666;
}
.news .main ul li .box .time .month span {
  font-size: 18px;
  color: #888;
}
.news .main ul li .box p {
  font-size: 24px;
  font-weight: normal;
  line-height: 36px;
  color: #333333;
  padding-top: 30px;
}
.news .main ul li .box span {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #666;
  padding-top: 24px;
}
.news .main ul li .box .more {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 12px;
  width: 200px;
}
.news .main ul li .box .more a {
  color: #1553a0;
}
.news .main ul li .box .more .icon-jiantou {
  color: #1553a0;
  transform: rotate(180deg);
  font-size: 30px;
  transition: all 0.6s;
}
.news .main ul li .box .more:before {
  content: '';
  height: 2px;
  border-bottom: 2px solid #1553a0;
  position: absolute;
  bottom: -2px;
  width: 0;
  transition: all 0.6s;
}
.news .main ul li .box .more:hover::before {
  width: 100%;
}
.news .main ul li .box .more:hover .icon-jiantou {
  transform: rotate(145deg) !important;
}
@media screen and (max-width: 992px) {
  .banner .infobox .info h4 {
    font-size: 30px;
  }
  .banner .infobox .info p {
    font-size: 18px;
  }
  .news .main {
    width: 90%;
  }
  .news .main ul li {
    flex-direction: column;
  }
  .news .main ul li .pic {
    width: 100%;
    height: 200px;
  }
  .news .main ul li .box {
    width: 100%;
    padding: 40px 40px;
  }
}
