/* 新闻列表 */

.news {}

.news ul a {
    display: flex;
}

.news ul {
    padding: 0;
}

.news ul li {
    padding: 1px 0;
    border-bottom: 1px dashed #fff;
}

.news ul a {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.new-li-font {
    flex-grow: 1;
    overflow: hidden;
    color: #000;
}

.new-li-title {
    overflow: hidden;
    font: 400 16px/24px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 60px;
    margin-top: 5px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
}

.new-li-time {
    flex-shrink: 0;
    width: 72px;
    margin-left: 5px;
    padding: 16px 8px 0;
    text-align: center;
    color: #0b56a1;
    background: #fff;
}

.new-li-day {
    font: 400 30px/1 '微软雅黑';
}

.new-li-year {
    font: 400 12px/18px '微软雅黑';
    border-top: 1px solid #0068b7;
}

.pages {
    color: #fff;
}

.pages-right a {
    color: #fff;
    border: 1px solid #fff;
}

.pages-right a.page-num {
    color: #0068b7;
    background: #fff;
}

.pages-right a:hover {
    color: #0068b7;
    background: #fff;
}

@media (min-width: 1200px) {
    .news {}

    .news ul a {
        display: flex;
    }

    .news ul {
        padding: 0;
    }

    .news ul li {
        padding: 1px 0;
        border-bottom: 1px dashed #fff;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 20px 5px;
    }

    .new-li-font {
        width: 590px;
        color: #fff;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 18px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 72px;
        margin: 10px 0 0;
        overflow: hidden;
        font: 400 16px/24px '微软雅黑';
    }

    .new-li-time {
        width: 90px;
        height: 120px;
        padding: 16px 8px 0;
        text-align: center;
        color: #0b56a1;
        background: #fff;
    }

    .new-li-day {
        font: 400 60px/1 '微软雅黑';
    }

    .new-li-year {
        font: 400 16px/30px '微软雅黑';
        border-top: 1px solid #0068b7;
    }

    .news ul a:hover {
        background: rgba(0, 0, 0, 0.72);
    }

    .news ul a:hover .new-li-title {
        color: #f5a727;
    }

    .news ul a:hover .new-li-time {
        color: #fff;
        background: #f5a727;
    }

    .pages {
        color: #fff;
    }

    .pages-right a {
        color: #fff;
        border: 1px solid #fff;
    }

    .pages-right a.page-num {
        color: #0068b7;
        background: #fff;
    }

    .pages-right a:hover {
        color: #0068b7;
        background: #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;
    }

    .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 {
        padding: 20px 0 0;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #fff;
    }
}