/* 匯入模組------------------------------------ */
@import url("../style_news/style_news.css"); /* 最新消息模組 */
@import url("../style_product/style_product.css"); /* 商品模組 */

/* 版頭跑馬燈 --------------------------------- */
.newsticker {
    background-color: var(--fourth_color);
}

/* 版頭 -------------------------------------- */
.header {
    border-bottom: solid 1px var(--fourth_color);
}


/* 說明區塊 ---------------------------------- */
.intro_area{
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.intro{
    margin-top: 2.5rem;
    margin: 0;
    display: flex;
    gap: 1.25rem;
}
.intro_content_box{
    padding-top: 1rem;
}

.intro_right_title{}

/* 說明區塊_圖片 */
.intro .intro_left,
.intro .intro_right{
    flex: 1;
}

.intro .intro_left .intro_img{
    display: block;
    position: relative;
    padding-top: 70%;
}

.intro .intro_left .intro_img img{
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    float: none;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: all 0.3s ease-out;
}

/* 說明區塊_標題 */
.intro .intro_right_title{
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: .625rem;
    border-bottom: solid 1px var(--fourth_color);
    margin-bottom: 1.25rem;
}

/* 偶數區塊排列相反- */
.right_contentBg .intro:nth-of-type(even){
    flex-direction: row-reverse;
}




@media (max-width: 990px){
    
	
    .intro{
        flex-direction: column;
    }
    .intro_content_box{
        padding-top: 0;
    }


    .right_contentBg .intro:nth-of-type(even){
        flex-direction: column;
    }
		
}






/* 最新消息區塊---------------------------------- */

.news_Area {
    padding-top: 2.5rem;
}

.news_List {
    width: calc((100% / 4) - (3 * 1.5625vw / 4));
}

.news_Img a {
    padding-top: 100%;
}

.news_Tit {
    border-bottom: solid 1px var(--fourth_color);
    padding-bottom:clamp( .1563rem, 0.6667vw, .3125rem ) ;
}

.news_Button a {
    background-color: var(--primary_color);
}

.news_more_button {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.news_more_button a {
    text-decoration: none;
    display: inline-block;
    color: #FFF;
    border-radius: 0.625rem;
    background: var(--third_color);
    padding: 12px 30px;
    font-size: .9375rem;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 990px){
	
    .news_List {
        width: calc((100% / 2) - (1 * 1.5625vw / 2));
    }
		
}
@media (max-width: 540px){
	
    .news_List {
        width: 100%;
    }
		
}

/* 商品區塊-------------------------------------- */

.birds_nest_product{
    padding-top: 40px;
}

.birds_nest_product_title{
    font-size: clamp(1.3750rem, 1.4583vw, 1.7500rem);
    font-weight: bold;
    text-align: center;
}

.product_list {
    width: calc((100% / 4) - (3 * 1.0417vw / 4));
}



.product_more_button{
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.product_more_button a {
    text-decoration: none;
    display: inline-block;
    color: #FFF;
    border-radius: 0.625rem;
    background: var(--third_color);
    padding: 12px 30px;
    font-size: .9375rem;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 990px){
	
    .product_list {
        width: calc((100% / 2) - (1 * 0.625rem / 2));
    }
		
}
@media (max-width: 540px){
	
    .product_list {
        width: 100%;
    }
		
}