/* 内容样式 */
.content{
    width: 80%;
    min-width: 1200px;
    margin: 30px auto;
    flex: 1 0 auto;   
}
.div-newsInformation{
    padding: 5px 0;
    display: flex;
    align-items: center;
    padding-left: 50px;
    border-bottom: solid 3px #327ccc;;
}
.div-newsInformation .div-newsInformation-img{
    width: 39px;
    height: 38px;
}
.div-newsInformation .div-newsInformation-img img{
    width: 100%;
    height: 100%;
}
.div-newsInformation span{
    font-size: 22px;
    color: #327ccc;
    margin-left: 10px;
}
.div-newsInformation-text{
    width: 94%;
    margin: 40px auto;
}
.div-newsInformation-text-list{
    padding-bottom: 30px;
    border-bottom: dashed 2px #f5f5f5;
    cursor: pointer;
}
.list-box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list-box-top .list-box-top-title{
    font-size: 18px;
    color: #327ccc;
    display: flex;
    align-items: center;
}
.list-box-top .list-box-top-title::before{
    content:"";
    display: block;
    width: 10px;
    height: 10px;
    background: url("../img/list_ico01.png");
    background-size: cover;
    margin-right: 10px;
}
.list-box-top .list-box-top-time{
    font-size: 14px;
    color: #999999;
    padding-right: 20px;
    display: flex;
    align-items: center;
}
.list-box-top .list-box-top-time::before{
    content: "";
    display: block;
    width: 19px;
    height: 19px;
    background: url("../img/time.png");
    background-size: cover;
    margin-right: 10px;
}
.div-newsInformation-text-list p{
    font-size: 14px;
    color: #666666;
    text-indent: 28px;
    line-height: 22px;
    margin-top: 20px;
    padding-left: 20px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.div-newsInformation-text-list + .div-newsInformation-text-list{
    margin-top: 30px;
}