.blogNews ul.news{
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 15px 0px;
	margin-bottom: 15px;
}
.blogNews ul.news li{
	width: calc(100% / 3 - 30px);
	margin: 15px;
	transition: all .5s;
}
.blogNews ul.news li:hover{
	transform: translateY(-10px);
}
.blogNews ul.news li .photo{
	width: 100%;
	padding-top: 100%;
	background-size: cover;
	background-position: center;
	border-radius: 30px;
}
.blogNews ul.news li .text{
	padding: 15px 0px;
}
.blogNews ul.news li .text .title{
	font-weight: bold;
	font-size: 18px;
	height: 24px;
	overflow: hidden;
	margin-bottom: 10px;
	color: #000;
}
.blogNews ul.news li .text .date{
	font-size: 12px;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: end;
}
.blogNews ul.news li .text .date span{
	margin-left: 10px;
}
.blogNews ul.news li .text .description{
	height: 45px;
	overflow: hidden;
	font-size: 14px;
	color: #666;
}
.blogNewsDetail .newsTitle{
	font-size: 24px;
	color: #000;
	font-weight: bold;
}
.blogNewsDetail .date{
	margin-top: 5px;
	margin-bottom: 10px;
}
.blogNewsDetail .imgPhoto{
	max-width: 100%;
	width: 100%;
	margin-bottom: 60px;
}
.blogContent {
    width: 100%;
    padding: 50px;
    background-color: #fff;
    margin-top: 30px;
    border-radius: 30px;
    margin-bottom: 60px;
}
.blogContent .photo img,
.blogContent img{
	max-width: 100%;
}
@media(max-width: 820px){
	.blogNews ul.news li{
		width: calc(100% / 2 - 30px);
	}
}
@media(max-width: 640px){
	.blogNews ul.news li{
		width: 100%;
		margin: 15px;
		margin-top: 0px;
	}
}