.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,
.banner .infobox .info .banner-label {
  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_detail {
  width: 100%;
  height: auto;
  background-color: #f8fbff;
  padding: 100px 0;
}
.news_detail .main {
  width: 80%;
  background-color: #fff;
  padding: 60px 90px;
  margin: 0 auto;
}
.news_detail .main .title {
  display: flex;
  padding-bottom: 40px;
  border-bottom: 1px solid #f3f3f3;
}
.news_detail .main .title .left {
  flex: 1;
}
.news_detail .main .title .left p,
.news_detail .main .title .left h1 {
  font-size: 30px;
  font-weight: 400;
  color: #333;
  margin: 0;
}
.news_detail .main .title .left .date {
  font-size: 16px;
  color: #888888;
  padding-top: 20px;
}
.news_detail .main .title .right {
  width: 10%;
  display: flex;
  justify-content: flex-end;
}
.news_detail .main .title .right span {
  color: #1f5aa9;
}
.news_detail .main .content {
  padding-top: 30px;
}
.news_detail .main .content p {
  font-size: 18px;
  line-height: 32px;
  color: #555;
  text-indent: 30px;
  padding: 20px 0;
}
@media screen and (max-width: 992px) {
  .banner .infobox .info h4,
  .banner .infobox .info .banner-label {
    font-size: 30px;
  }
  .banner .infobox .info p {
    font-size: 18px;
  }
  .news_detail {
    padding: 50px 0;
  }
  .news_detail .main {
    width: 90%;
    padding: 30px;
  }
  .news_detail .main .title {
    flex-direction: column;
  }
  .news_detail .main .title .left p,
  .news_detail .main .title .left h1 {
    font-size: 20px;
  }
  .news_detail .main .title .left .date {
    font-size: 14px;
  }
  .news_detail .main .title .right {
    width: 100%;
    justify-content: flex-start;
    padding-top: 20px;
  }
  .news_detail .main .content p {
    font-size: 16px;
  }
  .news_detail .main .content img {
    width: 100%;
  }
}
