



/* 在螢幕寬度大於991時，套用這裡的特定樣式 */
@media screen and (min-width: 990.1px) {

    .page .right {
        min-height: inherit;
    }
    .page .right_contentBg {
        min-height: inherit;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}










.about_overview_area{
    margin: 0;
    padding: 0;
    list-style-type : none;
    display: flex;
    flex-wrap: wrap;
    /* row-gap: clamp(1.129rem, 0.624rem + 2.53vw, 2.188rem);
    column-gap: 1.8229vw; */
    gap: clamp(1.129rem, 0.624rem + 2.53vw, 2.188rem);
    width: 100%;
}
    .about_overview_area li{
        margin: 0;
        padding: 0;
        list-style-type : none;
        display: block;
        width: calc((100% / 4) - (3 * clamp(1.129rem, 0.624rem + 2.53vw, 2.188rem) / 4)); /* 4欄平均寬度，扣除間距  */
        position: relative;
        aspect-ratio: 315 / 159;
        transition: 0.3s ease all;

        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    .about_overview_area li:hover{
        opacity: 0.5;
        transition: 0.3s ease all;
    }
            .about_overview_area a{
                display: block;
                height: 100%;
            }
                .about_overview_area .card{
                    
                    width: 100%;
                    height: 100%;
                }
                    .about_overview_area .title{
                        position: absolute;
                        top: 50%;
                        right: 5%;
                        width: 40%;
                        aspect-ratio: 1;
                        transform: translateY(-50%);
                        font-weight: 600;
                        color: var(--dark_color);
                        font-size: 1rem;
                        background-color: rgba(255 255 255 / 80%);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                    .about_overview_area .title strong{
                        font-size: inherit;
                        line-height: inherit;
                        color: inherit;
                        font-weight: inherit;
                        letter-spacing: inherit;
                    }









/* 在螢幕寬度大於990時，套用這裡的特定樣式 */
@media screen and (min-width: 990.1px) {

	/*火狐跑版問題*/
	/* .firefoxBrowser .about_overview_area {
		display: grid;
		grid-template-columns: repeat(4 , 1fr);
		gap: clamp(1.129rem, 0.624rem + 2.53vw, 2.188rem);
	}
  
		.firefoxBrowser .about_overview_area li{
			width: 100%;
		} */
	
	
}

@media (max-width: 990px){

    .about_overview_area li{
        width: calc((100% / 2) - (1 * clamp(1.129rem, 0.624rem + 2.53vw, 2.188rem) / 2)); /* 2欄平均寬度，扣除間距  */
    }
    
}

/* 在螢幕寬度大於990時，套用這裡的特定樣式 */
@media screen and (max-width: 990px) and (min-width: 641.1px) {

	/*火狐跑版問題*/
	/* .firefoxBrowser .about_overview_area {
		display: grid;
		grid-template-columns: repeat(2 , 1fr);
		gap: clamp(1.129rem, 0.624rem + 2.53vw, 2.188rem);
	}
  
		.firefoxBrowser .about_overview_area li{
			width: 100%;
		} */
	
	
}


@media (max-width: 640px){

    .about_overview_area{
        gap: .625rem;
    }

    .about_overview_area li{
        width: 100%; /* 4欄平均寬度，扣除間距  */
    }



}





