/* 新闻列表 */

.news {
    padding: 10px;
}

.news ul li a {
    position: relative;
    display: block;
    padding: 0.5rem 0.8rem 0.3rem 2.4rem;
    color: #000;
    background: rgba(255, 255, 255, 0.7);
}

.new-li-time {
    position: absolute;
    left: 0.8rem;
    top: 0.5rem;
    background: url(../images/new_line.png) no-repeat center 0/1rem;
}

.new-li-day {
    padding-left: 0.2rem;
    font: 400 0.4rem/1 '微软雅黑';
}

.new-li-month {
    padding-left: 0.4rem;
    font: bold 0.5rem/0.6rem '微软雅黑';
}

.new-li-title {
    overflow: hidden;
    font: bold 0.4rem/0.6rem '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    display: block;
    height: 72px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
}

.new-li-arrow {
    display: none;
}

@media (min-width: 1200px) {
    article {
        min-height: 900px;
        background: no-repeat center center fixed/auto;
    }

    .news {
        padding: 60px 30px 30px;
    }


    .news ul li {
        height: 160px;
        margin-bottom: 20px;
        transition: 0.6s;
    }

    .news ul li a {
        position: relative;
        display: block;
        padding: 35px 25px 0 150px;
        color: #000;
        background: none;
    }

    .new-li-time {
        position: absolute;
        left: 35px;
        top: 35px;
        background: url(../images/new_line.png) no-repeat center 0;
    }

    .new-li-day {
        padding-left: 10px;
        font: 400 28px/42px '微软雅黑';
    }

    .new-li-month {
        padding-left: 30px;
        font: bold 42px/42px '微软雅黑';
    }

    .new-li-title {
        font: bold 26px/30px '微软雅黑';
    }

    .new-li-p {
        height: 60px;
        overflow: hidden;
        margin: 30px 0 0;
        font: 400 14px/30px '微软雅黑';

    }

    .new-li-arrow {
        display: block;
        padding: 30px 0;
        opacity: 0;
        transition: 0.3s;
    }

    .news ul li:hover {
        height: 240px;
        transform: translate3d(0, 0, 0);
    }

    .news ul li:hover {
        background: url(../images/new_li_bg.jpg) no-repeat 0 center/100% 100%;
    }

    .news ul li:hover a {
        color: #fff;
    }

    .news ul li:hover .new-li-time {
        background-image: url(../images/new_linea.png);
    }

    .news ul:hover {
        padding: 0;
    }

    .news ul li:hover .new-li-arrow {
        opacity: 1;
    }

}

@media (min-width: 1480px) {
    .news {
        padding: 60px 100px 30px;
    }
}

/* 新闻详情 */

.new-er {
    padding: 15px;
}

.new-er-box {
    position: relative;
    padding: 0 0 0 70px;
}

.new-er-time {
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/new_line.png) no-repeat center 0/1rem;
}

.new-er-day {
    padding-left: 10px;
    font: 400 14px/20px '微软雅黑';
}

.new-er-month {
    padding-left: 20px;
    font: bold 24px/24px '微软雅黑';
}

.new-er-title {
    padding: 0 0 10px;
    font: bold 18px/30px '微软雅黑';
    color: #000;
}

.new-er-p p {
    margin-bottom: 10px;
    font: 400 14px/20px "微软雅黑";
    color: #333;
    text-align: justify;
}

.new-er-p p img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .new-er {
        padding: 60px 30px 30px;
    }

    .new-er-box {
        position: relative;
        padding: 0 0 0 160px;
    }

    .new-er-time {
        position: absolute;
        left: 35px;
        top: 5px;
        background: url(../images/new_line.png) no-repeat center 0;
    }

    .new-er-day {
        padding-left: 10px;
        font: 400 28px/42px '微软雅黑';
    }

    .new-er-month {
        padding-left: 30px;
        font: bold 42px/42px '微软雅黑';
    }

    .new-er-title {
        padding: 0 0 20px;
        font: bold 24px/30px '微软雅黑';
        color: #000;
    }

    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #000;
    }
}

@media (min-width: 1480px) {
    .new-er {
        padding: 100px 60px;
    }
}