/* 新闻列表 */

.news {}

.news ul li {
    padding: 0.2rem 0;
}

.news ul a {
    display: flex;
    justify-content: space-between;
}

.new-li-img {
    position: relative;
    width: 1.8rem;
}

.new-li-img i {
    display: block;
    height: 1.8rem;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 50%;
    transition: 0.3s;
}

.new-li-img i img {
    width: 100%;
}

.new-li-more {
    position: absolute;
    left: 0.3rem;
    top: 1.5rem;
    width: 1.2rem;
    font-size: 0.24rem;
    line-height: 0.36rem;
    color: #fff;
    text-align: center;
    background: #000;
}

.new-li-font {
    width: 4.5rem;
    padding: 0.2rem 0 0;
}

.new-li-title {
    height: 0.36rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.3rem;
    line-height: 0.36rem;
    color: #000;
}

.new-li-time {
    margin: 4px 0;
    font-size: 12px;
    line-height: 18px;
    color: #999999;
}

.new-li-p {
    height: 0.8rem;
    overflow: hidden;
    font-size: 0.26rem;
    line-height: 0.4rem;
    color: #000;
}

.new-lfht {
    width: 3.2rem;
    margin: 0.1rem 0 0.2rem;
    font-size: 0.3rem;
    line-height: 0.6rem;
    color: #fff;
    text-align: center;
    background: #008c3e;
}

@media (min-width: 1200px) {
    .news {
        padding: 1.5vw 3vw 1.5vw 5vw;
    }
    .news ul {
        padding: 0.5vw 0 2vw;
        background: url(../images/new_li_line.png) no-repeat 0.5vw 0/1px 100%;
    }
    .news ul li {
        padding: 1vw 0 1vw 2.5vw;
        background: url(../images/new_li_circle.png) no-repeat 0 center;
    }
    .news ul a {
        display: flex;
        justify-content: space-between;
    }
    .new-li-img {
        width: 9vw;
        position: relative;
    }
    .new-li-img i {
        display: block;
        height: 9vw;
        overflow: hidden;
        border: 2px solid #000;
        border-radius: 50%;
        transition: 0.3s;
    }
    .new-li-img i img {
        width: 100%;
    }
    .new-li-more {
        position: absolute;
        z-index: 5;
        left: 2vw;
        top: auto;
        bottom: -0.8vw;
        width: 5vw;
        font-size: 0.9vw;
        line-height: 1.5vw;
        color: #fff;
        text-align: center;
        background: #000;
    }
    .new-li-font {
        width: 41vw;
        padding: 1vw 0 0;
    }
    .new-li-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        height: 1.6vw;
        font-size: 1.2vw;
        line-height: 1.6vw;
        color: #000;
    }
    .new-li-time {
        font-size: 14px;
        line-height: 20px;
        color: #999999;
    }
    .new-li-p {
        height: 4.2vw;
        overflow: hidden;
        margin: 0.8vw 0 0;
        font-size: 0.9vw;
        line-height: 1.4vw;
        color: #999999;
    }
    .news ul a:hover .new-li-num p {
        transform: translate3d(0, -71px, 0);
    }
    .news ul a:hover .new-li-img i {
        border-color: #008c3e;
        transform: rotate(360deg);
    }
    .news ul a:hover .new-li-more {
        background: #008c3e;
    }
    .news ul a:hover .new-li-title {
        color: #008c3e;
    }
    .news ul a:hover .new-li-p {
        color: #000;
    }
    .new-lfht {
        width: 10vw;
        margin: 0 0 0 0.5vw;
        font-size: 0.9vw;
        line-height: 1.6vw;
        color: #fff;
        text-align: center;
        background: #008c3e;
    }
}


/* 新闻详情 */

.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;
    }
    .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;
    }
}