/* 新闻列表 */

.news li {
    position: relative;
    padding: 10px;
}

.news li a {
    display: block;
    padding-bottom: 34px;
    background: url('../images/part5_li_bg.png') no-repeat center bottom;
    background-size: 100%;
}

.news li img {
    width: 100%;
}

.new-li-title {
    overflow: hidden;
    padding: 5px 10px;
    font: bold 16px/30px '微软雅黑';
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-content {
    padding: 0 10px;
    overflow: hidden;
}

.new-li-content p {
    font: 400 14px/24px '微软雅黑';
    color: #999999;
}

.news-content li span {
    display: block;
    padding: 15px 0 15px 10px;
    font: 400 14px/24px '微软雅黑';
    color: #b30000;
}

@media (min-width:1200px) {
    .news li {
        float: left;
        width: 33.3%;
        padding: 10px 2px;
        transition: 0.6s;
    }
    .news-li-bg {
        background: #fff;
    }
    .new-li-title {
        padding: 5px 10px;
        font: bold 18px/36px '微软雅黑';
    }
    .new-li-content {
        height: 96px;
    }
    .news li:hover {
        transform: translate3d(0, -10px, 0);
    }
}









/* 新闻详情 */

.new-er {
    padding: 10px;
}

.new-er-title {
    position: relative;
    padding-bottom: 5px;
    /* border-bottom: 1px solid #ccc; */
}

.new-er-name {
    font: bold 16px/20px 'Microsoft YaHei';
    color: #170d3d;
}

.new-er-time {
    font: 400 12px/24px 'Microsoft YaHei';
    color: #170d3d;
}

.new-er-content {
    min-height: 300px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.new-er-content p {
    margin-bottom: 24px;
    font: 400 14px/24px 'Microsoft Yahei';
    text-align: justify;
    text-indent: 2em;
    color: #000;
}

.new-er-content p img {
    width: 100%;
}

@media (min-width:1200px) {
    .new-er {
        padding: 20px 20px 0 20px;
        margin-bottom: 0;
    }
    .new-er-name {
        font: 600 18px/24px 'Microsoft YaHei';
    }
    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        font: 400 14px/24px 'Microsoft YaHei';
    }
    .new-er-content {
        padding-bottom: 50px;
    }
}