/* 새글 스킨 (latest) */


.notice_list{
	width: calc(100%);
	padding: 10px 30px;
	flex:1;
	color:#aaa;
	border-radius: 10px;
	background: #F2F2F2;
}
.notice_list li{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.notice_list li a{
	text-decoration: none;
	font-size: 1em;
}
.notice_list li a:hover{
	color: #E52F42;
}
.notice_list .n_date{
	color: #aaa;
	font-size: 11px;
}

@media(max-width:500px){
	.notice_list li a{
		max-width: 65%;
		height: 1.3em;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 13px;
	}
}