/* 新闻列表 */

.news {}

.news ul li {
    position: relative;
    padding-bottom: 1px;
}

.news ul a {
    display: block;
    padding: 5px 0;
    color: #000;
    border-bottom: 1px solid #999;
}

.new-li-top {
    display: block;
}

.new-li-title {
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    width: 84px;
    margin: 5px 0;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background: #000;
}

.new-li-p {
    margin: 1.5vw 0;
    height: 60px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 1200px) {
    .news {}
    .news ul {
        padding: 0;
    }
    .news ul li {
        position: relative;
        padding-bottom: 1px;
    }
    .news ul li::before {
        content: '';
        position: absolute;
        left: 1vw;
        bottom: 0;
        width: 62vw;
        height: 1px;
        background: #fff;
    }
    .news ul a {
        display: block;
        padding: 1vw;
        color: #fff;
        border: 0;
    }
    .new-li-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .new-li-title {
        width: 52vw;
        font-size: 1.2vw;
        line-height: 1.5vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-time {
        width: 4.8vw;
        font-size: 0.8vw;
        line-height: 1.2vw;
        text-align: center;
        background: #000;
    }
    .new-li-p {
        margin: 1.5vw 0;
        height: 60px;
        overflow: hidden;
        font-size: 14px;
        line-height: 20px;
    }
    .news ul a:hover {
        background: rgba(0, 0, 0, 0.5);
    }
}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #333;
}

.new-er-time {
    font: 400 14px/24px "微软雅黑";
    color: #999;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-p p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 0 2vw;
    }
    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #fff;
    }
    .new-er-name {
        color: #fff;
    }
    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #fff;
    }
    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #fff;
    }
}