/**************************************************************
										最新消息 - 首頁
**************************************************************/
.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%;
}
.story li:hover {
    background: #f2f2f2;
}
/*圖*/
.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 {
	font-size: 21px;
    font-weight: bold;
	display: inline-block;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.story a:hover .title {
	padding-left: 5px;
	font-size: 24px;
	background-color: #fbb03b;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fbb03b), color-stop(80%, #ed1e79));
    background: -webkit-linear-gradient(top, #fbb03b 20%, #ed1e79 80%);
    background: linear-gradient(135deg, #fbb03b 0%, #ed1e79 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.story .date {
	font-size: 14px;
    color: #888;
	padding: 3px 0;
}
.story .date i {
    color: #ff8d45;
	padding-right: 2px;
}
.story .content {
	font-size: 15px;
    line-height: 1.6em;
    color: #555;
    height: 50px;
    overflow: hidden;
    text-align: justify;
}
.story .read {
	float: right;
	margin-top: 20px;
}
.story a .read {
    font-size: 14px;
    color: #fff;
    background: #006bb7;
    padding: 3px 25px;
    border-radius: 20px;
}
.story a:hover .read {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fbb03b), color-stop(80%, #ed1e79));
    background: -webkit-linear-gradient(top, #fbb03b 20%, #ed1e79 80%);
    background: linear-gradient(135deg, #fbb03b 20%, #ed1e79 80%);
}
/**************************************************************
										最新消息 - 詳情
**************************************************************/
.story_detail .title{
	font-size: 36px;
	color: #000;
	line-height: normal;
    border-bottom: solid 1px #ccc;
    padding-bottom: 36px;
}
.story_detail .date{
	font-size: 14px;
    color: #888;
    padding-top: 10px;
	letter-spacing: 1px;
}
.story_detail .date span{
	float: right;
	display: block;
}
.story_detail .date i {
    color: #ff8d45;
}
.story_detail .content{
    border-bottom: solid 1px #ccc;
	padding: 36px 0;
}
.story_detail .content .pic{
	padding-top:30px;
}
/**************************************************************
											分享連結
**************************************************************/
.share_link {
	display: inline-block;
    margin-bottom: -10px;
}
.share_link li {
	width: 35px;
    float: left;
    padding-left: 5px;
}
.share_link a img{
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.share_link a:hover img{
	-webkit-filter: brightness(115%);
	filter: brightness(115%);
	transform:rotate(-30deg);
	-ms-transform:rotate(-30deg); /* IE 9 */
	-moz-transform:rotate(-30deg); /* Firefox */
	-webkit-transform:rotate(-30deg); /* Safari and Chrome */
	-o-transform:rotate(-30deg); /* Opera */
}

@media (max-width:991px){	
	/*首頁*/
	.story li {
		padding: 30px 0;
	}
	.story .title {
		padding-top: 10px;
		height: auto;
	}
	/*內頁*/
	.story_detail .date span {
		float: none;
	}
}