.body .head .head-box .top-title > ul > li:nth-of-type(4) {
  border-bottom: 5px solid #127bbf;
}
.body .page-con .news-con ul {
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.body .page-con .news-con ul li {
  margin-top: 40px;
  position: relative;
  width: 31%;
  border-bottom: 1px solid #D3D3D3;
}
.body .page-con .news-con ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.body .page-con .news-con ul li .news-img {
  width: 100%;
  overflow: hidden;
}
.body .page-con .news-con ul li .news-img img {
  width: 100%;
  height: auto;
  transition: all 1s;
}
.body .page-con .news-con ul li .news-title {
  margin-top: 25px;
  min-height: 160px;
}
.body .page-con .news-con ul li .news-title span {
  color: #787878;
  display: block;
}
.body .page-con .news-con ul li .news-title span:nth-of-type(1) {
  font-size: 18px;
  color: #505050;
}
.body .page-con .news-con ul li .news-title span:nth-of-type(2) {
  font-size: 14px;
  margin: 30px 0px;
}
.body .page-con .news-con ul li .news-date {
  height: 40px;
  line-height: 40px;
}
.body .page-con .news-con ul li .news-date span {
  color: #787878;
}
.body .page-con .news-con ul li .news-date span:nth-of-type(2) {
  float: right;
  line-height: 40px;
  font-size: 17px;
}
.body .page-con .news-con ul li:hover .news-img img {
  transform: scale(1.1);
}
.body .page-con .news-con ul li:hover .news-title span:nth-of-type(1) {
  color: #0072bc;
}
.body .page-con .news-con ul li:hover .news-date .glyphicon.glyphicon-menu-right {
  color: #0072bc;
  animation: hleft 1s;
}
.body .page-con .new-con .shownews .show_news_con {
  margin: 70px auto;
}
@media (max-width: 1050px) {
  .show_news_con img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .body .page-con .news-con ul li {
    width: 100%;
  }
  .body .page-con {
    margin-top: 0;
  }
  .body .page-con .new-con .shownews .show_news_con {
    margin: 30px 0;
  }
}
@keyframes hleft {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
