/* 新闻列表 */

.news {
    padding: 0 0.3rem;
}

.news ul {
    padding: 0;
}

.news ul li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #e1e1e1;
}

.news ul a {
    display: flex;
    justify-content: space-between;
}

.new-li-img {
    width: 3.8rem;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    width: 4.5rem;
}

.new-li-title {
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-time {
    padding: 2px 0;
    font-size: 12px;
    line-height: 1.2;
    color: #c63731;
}

.new-li-p {
    height: 40px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #999999;
}

@media (min-width: 1200px) {
    .news {
        padding: 0;
    }
    .news ul {
        padding: 0;
    }
    .news ul li {
        padding: 0;
        border-bottom: 1px solid #e1e1e1;
    }
    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 2vw 0;
    }
    .new-li-img {
        width: 15vw;
    }
    .new-li-img img {
        width: 100%;
    }
    .new-li-font {
        width: 38vw;
    }
    .new-li-title {
        font-size: 1.2vw;
        line-height: 1.2;
        color: #000;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-time {
        padding: 0.6vw 0 0.8vw;
        font-size: 0.8vw;
        line-height: 1.2;
        color: #c63731;
    }
    .new-li-p {
        height: 4.5vw;
        overflow: hidden;
        font-size: 0.8vw;
        line-height: 1.5vw;
        color: #999999;
    }
    .news ul a:hover .new-li-title {
        color: #f38f3c;
    }
}


/* 新闻详情 */

.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: 1vw;
    }
    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #333;
    }
    .new-er-name {
        color: #333;
    }
    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #333;
    }
    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}