/* 新闻列表 */

.news {}

.news ul {
    border-left: 1px solid rgba(199, 199, 199, 0.35);
}

.news ul li {
    position: relative;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(199, 199, 199, 0.35);
}

.news ul a {
    display: block;
    position: relative;
    color: #000;
}

.news ul a::after {
    content: '';
    position: absolute;
    left: -14px;
    top: 6px;
    width: 7px;
    height: 7px;
    background: #dddcd6;
    border-radius: 50%;
}

.new-li-title {
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 48px;
    overflow: hidden;
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 24px;
}

@media (min-width: 1200px) {
    .news {
        padding: 2vw 3vw;
    }
    .news ul {
        border-left: 1px solid rgba(199, 199, 199, 0.35);
    }
    .news ul li {
        position: relative;
        padding: 2vw;
        border-bottom: 1px solid rgba(199, 199, 199, 0.35);
    }
    .news ul a {
        display: block;
        position: relative;
        color: #000;
    }
    .news ul a::before {
        content: '';
        position: absolute;
        left: -2.1vw;
        top: 0;
        width: 2px;
        height: 100%;
        background: url(../images/new_line_bg.png) no-repeat 0 0/3px 0;
        transition: 0.3s;
    }
    .news ul a::after {
        content: '';
        position: absolute;
        left: -2.2vw;
        top: 0.4vw;
        width: 7px;
        height: 7px;
        background: #dddcd6;
        border-radius: 50%;
    }
    .new-li-title {
        font-size: 1vw;
        line-height: 1.2vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-p {
        height: 4.8vw;
        overflow: hidden;
        margin: 1vw 0 0;
        font-size: 0.7vw;
        line-height: 1.2vw;
    }
    .news ul a:hover .new-li-title {
        color: #c9151e;
    }
    .news ul a:hover .new-li-time {
        color: #c9151e;
    }
    .news ul a:hover::after {
        opacity: 0;
    }
    .news ul a:hover::before {
        background-size: 3px 100%;
    }
}


/* 新闻详情 */

.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 150px;
    }
    .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;
    }
}