/* CSS Document */
.newsList .textBox .text, .newsList .textBox .title, .newsList .newsItem .item, .newsBox {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.listArea .contentBox {
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.listArea .contentBox .leftBox {
	width: 250px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.listArea .contentBox .leftBox.ajaxDisabled {
	opacity: 0.15;
	pointer-events: none;
}
.listArea .contentBox .rightBox {
	width: 80%;
	padding-left: 60px;
}
@media (max-width: 1023px) {
	.listArea .contentBox {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.listArea .contentBox .leftBox {
		width: 100%;
	}
	.listArea .contentBox .rightBox {
		width: 100%;
		padding-left: 0;
	}
}

.newsBox.hide {
	pointer-events: none;
	opacity: 0;
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.newsList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	row-gap: 20px;
	margin: 0 -25px;
}
.newsList .newsItem {
	padding: 10px 25px;
	width: 33.3333333333%;
}
@media (max-width: 1200px) {
	.newsList .newsItem {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.newsList .newsItem {
		width: 100%;
	}
}
.newsList .newsItem .item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 34px;
}
@media (min-width: 1201px) {
	.newsList .newsItem .item:hover {
		-webkit-transform: translateY(-10px);
		        transform: translateY(-10px);
	}
	.newsList .newsItem .item:hover .Img:after {
		opacity: 1;
	}
	.newsList .newsItem .item:hover .textBox .title,
	.newsList .newsItem .item:hover .textBox .text {
		color: #1e398e;
	}
}
.newsList .dateBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 10px;
	   -moz-column-gap: 10px;
	        column-gap: 10px;
	font-weight: 600;
	color: #1e398e;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.689px;
}
.newsList .dateBox:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("../images/icon/date.png") center center/contain no-repeat;
}
.newsList .textBox {
	width: 100%;
	margin-top: 12px;
}
.newsList .textBox .title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #222;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5555555556;
	letter-spacing: 0.36px;
}
.newsList .textBox .text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	padding-top: 5px;
	color: #444;
	font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.32px;
}

.innerArea .contentBox {
	background-color: #fff;
	padding: 40px;
	border-radius: 60px;
}
@media (max-width: 1180px) {
	.innerArea .contentBox {
		padding: 30px;
		border-radius: 40px;
	}
}

.shareBox {
	float: right;
}
.shareBox .btn-fb {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}
.shareBox .back {
	display: inline-block;
	vertical-align: middle;
	padding: 3px 5px;
	border-radius: 3px;
	font-size: 12px;
	color: #fff;
	background: rgb(174, 66, 51);
	/* Old browsers */
	/* FF3.6+ */
	/* Chrome,Safari4+ */
	/* Chrome10+,Safari5.1+ */
	/* Opera 11.10+ */
	/* IE10+ */
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(174, 66, 51)), to(rgb(196, 76, 76)));
	background: linear-gradient(to bottom, rgb(174, 66, 51) 0%, rgb(196, 76, 76) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ae4233", endColorstr="#c44c4c", GradientType=0);
	/* IE6-9 */
	cursor: pointer;
}
@media (min-width: 1201px) {
	.shareBox .back:hover {
		background: #398cb1;
	}
}

.newsInfoBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
	padding: 5px 0;
}
.newsInfoBox .dateBox .date {
	line-height: 1;
}
.newsInfoBox .classTitle {
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.5px;
	padding: 8px 16px;
	font-weight: 500;
	border-radius: 30px;
	color: #1e398e;
	background-color: #ffd532;
}
/*# sourceMappingURL=news.css.map */