/* 新闻列表 */

.news {}

.new-top {
    padding: 5px 0;
}

.new-top a {
    position: relative;
    display: block;
    padding: 5px 5px 50px;
    border: 1px solid #e60012;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 0;
}

.new-li-title {
    padding: 5px 0;
    overflow: hidden;
    font: 400 18px/30px '宋体';
    color: #a81b1b;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 120px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}

.new-top-more {
    position: absolute;
    z-index: 1;
    right: 1px;
    bottom: 1px;
    width: 3.4rem;
    padding: 0 0.45rem 0 0.1rem;
    background: url(../images/part2_more.png) no-repeat 0 center/100% 100%;
}

.new-top span {
    display: block;
    font: 400 12px/30px '宋体';
    color: #fff;
    background: url(../images/arrow_w.png) no-repeat right center/10px;
}

.news ul li {
    padding: 0 0 0.1rem;
}

.news ul a {
    display: flex;
    justify-content: space-between;
    font: 400 16px/30px '宋体';
    color: #000;
    border-bottom: 1px dashed #000;
}

.news ul p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news ul span {
    flex-shrink: 0;
    width: 84px;
    text-align: right;
}

@media (min-width: 1200px) {
    .news {
        padding: 0 75px;
    }

    .new-top {
        padding: 35px 0;
    }

    .new-top a {
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 30px;
        border: 1px solid #e60012;
    }

    .new-li-img {
        width: 400px;
        height: 300px;
        overflow: hidden;
    }

    .new-li-img img {
        width: 100%;
        transition: 0.3s;
    }

    .new-li-font {
        width: 520px;
        transition: 0.3s;
    }

    .new-li-title {
        padding: 30px 0;
        overflow: hidden;
        font: 400 30px/36px '宋体';
        color: #a81b1b;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 210px;
        overflow: hidden;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

    .new-top-more {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 205px;
        margin: 10px 0 0;
        padding: 0 30px 0 20px;
        background: url(../images/part2_more.png) no-repeat 0 center;
    }

    .new-top span {
        display: block;
        font: 400 18px/54px '宋体';
        color: #fff;
        background: url(../images/arrow_w.png) no-repeat right center;
    }

    .new-top a:hover .new-li-img img {
        transform: scale(1.1);
    }
    .new-top a:hover .new-li-font{
        opacity: 1;
        transform: translate3d(-20px,0,0);
    }

    .news ul li {
        padding: 0 0 10px;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        font: 400 18px/36px '宋体';
        color: #000;
        border-bottom: 1px dashed #000;
    }

    .news ul p {
        width: 640px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .news ul span {
        width: 100px;
    }

    .news ul a:hover {
        color: #e60012;
    }

    .pages {
        padding: 60px 0;
    }
}


/* 新闻详情 */

.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 100px;
    }

    .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;
    }
}