.monthly-list {
	padding: 15px;
	text-align: center;
}
.monthly-list a .pic {
	overflow: hidden;
	height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
	border: solid 1px #ccc;
	border-radius: 2px;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.monthly-list a .pic img{
	width: 100%;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.monthly-list a:hover .pic img {
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}
.monthly-list a:hover .pic {
	box-shadow: 15px 15px 15px rgba(0, 0, 0, .1);
}

/*文字*/
.monthly-list a .information{
	padding: 10px 0 30px 0;
}
.monthly-list a .information .date {
    font-size: 20px;
	font-weight: bold;
}
.monthly-list a .information .date {
	color: #006bb7;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.monthly-list a:hover .information .date {
	color: #F90;
	background-color: #f7a81b;
	background: -webkit-gradient(linear, left top, right top, color-stop(20%, #f7a81b), color-stop(80%, #d71b69));
    background: -webkit-linear-gradient(left, #f7a81b 20%, #d71b69 80%);
	background: linear-gradient(90deg, #f7a81b 0%, #d71b69 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width:991px){
	.monthly-list a .pic {
		height: auto;
	}
}