/* 新闻列表 */

/* banner栏 */
.newsList-banner {
    width: 100%;
    height: 40vh;
}

.newsList-banner img {
    width: 100%;
    height: 100%;
}

/* 面包屑导航 */
.breadcrumb {
    margin: 20px auto;
    display: flex;
    width: 70%;
    font-size: 20px;
}

.breadcrumb a {
    color: #444;
    font-weight: bold;
}

.breadcrumb a:hover {
    color: #1054c8;
    font-weight: bold;
}

.breadcrumb h3 {
    margin: 0 10px;
    color: #ccc;
}

/* 新闻列表 */
.newsLists {
    margin:0 auto 50px;
    position: relative;
    padding: 30px 20px 0;
    width: 60%;
    background: #f2f2f2;
    overflow: hidden;
}

.newsList {
    padding: 0;
    margin: 0;
    /* position: relative; */
    display: block;
    /* height: 550px;
    overflow: scroll; */
}

/* 内容 */
.newsItem {
    margin: 20px auto;
    padding-bottom:20px;
    width: 98%;
    height: 120px;
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    transition: .15s linear;
	-moz-transition: .15s linear;
	-webkit-transition: .15s linear;
}

.newsItem:hover {
    background: #ddd;
}

/* 图片 */
.in-image {
    position: relative;
    margin-right: 10px;
    width: 20%;
}

.in-image img {
    width: 100%;
    height: 100%;
    object-fit:cover ;
    background: #eee;
}

.in-image span {
    padding-top: 30px;
    position: absolute;
    right: 0;
    width: 0px;
    height: 100%;
    background: #1a9bdb;
    text-align: center;
    box-sizing: border-box;
    transition: .15s linear;
	-moz-transition: .15s linear;
	-webkit-transition: .15s linear;
}

.in-image span h6 {
    width: 100%;
    line-height: 70px;
    opacity: 0;
    color: #FFF;
    transition: .35s linear;
	-moz-transition: .35s linear;
	-webkit-transition: .35s linear;
}

.newsItem:hover .in-image span {
    width: 100%;
    background-color: rgba(26, 155, 219, 0.5);
}

.newsItem:hover .in-image span h6 {
    opacity: 0.8;
}

/* 内容 */
.in-content {
    padding:10px;
    width: 1px;
    height:100%;
    flex-grow: 1;
    overflow: hidden;
    box-sizing: border-box;
}
.in-content .news-title{
    font-size: 22px;
    color:#444;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.in-content .news-time{
    display: block;
    font-size: 14px;
    color:#888;
	white-space: nowrap;
	text-overflow: ellipsis;
    text-align: right;
}
.in-content .news-text p{
    margin:30px 15px;
	font-size: 16px;
    /* line-height: 20px; */
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}


