		.news-card{
			display: flex;
			flex-direction: row;
			justify-content: center;
			align-items: center;
			width: 900px;
			height: 145px;
			border: 1px solid#e9e9e9;
			margin: 15px auto;
			padding: 15px;
			cursor: pointer;
		}
		.news-card a{
			color: #2484f2;
		}
		.news-card:hover{
			box-shadow: 5px 5px 25px rgba(212, 212, 212, 0.65);
			transition: box-shadow .4s ease-in;
		}
		
		.news-card-left{
			width: 20%;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
			border-right: 1px solid#e9e9e9;
		}
		
		.news-card-left img{
			max-width: 100%;
			width: 100%;
		}
		
		.news-card-right{
			width: 80%;
			display: flex;
			flex-direction: column;
			justify-content: center;
			height: 100%;
			padding: 0 10px;
		}
		
		.news-title{
			font-size: 18px;
			font-weight: bold;
		}
		
		.news-abstract{
			color: #999;
			display: flex;
			flex: 1;
			justify-content: center;
			align-items: center;
		}
		
		.news-bottom{
			display: flex;
			flex-direction: row;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			align-self: flex-end;
		}
		
		.news-date p{
			color: #ccc;
			margin: 0;
		}