.full-bg {
	position: relative;
	background-color: transparent;
}

.full-bg::before {
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	display: block;
	background-color: #0452ae;
	transition: all .3s;
}

.full-bg:hover::before {
	width: 100%;
}

.new-list .full-bg a {
	display: block;
	overflow: hidden;
}

.new-list .full-bg .date {
	width: 138px;
	height: 138px;
	border: 1px solid #eee;
	padding: 20px;
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
}

.new-list .full-bg .date>div {
	font-size: 40px;
}

.new-list .full-bg .date p {
	font-size: 16px;
	color: #888;
	line-height: 22px;
}

.new-list .full-bg .newtxt {
	width: calc(100% - 138px);
	float: right;
	padding: 20px;
}

.newtxt h4 {
	font-size: 18px;
	font-weight: normal;
	color: #222;
	margin-bottom: 16px;
	transition: all 0.4s;
}

.shenglue {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.shenglue2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.newtxt p {
	color: #999;
	font-size: 14px;
	line-height: 22px;
}

.new-list .full-bg .row {
	border-bottom: 1px solid #eee;
	padding: 40px 0;
	margin: 0;
}

.full-bg:hover .date {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.full-bg:hover .date p,
.full-bg:hover .newtxt p {
	color: rgba(255, 255, 255, 0.5);
}

.full-bg:hover .date>div,
.full-bg:hover .newtxt h4 {
	color: rgba(255, 255, 255, 1);
}



@media(max-width:580px) {
	.full-bg .container {
		padding: 0 10px;
	}
	.new-list .full-bg .date>div {
		font-size: 24px;
	}
	.new-list .full-bg .date p {
		margin-bottom: 0px;
	}
	.new-list .full-bg .date{
		    width: 100px;
    height: 100px;
	}
	.new-list .full-bg .newtxt {
    width: calc(100% - 100px);
    }
    .full-bg::before{
    	display: none !important;
    } 
}