/* 新闻列表 */

.news {}

.news ul li {
    padding: 5px 0;
}

.news ul li a {
    display: block;
}

.new-li-img img {
    width: 100%;
}

.new-li-title {
    display: flex;
    position: relative;
    margin-top: 5px;
    padding: 0 5px;
    color: #000;
    border: 1px dashed #000;
}

.new-li-title i {
    flex-shrink: 0;
    width: 12px;
    height: 30px;
    background: url(../images/new_arrow.png) no-repeat -12px center/24px;
}

.new-li-title p {
    margin-left: 5px;
    overflow: hidden;
    font: 400 16px/30px '微软雅黑';
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-title span {
    flex-shrink: 0;
    margin-left: 10px;
    width: 90px;
    font: 400 14px/30px '微软雅黑';
    text-align: right;
}

.new-li-p {
    height: 120px;
    overflow: hidden;
    margin: 10px 0;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

.new-li-more {
    font: 400 14px/30px '微软雅黑';
    color: #000;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
}

@media (min-width: 1200px) {
    .news {
        padding: 10px 0 30px;
    }

    .news ul {
        padding: 30px;
    }

    .news ul li {
        padding: 12px 0;
    }

    .news ul li a {
        display: flex;
        justify-content: space-between;
    }

    .new-li-img {
        width: 320px;
        height: 240px;
        overflow: hidden;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
        transition: 0.6s;
    }

    .new-li-font {
        width: 790px;
    }

    .new-li-title {
        display: flex;
        position: relative;
        padding: 0 20px;
        color: #000;
        border: 1px dashed #000;
    }

    .new-li-title i {
        width: 16px;
        height: 42px;
        background: url(../images/new_arrow.png) no-repeat -16px center;
        transition: 0.6s;
    }

    .new-li-title p {
        width: 620px;
        margin-left: 15px;
        overflow: hidden;
        font: 400 16px/42px '微软雅黑';
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-title span {
        width: 90px;
        margin-left: 10px;
        font: 400 16px/42px '微软雅黑';
    }

    .new-li-p {
        height: 120px;
        overflow: hidden;
        margin: 30px 0 10px;
        font: 400 16px/30px '微软雅黑';
        color: #000;
    }

    .new-li-more {
        font: 400 14px/36px '微软雅黑';
        color: #000;
        border-top: 1px dashed #000;
        border-bottom: 1px dashed #000;
    }
    .news ul li a:hover .new-li-img img{
        transform: scale(1.1);
    }
    .news ul li a:hover .new-li-title {
        color: #009cdd;
        background: rgba(255, 255, 255, 0.6);
    }

    .news ul li a:hover .new-li-title i {
        background-position: 0 center;
    }


    .news ul li a:hover .new-li-more {
        color: #009cdd;
    }
}


/* 新闻详情 */

.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: #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;
    }
}