/* 新闻列表 */

.news {}

.news ul {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.news ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.news ul a {
    display: block;
    position: relative;
    padding: 10px;
    color: #fff;
}

.new-li-icon {
    position: absolute;
    z-index: 1;
    left: -3px;
    top: 18px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s height;
}

.new-li-title {
    overflow: hidden;
    font: 400 16px/24px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    margin: 5px 0;
    height: 60px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
}

.new-li-time {
    font: 400 14px/20px '微软雅黑';
}

@media (min-width: 1200px) {
    .news {
        padding: 0 60px;
    }

    .news ul {
        padding: 0 0 80px;
        border-left: 1px solid rgba(255, 255, 255, 0.4);
    }

    .news ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }


    .news ul a {
        display: block;
        position: relative;
        padding: 1.5vw;
        color: #fff;
    }

    .new-li-icon {
        position: absolute;
        z-index: 1;
        left: -3px;
        top: 2vw;
        width: 5px;
        height: 5px;
        background: #fff;
        border-radius: 50%;
        transition: 0.3s height;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 18px/24px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        margin: 1vw 0;
        height: 72px;
        overflow: hidden;
        font: 400 14px/24px '微软雅黑';
    }

    .new-li-time {
        font: 400 14px/20px '微软雅黑';
    }

    .news ul a:hover .new-li-icon {
        top: 1.62vw;
        width: 5px;
        height: 150px;
        border-radius: 0;
    }

    .pages {
        margin-top: -60px;
        margin-right: 0;
        padding-bottom: 30px;
    }
}


/* 新闻详情 */

.new-er {}

.new-er-title {
    text-align: center;
}

.new-er-name {
    font: bold 16px/24px "微软雅黑";
    color: #fff;
}

.new-er-time {
    font: 400 14px/24px "微软雅黑";
    color: #fff;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/24px "微软雅黑";
    color: #fff;
    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 #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;
    }
}