/* 新闻列表 */

.news {
    padding: 10px 0;
}

.news ul {
    display: block;
}

.news ul li {
    padding: 5px 0 0;
}

.news ul a {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0.2rem;
    color: #000;
    border: 1px solid #e0e0e0;
}

.new-li-font {
    width: 6.6rem;
}

.new-li-title {
    overflow: hidden;
    font: 400 18px/24px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 60px;
    margin: 5px 0 0;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #666666;
}

.new-li-time {
    width: 2rem;
    padding: 0.2rem 0;
    text-align: center;
    border-left: 1px solid #e0e0e0;
}

.new-li-day {
    font: bold 36px/48px '微软雅黑';
}

.new-li-year {
    font: 400 14px/20px '微软雅黑';
}

@media (min-width: 1200px) {
    .news {
        padding: 40px;
    }

    .news ul {
        display: block;
    }

    .news ul li {
        padding: 0 0 20px;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        color: #000;
        border: 1px solid #e0e0e0;
    }

    .new-li-font {
        width: 900px;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 24px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 72px;
        margin: 10px 0 0;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
        color: #666666;
    }

    .new-li-time {
        width: 120px;
        padding: 20px 0;
        text-align: center;
        border-left: 1px solid #e0e0e0;
    }

    .new-li-day {
        font: bold 48px/54px '微软雅黑';
    }

    .new-li-year {
        font: 400 16px/24px '微软雅黑';
    }

    .news ul a:hover {
        color: #fff;
        background: #0154a6;
    }

    .news ul a:hover .new-li-p {
        color: #fff;
    }
}


/* 新闻详情 */

.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: 50px 100px;
    }

    .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;
    }
}