body {
  background-color: #f9f9f9;
}
.summaryContainer {
  display: flex;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 20px;
  margin-bottom: 20px;
}
.img {
  width: 270px;
  height: 200px;
  flex: none;
  overflow: hidden;
  margin-right: 40px;
}
.img img {
  width: 270px;
  height: 200px;
}

.summary {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 28px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  text-overflow: ellipsis;
}
.date {
  font-size: 12px;
  margin-top: 9px;
  font-weight: 400;
  color: rgba(0,0,0,.5);
  line-height: 1.416;
}
.details {
  margin-top: 17px;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 26px;
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.newsNavbar {
  display: flex;
  background-color: #fff;
}

.newsNavbar>span {
  padding: 30px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.newsNavbar .activeNav{
  position: relative;
  color: #101e36;
}
.activeNav::after{
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: #101e36;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.breadcrumbs {
  margin-bottom: 0;
}
.articleList {
  margin-top: 20px;
}

@media screen and (max-width: 500px) {
  .summaryContainer {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 20px;
    margin-bottom: 20px;
  }
  .img {
    width: 100%;
  }
  .desc {
    margin-top: 20px;
  }
  .newsNavbar>span {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
  }
}