/* 新闻列表 */

.news {}

.news ul {
    display: block;
}

.news li {
    padding: 1px 0;
}

.news li a {
    display: flex;
    justify-content: space-between;
    padding-left: 12px;
    font-size: 14px;
    line-height: 30px;
    background: url(../images/circle_g.png) no-repeat 0 center;
    border-bottom: 1px solid #ebebeb;
}

.news li a p {
    width: 5.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
}

.news li a span {
    color: #999999;
}

@media (min-width: 1200px) {
    .news {
        padding: 15px 30px;
    }
    .news ul {
        display: block;
    }
    .news li {
        padding: 1px 0;
    }
    .news li a {
        display: flex;
        justify-content: space-between;
        padding-left: 12px;
        font-size: 16px;
        line-height: 48px;
        background: url(../images/circle_g.png) no-repeat 0 center;
        border-bottom: 1px solid #ebebeb;
    }
    .news li a p {
        width: 600px;
        color: #333;
    }
    .news li a span {
        color: #999999;
    }
    .news li a:hover {
        background-image: url(../images/circle_r.png);
    }
    .news li a:hover p {
        color: #d60918;
    }
    .news li a:hover span {
        color: #d60918;
    }
}


/* 新闻详情 */

.new-er {}

.new-er-head {
    padding: 10px 0;
    background: #f6f6f6;
}

.new-er-detail {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.new-er-detail span {
    padding: 0 15px;
    font-size: 14px;
    line-height: 24px;
}

.new-er-title {
    text-align: center;
}

.new-er-title {
    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: 0;
    }
    .new-er-head {
        padding: 30px 0;
        background: #f6f6f6;
    }
    .new-er-title {
        font-size: 24px;
        line-height: 30px;
        color: #000;
        text-align: center;
    }
    .new-er-detail {
        display: flex;
        justify-content: center;
        padding: 10px 0 0;
    }
    .new-er-detail span {
        padding: 0 15px;
        font-size: 14px;
        line-height: 24px;
    }
    .new-er-p {
        padding: 30px;
    }
    .new-er-p p {
        font: 400 16px/30px "微软雅黑";
        color: #333;
    }
}