








/*========================================================*/
/*-------首頁_最新消息區塊--------*/
/*========================================================*/


.index_newsBg{
	/* padding: 50px 0; */
	background-color: #f9f9f9;
    background-color: #ededed;
	overflow: hidden;
}
.index_news_area{
	display: flex;
	justify-content: flex-start;
	margin:  0 -10px;
	flex-wrap: wrap;
	/* padding-top: 50px; */
}


.news_list{
	width: 100%;
	padding:0 0.625rem; /*10*/
	background-color:transparent;

}
.news_list:hover{
	/* background-color:#fff;
	box-shadow: 0px 0.5rem 1.3rem 0px rgb(0 0 0 / 5%);  */
}
.news_list a{
	display:block;
	color: var(--dark_color);
	position: relative;
	padding: clamp(1.0325rem, 1.6667vw, 2rem) .3125rem; /* 16.52px , 1.6667vw , 32px */
	height: 100%;

   border-radius: 0.625rem; /*10*/
	/* -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); */
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    text-decoration: none;
}
.news_list a:hover{
	/* background-color:#fff;
	box-shadow: 0px 0.5rem 1.3rem 0px rgb(0 0 0 / 5%);  */
}
.news_list a:hover {
    text-decoration: none;
    background-color: var(--second_color) ;
}
.news_list a:hover .news_title {
    color: #fff;
}



.news_list:first-of-type a{
	border-top: solid 1px #dfdfdf ;
}
.news_list:nth-child(2) a{
	border-top: solid 1px #dfdfdf ;
}

.news_list a::after{
	content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #dfdfdf;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transition: opacity 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_list:hover a::before{
	opacity: 1;
	
}
.news_in{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.news_img{
	position: relative;
	padding-top: 20%;
	width: 30%;
	margin-right: 3rem;
}
.news_img img{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100% !important; 
	height: 100% !important;
}
.news_info{
	/* width: 60%; */
	padding-right: 40px;
}
.news_date{
	margin-bottom: 1rem;
	font-family: var(--foreign_font);
    color: var(--third_color);
}



.news_tag{
	display: none;
}








.news_title{
    color: var(--primary_color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    font-size:1.375em; /*22*/
    /*font-size: clamp(1em, 1.0417vw, 1.25em);*/ /* 字體 最小值 16.00px、大小約 1.0417vw、最大值 20.00px */

    display: -webkit-box;
    -webkit-box-orient: vertical;	
    -webkit-line-clamp: 2;	
    overflow: visible;
	/* modify by peggy 20250630 */
	display: block;
}

.news_title::before{
	content: '';
	width:0;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: -4px;
	left: 0;
	opacity: 0;
	transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_list:hover .news_title::before{
	width: 100%;
	opacity: 1;
}
.news_description{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow : hidden;
	line-height: 1.5;
	color: var(--dark_color);
}
.arrow_black{
	display: flex;
	width: 4rem;
	align-items: center;
	justify-content: center;
}

.arrow_black::before{
	content: '';
    display: block;
    width: 0.9rem;
    height: 0.5rem;
    background-image: url(../../../images/arrow-black.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;

}
.arrow_black::after{
	content: '';
    display: block;
    width: 4rem;
    height: 1px;
    background-color:     #000000;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%; */
    transform-origin: 100% 100%;
    /* -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); */
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_list:hover .arrow_black::after{
	opacity: 0;
}


.news_list a:focus{
    /* padding-left: 2%;
    padding-right:2%; */
}
.news_list a:focus  .news_date ,
.news_list a:focus .news_title ,
.news_list a:focus .news_info ,
.news_list a:focus .news_description{
    color: inherit;
}




/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */
@media screen and (min-width: 991px) and (min-height: 500px) and
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74),
only screen and (min-resolution: 150dpi) and (max-resolution: 174dpi) {

    .index_newsBg .wrap{
        max-width: 62.5rem; /*1000*/
    }



}





@media(max-width:990px){

	.index_newsBg {
		/* padding: 50px 0; */
	}
	.index_news_area {
		/* padding-top: 25px; */
	}
	.news_list a {
		padding: 1rem 0;
        text-decoration: none;
	}
	.news_img {
		padding-top: 30%;
		margin-right: 1rem;
	}
	.news_info {
		/* width: 70%;
		padding-right: 10px; */
	}
	.arrow_black{
		/* display: none; */
	}
}

@media(max-width:640px){
	.news_list {
		width: 100%;
	}
}




