

@media all and (min-width: 720px){
  .news_body_box_right_content_imgList{
    margin-bottom: 30px;
    margin-top: 20px;
    /* display: flex;
    flex-direction: row;
    justify-items: flex-start;
    flex-wrap: wrap; */
    display: grid;
    /*  声明列的宽度  */
    grid-template-columns: repeat(4, 23%);
    /*  声明行间距和列间距  */
    grid-gap: 20px;
    /*  声明行的高度  */
    /*grid-template-rows: 370px;*/
  }
  .news_body_box_content_imgList_item{
    text-align: center;
    box-shadow: 0px 2px 8px 0px rgba(204, 204, 204, 0.5);
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .news_body_box_content_imgList_item:hover{
    cursor: pointer;
    box-shadow: 0px 2px 8px 3px rgba(204, 204, 204, 0.5);
  }
  
  .news_body_box_content_imgList_item .imgItem img {
    width: 100%;
    /*height: 230px;*/
	height: 100%;
  }
  .imgItem_infoBox{
    padding: 15px 20px 20px;
    font-size: 18px;
    color: #666;
  }
  .imgItem_infoBox_name{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }

}
.imgItem_infoBox_info{
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.clear{
  clear: both;
}
@media all and (max-width: 720px){
  .news_body_box_content_imgList--mobile{
    padding: 10px;
  }
  .news_body_box_content_imgList--mobile .news_body_box_content_imgList--mobile_item{
    float: left;
    width: 48%;
    margin: 0 10px 10px 0;
    text-align: center;
    box-shadow: 0px 2px 8px 0px rgba(204, 204, 204, 0.5);
    background: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .news_body_box_content_imgList--mobile .news_body_box_content_imgList--mobile_item:nth-child(even) {
    margin-right: 0;
  }
  .imgItem_infoBox{
    padding: 8px;
    font-size: 13px;
    color: #666;
  }
  .imgItem_infoBox_name{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
}