/* 新闻列表 */

.news {}

.news li {
    padding: 3px 0;
    overflow: hidden;
}

.news li a {
    display: block;
    overflow: hidden;
    color: #000;
}

.new-li-box {
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #dadada;
}

.new-li-font {
    width: 5.6rem;
}

.new-li-time {
    font-size: 0.3rem;
    line-height: 0.36rem;
    color: #c7b356;
}

.new-li-title {
    margin: 5px 0;
    font-size: 0.3rem;
    line-height: 0.36rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 40px;
    margin-bottom: 5px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
}

.new-li-more {
    position: relative;
    z-index: 1;
}

.new-li-more span {
    display: block;
    width: 0.8rem;
    height: 100%;
    background: #c3141b url(../images/arrow_ww.png) no-repeat center center/0.2rem;
}

.new-li-more img {
    width: 1vw;
}

@media (min-width: 1200px) {
    .common-main {
        width: 100%;
    }
    .news {}
    .news li {
        padding: 1px 0;
        overflow: hidden;
    }
    .news li a {
        display: block;
        overflow: hidden;
        color: #000;
    }
    .new-li-box {
        display: flex;
        justify-content: space-between;
        position: relative;
        width: 62vw;
        margin: 0 auto;
        padding: 2vw 0 2vw 2vw;
        background: url(../images/line_red.png) no-repeat 0 2.4vw/1.2vw;
        border-bottom: 1px solid #dadada;
    }
    .new-li-font {
        width: 54vw;
    }
    .new-li-time {
        font-size: 0.9vw;
        line-height: 1.2vw;
        color: #c7b356;
    }
    .new-li-title {
        margin: 0.6vw 0;
        font-size: 1vw;
        line-height: 1.2vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-p {
        height: 2.4vw;
        margin: 0;
        overflow: hidden;
        font-size: 0.8vw;
        line-height: 1.2vw;
    }
    .new-li-more {
        position: relative;
        z-index: 1;
    }
    .new-li-more span {
        display: block;
        width: 4.5vw;
        height: 6vw;
        background: #c3141b url(../images/arrow_ww.png) no-repeat center center/auto;
    }
    .new-li-more img {
        width: 1vw;
    }
    .news li a:hover {
        color: #fff;
        background: #c3141b;
    }
    .news li a:hover .new-li-box {
        background-image: url(../images/line_w.png);
    }
    .news li a:hover .new-li-title {
        color: #fff;
    }
    .news li a:hover .new-li-more span {
        position: relative;
        z-index: 10;
        background: #fff url(../images/arrow_rr.png) no-repeat center center;
    }
    .news li a:hover .new-li-more::before {
        content: '';
        position: absolute;
        z-index: 1;
        left: 0;
        top: -2vw;
        width: 100%;
        height: 10vw;
        background: #fff;
    }
    .pages {
        width: 62vw;
        margin: 0 auto;
        padding: 2vw 0;
    }
}


/* 新闻详情 */

.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 {
        width: 62vw;
        margin: 0 auto;
        padding: 2vw 7vw;
    }
    .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;
    }
}