@charset "utf-8";
/* CSS Document */
/*---------------------------------------------------main-----------------------------------------*/
/*--------------------------content---------------------------------*/
/*----------------news(標題)--------------------*/
	.news{
		display: block;
		line-height: 60px;
		border-bottom: 1px dashed #ABA3A3;
	}
	.news h4 {
		position: relative;
		display: block;
		box-sizing: border-box;
		color: #000;
		padding-left: 10px;
		float: left;
		text-align: left;
		width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		transition:all 0.3s ease;
	}
	.sticky h4:before {
	    content: "\f08d";
	    font-family: "Font Awesome 5 Free";
	    -webkit-font-smoothing: antialiased;
	    display: block;
	    font-style: normal;
	    font-variant: normal;
	    text-rendering: auto;
	    font-weight: 900;
	    position: absolute;
	    top: 1px;
	    left: 0;
	    color: brown;
	}
	.news:hover h4{
		color: #FF9800;
	}
	.news span{
		margin: 0 10px;
	}
/*--------------news_content(內文)--------------*/
	.news_content {
		clear: both;
		background-color: #000;
		padding: 2%;
		margin: 0 auto 50px auto;
		display:none;
	}
	.news_content p{
		margin: 15px 0;
		color:#fff;
	}
	nav.page-nav{
		display: none;
	}

/*熒幕尺寸【小於】1025時頁面顯示---平板*/
@media (max-width:1024px) {
	.news:hover h4 {
		opacity: 1;
	}
}