/* 新闻列表 */

.news {
    padding: 10px 4px;
}

.news ul li {
    padding: 2px 0 10px;
}

.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-time {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 94px;
    font: 400 12px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    background: #3099ff;
}

.new-li-font {
    padding: 10px;
    color: #000;
    background: url(../images/new_li_bg.jpg) no-repeat 0 0/0 100%;
    border: 1px solid #dcdcdc;
}

.new-li-title {
    overflow: hidden;
    font: 400 16px/20px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 80px;
    overflow: hidden;
    margin: 5px 0 0;
    font: 400 14px/20px '微软雅黑';
}

@media (min-width: 1200px) {
    .news {
        padding: 60px 0 0;
    }

    .news ul li {
        padding: 12px 0;
    }

    .news ul a {
        display: flex;
    }

    .new-li-img {
        position: relative;
        width: 484px;
        flex-shrink: 0;
    }

    .new-li-img i {
        display: block;
        overflow: hidden;
    }

    .new-li-img i img {
        width: 100%;
        transition: 0.3s;
    }

    .new-li-time {
        position: absolute;
        left: 380px;
        bottom: 0;
        width: 104px;
        font: 400 12px/36px '微软雅黑';
        color: #fff;
        text-align: center;
        background: #3099ff;
        transition: 0.3s;
    }

    .new-li-font {
        flex-grow: 1;
        overflow: hidden;
        padding: 40px 20px;
        color: #000;
        background: url(../images/new_li_bg.jpg) no-repeat 0 0/0 100%;
        border: 1px solid #dcdcdc;
        border-left: 0;
        transition: 0.3s;
    }

    .new-li-title {
        overflow: hidden;
        font: 400 18px/30px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 120px;
        overflow: hidden;
        margin: 10px 0 0;
        font: 400 16px/30px '微软雅黑';
    }

    .news ul a:hover i img {
        transform: scale(1.1);
    }

    .news ul a:hover .new-li-time {
        left: 0;
    }

    .news ul a:hover .new-li-font {
        color: #fff;
        background-size: 100% 100%;
        border-color: #3099ff;
    }

}


/* 新闻详情 */

.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;
    }
}