/* CSS Document */
.newsList .title, .newsList .Img::after, .newsList .Img::before {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.newsInfoBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px 15px;
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: 1.35px;
}
.newsInfoBox .classTitle {
	color: #fff;
	background-color: #22d58a;
	border-radius: 30px;
	padding: 4px 16px;
}
.newsInfoBox .date {
	color: #555;
	font-weight: 600;
	font-family: "Rajdhani", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.newsList {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 17px 1fr 17px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 17px;
}
.newsList .newsItem {
	position: relative;
}
.newsList .item {
	position: relative;
}
@media (min-width: 1181px) {
	.newsList .item:hover .Img::before, .newsList .item:hover .Img::after {
		opacity: 1;
	}
	.newsList .item:hover .Img::after {
		-webkit-transition-delay: 0.1s;
		        transition-delay: 0.1s;
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
	.newsList .item:hover .title {
		color: #22d58a;
	}
}
.newsList .Img {
	position: relative;
}
.newsList .Img::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(34, 213, 138, 0.65);
	left: 0;
	top: 0;
	opacity: 0;
	pointer-events: none;
}
.newsList .Img::after {
	content: "";
	position: absolute;
	width: 29.6%;
	height: auto;
	aspect-ratio: 1/0.9;
	-webkit-mask: url("../images/index/logoIcon.png") no-repeat center center/contain;
	        mask: url("../images/index/logoIcon.png") no-repeat center center/contain;
	background-color: #fff;
	z-index: 2;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	opacity: 0;
	-webkit-transform: translateY(-10px);
	        transform: translateY(-10px);
	pointer-events: none;
}
.newsList .Img img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.newsList .Txt {
	width: 100%;
	padding-top: 10px;
}
.newsList .newsInfoBox {
	margin-bottom: 10px;
}
.newsList .newsInfoBox .classTitle {
	font-size: 15px;
}
.newsList .title {
	color: #222222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0.36px;
}
@media (max-width: 840px) {
	.newsList {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 540px) {
	.newsList {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	}
}
/*# sourceMappingURL=ib_news_000.css.map */