.main {
	min-height: 600px;
	background-color: #f5f5f5;
	padding: 20px 0;
}
.notice-wrap{
	background-color: #fff;
	padding: 20px 12px;
}
.notice-list{
	display: flex;
	align-items: center;
	padding: 20px 12px;
	border-bottom: 1px solid #f5f5f5;
}
.notice-list .list-left{
	width: 145px;
	height: 105px;
	border-radius: 4px;
	border: 1px solid #f5f5f5;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}
.notice-list .list-left .num{
	font-size: 36px;
	color: rgba(102, 102, 102, 1);
}
.notice-list .list-left .time{
	font-size: 18px;
	color: rgba(153, 153, 153, 1);
}
.notice-list .list-right{
	display: flex;
	/*flex-direction: column;*/
	width: 100%;
	justify-content: space-between;
}
.notice-list .list-right .notice-title{
	font-size: 18px;
	color: rgba(51, 51, 51, 1);
	font-weight: bold;
	width: 100%;
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-right: 10px;
	display: flex;
	align-items: center;
}
.notice-list .list-right .notice-title:before{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #000;
	flex-shrink: 0;
	margin-right: 5px;
}
.notice-list .list-right .notice-desc{
	font-size: 14px;
	color: rgba(85, 85, 85, 1);
	margin-top: 10px;
}

.notice-wrap .notice-list .list-right .notice-time {
	margin-top: auto;
	font-size: 14px;
	color: #999;
}

