
.content{
    font-size: 1rem;
    line-height: 3rem;
}
.list-div{
    height: 9.75rem;
    display: flow-root;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}
.list-div:last-child{
    border: none;
}
.list-div .news-pic{
    width: 9rem;
    height: 6.75rem;
    border-radius: 10px;
    cursor: pointer;
}
.list-div .news-content{
    float: right;
    height: 100%;
    position: relative;
    padding-left: 1.5rem;
    width: calc(100% - 9rem);
}
.list-div .news-top {
    display: flow-root;
    margin-bottom: 1rem;
}
.list-div .news-title {
    float: left;
    font-size: 1.1rem;
    /*     font-weight: 600; */
    width: calc(100% - 7rem);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000;
}
.list-div .news-title span:hover{
    cursor: pointer;
    color: var(--main_color);
}
.list-div .news-time {
    float: left;
    width: 7rem;
    color: var(--grey_color);
    font-size: 1.1rem;
    text-align: right;
}
.list-div .news-detail{
    font-size: 1.1rem;
    color: var(--grey_color);
    line-height: 1.5;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-all;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-div .news-button{
    position: absolute;
    bottom: 0;
}
