.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;
}
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    gap: 20px;
  }
  .content > div {
    width: 100% !important;
  }
  .content .about {
    width: 100% !important;
  }
  .content img[style*="width:560px"],
  .content img[style*="width: 560px"] {
    width: 100% !important;
    height: auto !important;
  }
  .newsblock {
    width: 100%;
  }
  .newsblock img {
    width: 140px;
    height: 90px;
  }
  .newsblock div {
    margin-left: 12px;
    flex-grow: 1;
    flex-shrink: 1;
  }
  .newsblock div .newstitle {
    width: 100%;
  }
  .newsblock div[style*="width: 430px"],
  .newsblock div[style*="width:430px"] {
    width: 100% !important;
  }
}
@media (max-width: 640px) {
  .newsblock {
    flex-direction: column;
    gap: 10px;
  }
  .newsblock img {
    width: 100%;
    height: auto;
  }
  .newsblock div {
    margin-left: 0px;
  }
}
<!--ºÄÊ±1774437599.2853Ãë-->