/* 新闻列表 */
.arc-top{
    background: url('../images/news_bg.jpg') no-repeat center center/cover;
}
.news ul{}
.news ul li{
    padding: 1px 0;
}
.news ul li a{
    display: block;
    background: #fff;
}
.new-li-img{
    overflow: hidden;
    border-top: 3px solid #000;
}
.new-li-img img{
    width: 100%;
}
.new-li-center{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.new-li-time{
    width: 1.8rem;
    text-align: center;
}
.new-li-time .days{
    display: block;
    font: bold 24px/30px '微软雅黑';
    color: #000;
}
.new-li-time .years{
    display: block;
    font: 400 14px/20px '微软雅黑';
    color: #666666;
}
.new-li-font{
    width: 8.2rem;
    padding: 0 10px;
}
.new-li-title{
    overflow: hidden;
    font: 400 16px/30px '微软雅黑';
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.new-li-p{
    font: 400 14px/24px '微软雅黑';
    color: #000;
}
.new-li-bottom{
    padding: 0 25px;
    background: #000;
}
.new-li-bottom span{
    display: block;
    font: 400 12px/36px '微软雅黑';
    color: #fff;
    background: url('../images/new_arrow.png') no-repeat right center;
} 

@media (min-width:1200px) {
    article{
        background: url('../images/news_bg.jpg') no-repeat center center fixed;
    }
    .arc-top{
        background: none;
    }
   .container{
        background: rgba(255, 255, 255, 0.8);
    }
    .news ul{
        display: flex;
        flex-wrap: wrap;
        padding: 30px 60px;
    }
    .news ul li{
        width: 33.333%;
        padding: 12px;
    }
    .news ul li a{
        transition: 0.6s;
    }
    .new-li-img{
        border-top: 8px solid #000;
    }
    .new-li-center{
        padding: 30px 0;
    }
    .new-li-time{
        width: 80px;
    }
    .new-li-time .days{
        font: bold 36px/42px '微软雅黑';
    }
    .new-li-time .years{
        font: 400 14px/24px '微软雅黑';
    }
    .new-li-font{
        width: 330px;
        padding: 0 10px;
    }
    .new-li-title{
        font: 400 18px/30px '微软雅黑';
    }
    .new-li-p{
        height: 120px;
        font: 400 14px/24px '微软雅黑';
    }
    .new-li-bottom{
        padding: 0 25px;
    }
    .new-li-bottom span{
        font: 400 12px/56px '微软雅黑';
    }
    .news ul li a:hover{
        transform: translate3d(0, 10px, 0);
    }
    .news ul li a:hover .new-li-img{
        border-color: #b60d10;
    }
    .news ul li a:hover .new-li-bottom{
        background: #b60d10;
    } 
}


/* 新闻详情 */
.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;
    }
    .new-er .container{
        padding: 20px 40px;
    }
    .new-er-title{
        position: relative;
        margin: 20px 0 20px;
        padding-bottom: 15px;
        font:400 30px/36px '微软雅黑';
        color: #333;
        text-align: left;
        border-bottom: 1px solid #333;
    }
    .new-er-time{
        position: absolute;
        right: 0;
        top: 0;
    }

    .new-er-content p{
        font: 400 16px/30px '微软雅黑';
    }
}