/* 新闻列表 */

.news ul {
    min-height: 200px;
}

.news ul li {
    padding-bottom: 0.1rem;
}

.news ul a {
    position: relative;
    display: flex;
    justify-content: space-between;
    color: #000;
    background: #fff;
}

.new-li-img {
    border-left: 3px solid #333;
}

.new-li-img img {
    width: 3.3rem;
}

.new-li-right {
    display: flex;
    justify-content: space-between;
    width: 5.2rem;
    padding: 0.2rem 0.2rem 0.2rem 0.1rem;
    overflow: hidden;
    background: #fff;
}

.new-li-time {
    display: none;
}

.new-li-font {
    overflow: hidden;
}

.new-li-title {
    font-size: 16px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 36px;
    margin-top: 0.2rem;
    overflow: hidden;
    font-size: 12px;
    line-height: 18px;
}


@media (min-width: 1200px) {
    .news {
        padding: 3vw 3vw 1vw;
    }

    .news ul li {
        padding-bottom: 0.6vw;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        color: #000;
        transition: 0.3s;
    }

    .new-li-img {
        width: 12.3vw;
        border-left: 0.3vw solid #333;
    }

    .new-li-img img {
        width: 100%;
    }

    .new-li-right {
        display: flex;
        justify-content: space-between;
        width: 45.2vw;
        padding: 1.2vw;
        background: #fff;
    }

    .new-li-time {
        width: 3vw;
        text-align: center;
    }

    .new-li-day {
        font-weight: bold;
        font-size: 2vw;
        line-height: 1.2;
    }

    .new-li-year {
        font-size: 14px;
    }

    .new-li-font {
        width: 38vw;
    }

    .new-li-title {
        font-size: 1.2vw;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 72px;
        margin-top: 0.4vw;
        overflow: hidden;
        font-size: 16px;
        line-height: 24px;
    }

    .news ul a:hover {
        transform: translate3d(-1.6vw, 0, 0);
    }

    .news ul a:hover .new-li-img {
        border-color: #970000;
    }

    .news ul a:hover .new-li-time {
        color: #e80d19;
    }

    .news ul a:hover .new-li-title {
        color: #c61816;
    }
}


/* 新闻详情 */

.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 6vw;
    }

    .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;
    }
}