@charset "UTF-8";

/**!
 * 列表页
 * date:2021-08-19
 * author: wppei;
 */

.content {
    min-height: 350px;
    margin-bottom: 50px;
}

.content-hd {
    position: relative;
    height: 46px;
    line-height: 46px;
    padding-left: 41px;
    font-size: 18px;
    font-weight: bold;
    color: #0162bc;
    border-bottom: 1px solid #a9a9a9;
}

.content-hd:before {
    content: '';
    position: absolute;
    left: 26px;
    bottom: -1px;
    width: 102px;
    height: 3px;
    background: #0162bc;
}

.con-list {
    padding: 17px 0 10px 14px;
}

.con-item {
    line-height: 28px;
    padding-left: 14px;
    background: url("../images/icon_dian.png") no-repeat left center;
}

.list-name {
    float: left;
    width: calc(100% - 300px);
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-time {
    float: right;
    color: #999;
    padding-right: 10px;
}

@media (max-width: 767px) {
    .con-list {
        padding-left: 0;
    }
    .list-name {
        width: calc(100% - 100px);
    }
}