/* 新闻部分开始 */
.newswrap{
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.newsbox{
    flex: 1;
    max-width: 385px;
    flex-shrink: 0;
    margin-right: 20px;
}

.newsbox:last-child{
    margin-right: 0;
}

.itembox{
    height: 290px;
    border: 1px solid #E5E5E5;
    background: white;
}

.itembox .cover{
    width: 100%;
    height: 178px;
    position: relative;
}

.itembox .cover img{
    width: 100%;
    height: 178px;
}

.itembox .cover p{
    background: rgba(50, 197, 216, 0.5);
    font-size: 16px;
    color: white;
    box-sizing: border-box;
    padding: 8px 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.list-wrap{
    padding: 15px;
}

.list-wrap .lItem{
    margin-bottom: 10px;
}

.list-wrap .lItem:last-child{
    margin-bottom: 0;
}

.list-wrap .lItem a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.lItem h3{
    font-size: 14px;
    color: #333333; 
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
}

.lItem p{
    font-size: 14px;
    color: #CDCACD;
    flex-shrink: 0;
}

.list-wrap .lItem:hover h3, .list-wrap .lItem:hover p{
    color: #8FCFFF;
}
/* 新闻部分结束 */

