.content{
    width: 1200px;
    margin: 60px auto;
    background-color: #fff;
    padding: 17px 27px;
    box-sizing: border-box;
}
.content .title{
    width: 1146px;
    box-sizing: border-box;
    display: flex;
    border-bottom: 1px solid #d8d8d8;
    padding: 0 15px 17px 15px;
    align-items: center;
}
.content .title span{
    font-size: 20px;
    letter-spacing: 2px;
    flex: 1;
    font-weight: bold;
}
.list{
    display: flex;
    flex-direction: column;
    width: 1146px;
    margin: 0 auto auto auto;
}
.list .item{
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e2;
    padding: 30px 43px;
    color: #333;
    display: flex;
    cursor: pointer;
    transition: 0.25s;
}
.list .item:last-child{
    border: none;
}
.list .item:hover{
    background-color: #58BBC230;
}
.list .item .img{
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 34px;
}
.list .item img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
}
.list .item .rbox{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.list .item .rbox .stitle{
    font-size: 18px;
    margin-bottom: 15px;
}
.list .item .rbox .sinfo{
    font-size: 15px;
    color: #757575;
    display: flex;
    justify-content: space-between;
}
/* .pager{
    margin-top: 5px;
} */
.pager div{
    display: flex;
}

@media (max-width: 1440px){
    .container{
        width: 100vw;
    }
    .content{
        width: 100%;
        padding: 0px;
        margin: 0;
    }
    .content .title{
        width: 100%;
        padding: 16px;
        background-color: #f4f4f4;
        border: none;
    }
    .list{
        width: 100%;
    }
    .list .item{
        padding: 16px;
        box-sizing: border-box;
        align-items: center;
    }
    .list .item .img{
        margin-right: 16px;
    }
    .list .item .rbox{
        width: calc(100vw - 80px - 16px - 16px - 16px);
    }
    .list .item .rbox .stitle{
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        margin-bottom: 4px;
        font-size: 16px;
    }
    .list .item .rbox .sinfo{
        flex-direction: column;
        font-size: 14px;
    }
    .pager{
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
        margin-top: 0;
        background-color: #f4f4f4;
    }
}