/* 新闻列表 */

.news {}

.news ul a {
    display: block;
}

.new-li-border {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0.2rem 0;
    border-bottom: 1px dashed #333;
}

.new-li-font {
    margin-right: 0.2rem;
    flex-grow: 1;
    color: #333;
}

.new-li-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 48px;
    margin-top: 0.1rem;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
}

.new-li-time {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.32rem;
    padding: 0.1rem 5px 0;
    text-align: center;
    color: #fff;
    background: #126c41;
}

.new-li-day {
    font-size: 0.6rem;
    line-height: 0.72rem;
    border-bottom: 1px solid #fff;
}

.new-li-year {
    font-size: 12px;
    line-height: 20px;
}

@media (min-width: 1200px) {
    .news {}
    .news ul a {
        display: block;
        padding: 0 1.5vw;
    }
    .new-li-border {
        display: flex;
        justify-content: space-between;
        padding: 1.2vw 0;
        border-bottom: 1px dashed #000;
    }
    .new-li-font {
        width: 50vw;
        color: #333;
    }
    .new-li-title {
        font-size: 1vw;
        line-height: 1.5vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .new-li-p {
        height: 3vw;
        margin: 0.8vw 0 0;
        overflow: hidden;
        font-size: 0.9vw;
        line-height: 1.5vw;
    }
    .new-li-time {
        width: 4.6vw;
        height: 6vw;
        padding: 0.4vw 0.2vw 0;
        color: #fff;
        text-align: center;
        background: #126c41;
    }
    .new-li-day {
        font-size: 3vw;
        line-height: 3.6vw;
        border-bottom: 1px solid #fff;
    }
    .new-li-year {
        font-size: 0.9vw;
        line-height: 1.5vw;
    }
    .news ul a:hover {
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 1vw;
    }
    .news ul a:hover .new-li-time {
        background: #d23800;
    }
}


/* 新闻详情 */

.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;
    }
}