/* 图文列表 */
.img-list{
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.item-image{
    height: 200px;
    width: 100%;
}
.image-text li {
    width: calc(50% - 10px);
    position: relative;
    line-height: 40px;
    margin-right: 2%;
    margin-bottom: 15px;
    background: rgb(245, 244, 240);
}
.image-text ul li:nth-child(2n+0){
    margin-right: 0;
}
.image-text li .item-image{
    line-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.image-text li .item-image img{
    width: calc(100% - 300px);
    height: 200px;
    object-fit: cover;
}
.image-text li .item{
    width: 300px;
    text-align: left
}
.text2 { /** 溢出隐藏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}