.content {
  display: flex;
  justify-content: space-between;
}
.content .about {
  color: #2c2b2b;
  font-size: 16px;
  line-height: 35px;
}
.newsblock {
  display: flex;
  width: 600px;
  margin-top: 10px;
}
.newsblock img {
  width: 150px;
  height: 100px;
  flex-grow: 0;
  flex-shrink: 0;
}
.newsblock div {
  display: flex;
  margin-top: 0px;
  margin-left: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  flex-direction: column;
  justify-content: space-between;
}
.newsblock div .newstitle {
  margin-top: 0px;
  line-height: 30px;
  font-weight: bold;
  width: 430px;
  font-size: 16px;
  overflow-wrap: normal;
}
.newsblock div .date {
  color: silver;
}
.newsblock:first-child {
  margin-top: 0px;
}
