/* 新闻列表 */

.news {
    padding: 10px;
}

.news li a {
    position: relative;
    display: block;
    
    padding-right: 100px;
    font: 400 14px/30px '微软雅黑';
    color: #1c1c1c;
    
}

.news li p{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
}

.news li a span {
    position: absolute;
    right: 0;
    top: 0;
    color: #7f7f7f;
}



@media (min-width:1200px) {
    .news {
        padding: 0;
    }
    .news li {
        padding: 5px;
    }
    .news li a {
        font: 400 16px/36px '微软雅黑';
    }
    .news li a:hover{
        color: #e70505;
    }
    .news li a:hover span{
        color: #e70505;
    }
}







/* 新闻详情 */

.new-er {}

.new-er-title {
    padding: 10px;
}
.new-er-name {
    font: bold 16px/20px 'Microsoft YaHei';
    color: #1c1c1c;
}
.new-er-time {
    text-align: right;
    font: 400 12px/24px 'Microsoft YaHei';
    color: #696969;
}

.new-er-content {
    min-height: 300px;
    padding: 10px;
    background: #fff;
}

.new-er-content p {
    margin-bottom: 10px;
    font: 400 14px/24px 'Microsoft Yahei';
    text-align: justify;
    color: #696969;
}

.new-er-content p img {
    width: 100%;
}

@media (min-width:1200px) {

    .new-er {
        padding: 0;
        margin-bottom: 0;
    }
    .new-er-title {
        position: relative;
        padding-bottom: 10px;
    }
    .new-er-name {
        font: 600 24px/36px 'Microsoft YaHei';
    }
    .new-er-time {
        font: 400 14px/24px 'Microsoft YaHei';
    }
    .new-er-content {
        padding: 0;
    }
    .new-er-content p {
        margin-bottom: 10px;
        font: 400 16px/30px 'Microsoft Yahei';
    }
}