/*list*/
.news-list-bottom {
    display: flex;
    flex-wrap: wrap;
}
.news-bottom-item {
width: 49%;
  margin-right: 2%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.news-bottom-item:nth-child(2n) {
    margin-right: 0;
}
.news-bottom-img {
    width: 40%;
    padding-bottom: 24%;
    flex-shrink: 0;
}
.cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.news-item-info {
display: flex;
  flex-direction: column;
  margin-left: 10px;
  width: 60%;
  justify-content: space-between;
  flex-shrink: 0;
  background: #fff;
  padding: 20px;
}
.news-item-info h1 {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
}
.news-item-info p {
    font-size:  18px;
    color: #666;
    overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #999;
}
.news-item-info h2 {
    font-size: 18px;
    color: #888;
    position: relative;
}
.news-item-info h2::after {
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 13px;
    background-image: url(../images/jt1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    transform: translate(0,-50%);
    content: '';
    transition: .5s;
}

@media screen and (max-width: 1024px){
.news-bottom-item {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}
.b1_conter .warp {
    width: 100%;
  }
}