/* 新闻列表 */
.news ul{}
.news li a{
    display: flex;
    justify-content: space-between;
    padding: 0 0 0.24rem;
}
.new-li-img{
    width: 2.2rem;
    height: 2.2rem;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #fff;
}
.new-li-img img{
    width: 100%;
    height: 100%;
}
.new-li-right{
    position: relative;
    width: 6.8rem;
    overflow: hidden;
}
.new-li-title{
    width: 100%;
    overflow: hidden;
    margin: 0.15rem 0;
    font: bold 0.42rem/0.54rem '微软雅黑';
    color: #000000;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.new-li-time{
    display: none;
}
.new-li-p{
    height: 48px;
    overflow: hidden;
}
.new-li-p p{
    font: 400 14px/24px '微软雅黑';
    color: #2a2a2a;
}
.new-li-more{
    display: none;
}

@media (min-width:1200px) {
    .news ul{
        padding: 0 65px 0 130px;
    }
    .news li{
        padding:5px 0 5px 64px;
        transition: 0.6s;
    }
    .news li a{
        display: flex;
        width: 922px;
        padding: 0 0 20px;
        border-bottom: 1px solid #7e7e7e;
    }
    .new-li-img{
        width: 170px;
        height: 170px;
        overflow: hidden;
        border-radius: 50%;
        border: 5px solid #fff;
        transform: translate3d(-50%, 0, 0);
        transition: 0.6s;
    }
    .new-li-img img{
        width: 100%;
        height: 100%;
    }
    .new-li-right{
        position: relative;
        width: 748px;
    }
    .new-li-title{
        overflow: hidden;
        margin: 0;
        padding: 24px 0;
        font: 400 24px/30px '微软雅黑';
        color: #000;
        text-overflow: ellipsis;
        white-space: normal;
    }
    .new-li-time{
        display: inline-block;
        font: 400 14px/24px '微软雅黑';
        color: #7e7e7e;
        border-top: 1px solid #7e7e7e;
        border-bottom: 1px solid #7e7e7e;
    }
    .new-li-p{
        height: 48px;
        overflow: hidden;
        margin-top: 20px;
        padding-right: 120px;
    }
    .new-li-p p{
        font: 400 14px/24px '微软雅黑';
        color: #7e7e7e;
    }
    .new-li-more{
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 0 15px;
        font: 400 14px/24px '微软雅黑';
        color: #fff;
        background: #a61f23;
    }
    .news li:hover{
        padding-left: 0;
    }
    .news li:hover .new-li-img{
        border-radius: 20px;
    }
    .news li:hover .new-li-title{
        color: #a61f23;
        
    }
    .news li:hover .new-li-more{
        background: #ff0000;
    }
}


/* 新闻详情 */
.new-er {}
.new-er-title{
    text-align: center;
}
.new-er-name{
    font:bold 18px/24px '微软雅黑';
    color: #333;
}
.new-er-time{
    font: 400 14px/24px '微软雅黑';
    color: #999;
}

.new-er-content p{
    margin-bottom: 10px;
    font: 400 14px/24px '微软雅黑';
    color: #333;
    text-align: justify;
}
.new-er-content p img{
    width: 100%;
}

@media (min-width:1200px) {
    .new-er{
        min-height: 600px;
        padding: 0 35px 50px;
    }
    .new-er-title{
        margin: 0 0 20px;
        padding-bottom: 15px;
        font:400 30px/36px '微软雅黑';
        color: #333;
        text-align: left;
    }
    .new-er-time{
         display: inline-block;
        font: 400 14px/24px '微软雅黑';
        color: #7e7e7e;
        border-top: 1px solid #7e7e7e;
        border-bottom: 1px solid #7e7e7e;
    }
    .new-er-content p{
        font: 400 16px/30px '微软雅黑';
    }
}