/* 新闻列表 */

.news ul {
    border-top: 1px dashed #000;
}

.news li {
    padding: 10px 0;
    border-bottom: 1px dashed #000;
}

.news li a {
    display: flex;
    color: #000;
}

.new-li-img {
    flex-shrink: 0;
    width: 3rem;
    height: 2.2rem;
    overflow: hidden;
}

.new-li-img img {
    width: 100%;
    height: 100%;
}

.new-li-font {
    flex-grow: 1;
    padding: 0 0 0 12px;
    overflow: hidden;
}

.new-li-title {
    overflow: hidden;
    font: 400 0.4rem/0.6rem "微软雅黑";
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 0.8rem;
    margin: 5px 0 0;
    overflow: hidden;
    font: 400 0.32rem/0.4rem "微软雅黑";
    color: #000;
}

.new-li-time {
    margin: 0.3rem 0 0;
    font: 400 0.32rem/0.4rem "微软雅黑";
    color: #000;
}

@media (min-width: 1200px) {
    .news {}

    .news ul {
        border-top: 1px dashed #000;
    }

    .news li {
        padding: 20px 0;
        border-bottom: 1px dashed #000;
    }

    .news li a {
        display: flex;
        color: #000;
    }

    .new-li-img {
        flex-shrink: 0;
        width: 215px;
        height: 140px;
        overflow: hidden;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
    }

    .new-li-font {
        flex-grow: 1;
        padding: 0 0 0 24px;
        overflow: hidden;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 18px/30px "微软雅黑";
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 80px;
        margin: 15px 0 0;
        overflow: hidden;
        font: 400 14px/20px "微软雅黑";
        color: #000;
    }

    .new-li-time {
        margin: 0;
        font: 400 14px/20px "微软雅黑";
        color: #000;
    }

}


/* 新闻详情 */

.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-content p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-content img {
    width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 30px;
    }

    .new-er-title {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 10px;
        color: #000;
        text-align: left;
        border-bottom: 1px solid #000;
    }

    .new-er-name {
        color: #000;
    }

    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        color: #000;
    }

    .new-er-content p {
        font: 400 16px/30px "微软雅黑";
        color: #000;
    }
}