/* 新闻列表 */

.news {}

.news {
    padding: 0 10px;
}

.news li {
    padding-left: 5px;
}

.news li a {
    position: relative;
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed #438070;
}

.news li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 22px;
    width: 7px;
    height: 7px;
    background: url(../images/arrow_b.png) no-repeat 0 0;
}

.new-li-title {
    display: block;
    line-height: 24px;
}

.new-li-title p {
    overflow: hidden;
    font-size: 16px;
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-title span {
    font-size: 14px;
    color: #999999;
}

.new-li-p {
    overflow: hidden;
    margin: 5px 0;
    height: 72px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

.new-li-more {
    font-size: 14px;
    line-height: 30px;
    color: #c80708;
}

@media (min-width: 1200px) {

    .news {
        padding-top: 20px;
    }
    .news li {
        padding-left: 15px;
    }
    .news li a {
        position: relative;
        display: block;
        padding: 20px 0;
        border-bottom: 1px dashed #438070;
    }
    .news li a::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 32px;
        width: 7px;
        height: 7px;
        background: url(../images/arrow_b.png) no-repeat 0 0;
    }
    .new-li-title {
        display: flex;
        justify-content: space-between;
        line-height: 30px;
    }
    .new-li-title p {
        width: 740px;
        overflow: hidden;
        font-size: 18px;
        color: #000;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-title span {
        font-size: 14px;
        color: #999999;
    }
    .new-li-p {
        overflow: hidden;
        margin: 10px 0;
        height: 90px;
        font-size: 16px;
        line-height: 30px;
        color: #999;
    }
    .new-li-more {
        font-size: 14px;
        line-height: 30px;
        color: #c80708;
    }
    .news li a:hover::before {
        background-image: url(../images/arrow_r.png);
    }
    .news li a:hover .new-li-title p {
        color: #c80708;
    }
}


/* 新闻详情 */

.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: 20px 0;
    }
    .new-er-title {
        position: relative;
        margin: 0 0 20px;
        padding: 0 0 10px;
        color: #fff;
        text-align: left;
        border-bottom: 1px solid #666;
    }
    .new-er-name {
        font: bold 18px/30px "微软雅黑";
        color: #333;
    }
    .new-er-time {
        position: absolute;
        right: 0;
        top: 0;
        font: 400 14px/30px "微软雅黑";
        color: #999;
    }
    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}