/* 新闻列表 */
.com-ch {
    color: #fff;
}

.com-en {
    color: #fff;
}

.bread {
    color: #fff;
}

.bread a {
    color: #fff;
}

.news {}

.news ul li {
    padding: 5px 0;
    overflow: hidden;
}

.news ul a {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 60px;
}

.new-li-time {
    position: absolute;
    left: 0;
    top: 10px;
    width: 54px;
    height: 54px;
    padding: 10px 0 0;
    color: #fff;
    text-align: center;
    background: #046438;
    border-radius: 50%;
}

.new-li-time2 {
    display: none;
}

.new-day {
    font: bold 20px/20px '微软雅黑';
}

.new-year {
    font: 400 12px/16px '微软雅黑';
}

.new-li-img {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    overflow: hidden;
    border: 1px solid #046438;
}

.new-li-img img {
    width: 100%;
    height: 100%;
}

.new-li-font {
    padding: 0 0 0 8px;
    overflow: hidden;
}

.new-li-title {
    overflow: hidden;
    font: 400 16px/24px '微软雅黑';
    color: #046438;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-li-p {
    height: 60px;
    overflow: hidden;
    font: 400 14px/20px '微软雅黑';
    color: #000;
}

@media (min-width: 1200px) {
    .news {
        padding: 20px;
    }

    .news ul li {
        margin: 0 50px;
        padding: 15px 0;
        overflow: hidden;
    }

    .news ul a {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding-left: 90px;
        transition: 0.6s;
    }

    .new-li-time {
        position: absolute;
        left: 0;
        top: 50px;
        width: 72px;
        height: 72px;
        padding: 12px 0 0;
        color: #fff;
        text-align: center;
        background: #046438;
        border-radius: 50%;
    }

    .new-li-time2 {
        display: block;
        right: -90px;
        left: auto;
        background: #ac0000;
    }

    .new-day {
        font: bold 30px/30px '微软雅黑';
    }

    .new-year {
        font: 400 12px/16px '微软雅黑';
    }

    .new-li-img {
        width: 212px;
        height: 172px;
        overflow: hidden;
        border: 3px solid #046438;
    }

    .new-li-img img {
        width: 100%;
        height: 100%;
    }

    .new-li-font {
        width: 720px;
    }

    .new-li-title {
        overflow: hidden;
        padding: 20px 0;
        font: 400 18px/30px '微软雅黑';
        color: #046438;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .new-li-p {
        height: 60px;
        overflow: hidden;
        font: 400 14px/30px '微软雅黑';
        color: #000;
    }

    .news ul a:hover {
        transform: translate3d(-90px, 0, 0);

    }

    .news ul a:hover .new-li-img {
        border-color: #ac0000;
    }

    .news ul a:hover .new-li-title {
        color: #ac0000;
    }

}


/* 新闻详情 */

.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;
    }
}