.news-list {
  display: flex;
  flex-wrap: wrap;
}
.news-list .news-item {
  width: calc(50% - 10px);
  margin-right: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2);
  display: flex;
  margin-bottom: 20px;
}
.news-list .news-item:nth-child(2n) {
  margin-right: 0;
}
.news-list .news-item img,
.news-list .news-item .img {
  width: 220px;
  height: 150px;
}
.news-list .news-item .img {
    object-fit: cover;
    position: relative;
}
.news-list .news-item .img .tag{
  position: absolute;
  top:5px;
  left: 5px;
  font-size: 16px;
  padding:4px 8px;
  border-radius: 6px;
  color:#fff;
  background-color: var(--main-color);
}
.news-list .news-item .text-box {
  width: calc(100% - 220px);
}
.news-list .news-item .text-box .witr_blog_con {
  padding: 0 10px;
}
.news-list .news-item .text-box .witr_blog_con h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.news-list .news-item .text-box .witr_blog_con h2 a {
  font-size: 20px;
}
.news-list .news-item .text-box .witr_blog_con p {
  text-align: left;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.news-list .news-item .text-box .witr_blog_con .other{
    display: flex;
    justify-content: flex-start;
}
.news-list .news-item .text-box .witr_blog_con .other span{
    margin-bottom: 0;
}
@media screen and (max-width:768px){
  .news-list .news-item .img{
    width:120px;
    height: 120px;
  }
  .news-list .news-item .img img{
    width: 120px;
    height: 120px;
  }
  .news-list .news-item{
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .news-list .news-item .text-box{
    width: calc(100% - 120px);
  }
  .news-list .news-item .text-box .witr_blog_con h2 a{
    font-size: 18px;
    width: 100%;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .news-list .news-item .text-box .witr_blog_con h2{
    margin-bottom: 0;
  }
  .news-list .news-item .text-box .witr_blog_con{
    padding: 10px;
  }
}