/*區塊*/
.download-list {
	padding: 14px;
}
.download-list a .information{
    padding: 15px;
	background-color: #fff;
	border: solid 1px #ccc;
	border-radius: 20px;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.download-list a:hover .information {
    box-shadow: 15px 15px 15px rgba(0, 0, 0, .1);
}

/*日期*/
.download-list a .information .date {
	color: #2196F3;
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
}

/*標題*/
.download-list a .information .title {
	color: #000;
	font-size:18px;
    text-align: justify;
    height: 58px;
    overflow: hidden;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 10px 0 20px 0;
}
.download-list a:hover .information .title {
	color: #006bb7;
	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;
}