/**************************************************************
										最新消息 - 首頁
**************************************************************/
.news li {
	border-bottom: 1px solid #e3e4e9;
}
.news li a {
	display: flex;
    position: relative;
    padding: 30px 0;
	color: #000;
}
.news li a .title {
    font-size: 18px;
    line-height: 84px;
    width: calc(100% - 120px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.news li a .date {
	letter-spacing: 1px;
    width: 120px;
    font-family: arial;
    font-weight: bold;
}
.news li a .date .year {
	font-size: 12px;
}
.news li a .date .day {
	font-size: 55px;
    margin-left: -2px;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    line-height: 1em;
}
.news li a:hover .title {
	padding-left:15px;
	font-size: 20px;
	font-weight: bold;
	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 50%, #f7a81b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.news li a:hover .date .day {
	background-color: #f7a81b;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f7a81b), color-stop(80%, #d71b69));
    background: -webkit-linear-gradient(top, #f7a81b 20%, #d71b69 80%);
    background: linear-gradient(180deg, #f7a81b 20%, #d71b69 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.news li a::after {
    content: "";
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: transform 500ms, -webkit-transform 500ms;
    position: absolute;
    top: 100%;
	left: 0;
}
.news li a:hover::after {
	content: "";
	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 20%, #d71b69 80%);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    position: absolute;
	width: 100%;
    height: 1px;
}
/**************************************************************
										最新消息 - 詳情
**************************************************************/
.news_detail .title{
	font-size: 36px;
	color: #000;
	line-height: normal;
    border-bottom: solid 1px #ccc;
    padding-bottom: 36px;
}
.news_detail .date{
	font-size: 14px;
    color: #888;
    padding-top: 10px;
	letter-spacing: 1px;
}
.news_detail .date span{
	float: right;
	display: block;
}
.news_detail .date i {
    color: #ff8d45;
}
.news_detail .content{
    border-bottom: solid 1px #ccc;
	padding: 36px 0;
}
.news_detail .content .pic{
	padding-top:30px;
}

/*回上一頁*/
a.news_more{
	position: relative;
	display: block;
	margin-top: 20px;
	font-size: 15px;
	color: #fff;
    background: #1495be;
    height: 33px;
    padding: 0px 20px;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
a.news_more::before{
	content: "";
    border-style: solid;
    border-width: 0 0 33px 12px;
    border-color: transparent transparent #1495be 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;
}
a.news_more:hover{
	background: #f5a900;
}
a.news_more:hover::before{
    border-color: transparent transparent #f5a900 transparent;
}
/**************************************************************
											分享連結
**************************************************************/
.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){	
	/*外頁*/
	.news li a .title {
		line-height: inherit;
		white-space: inherit;
	}
	/*內頁*/
	.news_detail .date span {
		float: none;
	}
}