.news {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.news .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.news .list .item {
  display: flex;
  justify-content: space-between;
  width: 48%;
  height: 208px;
  padding: 30px;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: all .3s;
  border: 1px solid #F7F7F7;
}

.news .list .item .nr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 56%;
}

.news .list .item .nr p {
  font-size: 17px;
}

.news .list .item .nr .more {
  font-size: 13px;
}

.news .list .item img {
  width: 38%;
}

.news .list .item:hover {
  background-color: #5288F5;
}

.news .list .item:hover .nr p,
.news .list .item:hover .nr .more {
  color: #fff;
}

.news .details .title {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 54px;
  border-bottom: 1px solid #E2E2E2;
}

.news .details .title h3 {
  color: #111111;
  font-size: 32px;
  margin-bottom: 43px;
}

.news .details .title span {
  color: #999999;
  font-size: 18px;
}

.news .details .content {
  width: 100%;
  color: #666 !important;
  font-size: 18px !important;
  line-height: 2 !important;
}

.news .details .content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.news .details .page {
  width: 100%;
  margin-top: 100px;
  margin-bottom: 50px;
}

.news .details .page a {
  display: inline-block;
  color: #1D1C1C;
  font-size: 18px;
  margin-bottom: 10px;
  transition: all .3s;
}

.news .details .page a:hover {
  color: #5288F5;
}

@media screen and (max-width: 992px) {
  .banner .title {
    top: 48%;
    font-size: 30px;
  }

  .news .list .item {
    width: 100%;
  }
}