/* 新闻列表 */

.news {}

.news ul li {
    padding: 0 0 0.2rem;
}

.news ul a {
    display: block;
}

.new-li-img {
    position: relative;
}

.new-li-img i {
    display: block;
}

.new-li-img i img {
    width: 100%;
}

.new-li-img p {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1.6rem;
    font-size: 12px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    background: #e70012;
}

.new-li-font {
    padding: 0 10px 10px;
    background: #fff;
}

.new-li-title {
    font-size: 16px;
    line-height: 36px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #333;
}

.new-li-p {
    height: 81px;
    margin: 5px 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.new-li-more {
    font-size: 14px;
    line-height: 24px;
    color: #e70012;
    background: url(../images/new_arrow.png) no-repeat 64px center;
}

@media (min-width: 1200px) {
    .news {
        padding: 2vw;
    }
    .news ul {
        padding: 0.5vw 0 0;
    }
    .news ul li {
        padding: 0 0 1.5vw;
    }
    .news ul a {
        display: flex;
        justify-content: space-between;
    }
    .new-li-img {
        position: relative;
        width: 22vw;
    }
    .new-li-img i {
        display: block;
        overflow: hidden;
    }
    .new-li-img i img {
        width: 100%;
        transition: 0.6s;
    }
    .new-li-img p {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 7.5vw;
        font-size: 0.9vw;
        line-height: 2vw;
        color: #fff;
        text-align: center;
        background: #e70012;
    }
    .new-li-font {
        width: 35vw;
        padding: 0.5vw 0 0;
        background: none;
    }
    .new-li-title {
        font-size: 1vw;
        line-height: 1.2vw;
        color: #000;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border: 0;
    }
    .new-li-p {
        height: 9vw;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.5vw;
        color: #000;
        border-bottom: 1px dashed #333;
    }
    .new-li-more {
        margin: 1vw 0 0;
        font-size: 0.8vw;
        line-height: 1.5vw;
        color: #e70012;
        background: url(../images/new_arrow.png) no-repeat 3.6vw center;
    }
    .news ul a:hover img {
        transform: scale(1.1);
    }
    .news ul a:hover .new-li-title {
        color: #e70012;
    }
}


/* 新闻详情 */

.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: #000;
        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;
    }
}