/* 新闻列表 */

.news {}

.news ul a {
    display: block;
}

.new-li-img img {
    width: 100%;
}

.new-li-font {
    padding: 10px;
}

.new-li-title {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 72px;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    color: #333666;
}

.new-li-more {
    display: none;
}

@media (min-width: 1200px) {
    .news {}
    .news ul li {
        padding: 0 0 1vw;
    }
    .news ul a {
        display: flex;
        justify-content: space-between;
        padding: 1vw;
        background: rgba(255, 255, 255, 0.9);
    }
    .new-li-img {
        width: 15vw;
    }
    .new-li-img img {
        width: 100%;
    }
    .new-li-font {
        width: 39vw;
        padding: 0;
    }
    .new-li-title {
        padding: 0.2vw 0 0;
        font-size: 1.2vw;
        line-height: 1.6vw;
        color: #000;
    }
    .new-li-p {
        height: 5.6vw;
        margin-top: 1vw;
        overflow: hidden;
        font-size: 0.9vw;
        line-height: 1.4vw;
        color: #333666;
    }
    .new-li-more {
        display: block;
        width: 3vw;
    }
    .new-li-more span {
        display: block;
        padding: 1.4vw 0.6vw 2.8vw;
        font-size: 0.9vw;
        line-height: 1vw;
        color: #9f060c;
        text-align: center;
        background: rgba(255, 255, 255, 0.6) url(../images/arrow_r.png) no-repeat center 6vw;
        border: 2px solid #9f060c;
    }
    .news ul a:hover {
        background: #9f060c url(../images/new_wave.png) no-repeat center bottom/100%;
    }
    .news ul a:hover .new-li-title {
        color: #fff;
    }
    .news ul a:hover .new-li-p {
        color: #fff;
    }
    .news ul a:hover .new-li-more span {
        color: #fff;
        background-color: #9f060c;
        background-image: url(../images/arrow_w.png);
        border-color: #fff;
    }
}


/* 新闻详情 */

.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;
        background: rgba(255, 255, 255, 0.9);
    }
    .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;
    }
}