/**************************************************************
										最新消息 - 首頁
**************************************************************/
.story li {
	float: left;
    border-bottom: solid 1px #ccc;
    padding: 30px 15px;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	width: 100%;
	background: #fff;
	position: relative;
	background: #f9f9f9;
}
.story li:hover {
    background: #eee;
}
/*圖*/
.story li a div:first-child {
	overflow:hidden;
	display: block;
}
.story li a div:first-child img {
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.story li a:hover div:first-child img {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/*文*/
.story a .title {
	color: #17458f;
	font-size: 21px;
    font-weight: bold;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	margin: 0;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.story a:hover .title {
	color: #000;
}
.story .date {
	font-size: 14px;
    color: #888;
	padding: 3px 0;
	margin: 0;
}
.story .date i {
    color: #ff8d45;
	padding-right: 2px;
}
.story .content {
	font-size: 15px;
    line-height: 1.6em;
    color: #555;
    height: 50px;
    text-align: justify;
	margin-bottom: 60px;
	overflow: hidden;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 點此瞭解詳情 */
.story a .read {
    font-size: 15px;
    color: #fff;
    background: #17458f;
	height: 33px;
    padding: 0 15px;
	position: absolute;
    right: 30px;
    bottom: 30px;
	display: block;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.story a .read::before{
	content: "";
    border-style: solid;
    border-width: 0 0 33px 12px;
    border-color: transparent transparent #17458f transparent;
    position: absolute;
    top: 0;
    right: 100%;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.story a:hover .read {
    background: #f5a900;
}
.story a:hover .read::before{
    border-color: transparent transparent #f5a900 transparent;
}

@media (max-width:991px){	
	/*首頁*/
	.story li {
		padding: 30px 0;
	}
	.story .title {
		padding-top: 10px;
		height: auto;
	}
	.story a .read {
		position: absolute;
		right: 15px;
		bottom: 30px;
	}
}