.item{
    width: 100%;
    overflow: hidden;
}
.one-item{
    display: flex;
    width: 100%;
    height: 129px;
    gap: 30px;
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ededed;
}
.one-item-left{
    width: 20%;
}
.one-item-left img{
    width: 100%;
    height: 100%;
    border: 1px solid #ededed;
}
.one-item-right{
    width: 80%;
}
.one-item-right-title {
    display: block;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.one-item-right-desc{
    height: 60px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}
.one-item-right-time{
    vertical-align: middle;
    font-size: 14px;
    color: #666666;
    line-height: 20px;

}