@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 麵包屑導覽隱藏 */
.path {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.navigation {
   padding: 25px 0 25px 210px; }
.header_area {
    /*position: fixed;*/
    width: 100%;
}
.main_header_area {
    background: transparent;
    height: 0;
}
.main_header_area .container {
    max-width: 1800px;
    padding: 0 3%;
}

.nav-brand {
    width:170px;
    margin-top: 20px;
}
.me_tp_features {
    display: none;
}
.bannerindex { 
    position:static; 
    height:auto;
    filter: brightness(0.8);
}

/* 下滑設定 */
.header_area.sticky .main_header_area {
    background: rgb(0 0 0 / 50%);
    height: 100%;
}
.header_area.sticky .nav-brand {
    width: 135px;
    margin-top: 5px;
	
}
.main_header_area,
.nav-brand,
.header_area.sticky .main_header_area,
.header_area.sticky .nav-brand {
    transition: .3s linear;
}

/*主選單*/
.stellarnav ul {
    padding-top: 5px;
	}

.stellarnav > ul > li > a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    padding-left: 15px;
	margin: 0PX;
}
.stellarnav li.has-sub > a:after {
    display: none;
    position: relative;
    top: 0;
    margin-left: 0;
}
.stellarnav li.drop-left li.has-sub > a:after {
    border-right: 6px solid ;
}

/* 第二層 */
.stellarnav ul ul {
    width: 180px;
    background: rgb(0 0 0 / 70%);
}
.stellarnav li li {
    border: 0;
    background: ;
    margin-bottom: 0;
}
.stellarnav ul ul a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    letter-spacing: 2px;
    padding: 12px 15px;
}
.stellarnav li li.drop-left > a:after {
    border-left: ;
} /* 朝右箭頭 */


/* hover */
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    background: rgba(255, 255, 255, 0.2);
} /* 主選單一般變色 */
.stellarnav > ul > li,
.stellarnav > ul > li > a,
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    transition: .3s linear;
}
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid #;
} /* 主選單三角形 */
.stellarnav li li:hover > a,
.stellarnav li li.has-sub:hover > a,
.stellarnav li li.drop-left:hover > a  {
    color: ;
    background: rgba(255, 255, 255, 0.1);
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */

@media screen and (max-width: 1024px) {
    .header_area {
        position: relative;
    }
    .main_header_area {
        background: rgb(0 0 0 / 75%);
        height: auto;
    }
    .main_header_area .container {
        padding: 0;
    }
    .navigation {
        padding: 10px;
    }
    .nav-brand {
        width: 150px;
    }

    /* 下滑設定 */
    .header_area.sticky .nav-brand {
        width: 130px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px){
    .navigation {
        padding: 10px 10px 10px 40px;
    }
    .nav-header {
        text-align: left;
    }
    .nav-brand {
        width: 110px;
        margin-top: 5px;
    }
    /* 下滑設定 */
    .header_area.sticky .nav-brand {
        width: 90px;
        margin-top: 5px;
    }

    /* 漢堡鈕設定 */
    .stellarnav.mobile {
        left: auto;
        right: 20px;
        top: 12px;
    }
    .stellarnav .menu-toggle:after {
        display: none
    }
    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }


    /* 關閉按鈕設定 */
    .stellarnav.mobile.left > ul {
        left: auto;
        right: 0;
        max-width: 350px;
        background: rgb(0 0 0 / 80%);
    }
    .stellarnav .icon-close {
        right: 5px;
        width: 20px;
        height: 20px;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        font-size: 0;
        color: transparent;
        background: transparent;
        padding: 25px;
    }
    .stellarnav .icon-close:before,
    .stellarnav .icon-close:after {
        width: 25px;
        border-bottom: solid 2px #fff;
    }
    .stellarnav .icon-close:before {
        transform: rotate(44deg);
    }
    .stellarnav .icon-close:after {
        transform: rotate(-44deg);
    }

    /* 選單按鈕設定 */
    .stellarnav.mobile ul {
        background: transparent;
    }
    .stellarnav.mobile > ul > li {
        border-bottom: 0;
    }    
    .stellarnav.mobile li.open {
        background: rgb(0 0 0 / 50%);
        padding: 0;
    }
    .stellarnav.mobile li a {
        border: 0;
        color: #;        
    }
    .stellarnav.mobile > ul > li > a {
        padding: 10px 43px 10px 30px;
    }
    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px #fff;
    }   
    
    .stellarnav > ul > li > a:hover, 
    .stellarnav > ul > li:hover > a {
        background: transparent;
    }/* 叉叉hover效果 */

    .stellarnav.mobile li.open li.open {
        padding: 0;
    }
    
    .stellarnav.mobile ul ul {
        background: rgb(255 255 255 / 30%);
    }
    .stellarnav ul ul a {
        padding: 12px 15px 12px 38px;
    }
    .stellarnav.mobile li li li {
        padding-left: 8px;
    }
    .stellarnav.mobile li li a.dd-toggle .icon-plus:before,
    .stellarnav.mobile li li a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 首頁購物車 */
.prod_part {
    padding: 100px 20px 80px 20px;
}
.products-list {
    padding: 50px 0 20px 0;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* footer */
footer {
    background: #272423 !important;
    padding: 50px 0 30px 0 !important;
}
.footer .center {
    max-width: 1800px;
    padding: 0 3%;
}
.footer_logo {
    width: 150px;
}
.footer_logo a img {
    width: 100%;
}
.footer_info ul {
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_info li p:before {
    font-size: 12px;
    color: #c0c0c0;
}
.footer_info li p.line:before {
    content: 'Line ID /';
}
.footer_info li p.tel:before {
    content: 'TEL /';
}
.footer_info li p.phone:before {
    content: 'PHONE /';
}
.footer_info li p.fax {
    display: none;
}
.footer_info li p.mail:before {
    content: 'EMAIL /';
}
.footer_info li p.add:before {
    content: 'ADD /';
}
.footer_info li:nth-child(1) p a {
    font-size: 13px;
    color: #c0c0c0;
}
.box_link {
    display: none;
}
.footer_info li:nth-child(2) {
    padding: 30px 0 0 0;
}
.footer_menu a {
    letter-spacing: 2px;
    color: #bdaea2;
    border: 0;
    background: transparent;
    margin: 0 4px 10px 4px;
}
.footer_menu a:first-of-type {
    display: none;
}
.copy {
    font-size: 14px;
    text-align: left;
    color: #5a5a5a;
    max-width: 1800px;
    border: 0;
    margin: 30px auto 0 auto;
    padding: 0 3.5%;
}

/* hover */
.box_link a,
.box_link a:hover,
.footer_menu a,
.footer_menu a:hover,
.copy a,
.copy a:hover {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_menu a:hover {
    background: transparent;
    color: #9c9c9c;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0 60px 0 0;
    }
}

@media screen and (max-width: 600px) {
    .footer_info {
        padding: 0 60px 0 0;
    }
    .footer_menu {
        display: flex;
        flex-wrap: wrap;
		justify-content: flex-start;
        
    }
    .footer_menu a {
        width: calc(100% / 3 - 10px);
    }
    .total_view {
        line-height: 220%;
    }
}



/* 回到頂部按鈕 */
#to_top {
    right: 0;
    left: auto;
    bottom: 0;
    font-size: 0;
    color: transparent;
    border-radius: 0;
    background: rgb(0 0 0 / 60%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}
#to_top i.top {
    margin-top: 10px;
}
#to_top i.top:before, #to_top i.top:after {
    background: #fff;
}

@media screen and (max-width: 768px) {
    #to_top {
        bottom: 0 !important;
    }
}


/* 浮動按鈕 */
.info_fix {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*---------功能頁設定---------*/
/*頁碼*/
ul.page {
    width: 100%;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    margin-top: 50px;
}

/* 停留在該頁時 */
.activeN {
    background: #4C5259;
    color: #fff;
    line-height: 50px;
    width: 50px;
    height: 48px;
}

/* 其他頁 */
.page li {
	margin: 0;
}
.page li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 0;
    color: #4C5259;
}
.page strong, .page a {
    border-radius: 0;
}

/* hover */
/* 點擊其他頁 */
.page strong, .page a:hover {
    background: rgb(76 82 89 / 10%);
    color: #231815;
}
.page a, 
.page a:hover {
    transition: all .2s;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

/* .blog_page */

/* 左側文章分類 */
.blog_search input[type=search] {
    border-radius: 0;
}
.blog_le .accordion {
    border-radius: 0;
}

/* 右側文章列表 */


/* .blog_in_page */
.blog_back {
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
}
.blog_back a {
    width: calc(100% / 3 - 8px);
}
.blog_back a.article_btn_back {
    background: #C06223;
}
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: #4c1c1c;    
}

@media screen and (max-width: 960px) {
    .subbox_ {
        border-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .blog_search input[type=search] {
        -webkit-appearance: none;
        background: transparent;
    }
    .blog_list_ri {
        width: calc(100% - 160px);
    } 
    .blog_ri {
        margin: 0 auto 40px auto;
    }     
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 促銷方案 */
.promotion_title em {
    display: none;
}


/* 其他則消息 */
.other_promotion .pmtTime span {
    float: left;
}
.pmtTitle span {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */

/* .album_page */


/* .album_class_page */
.show-list .show_pic {
    padding-bottom: 55%;
}
.show-list .show_pic before {
 
    background: rgba(0, 0, 0, .3);
}
.subalbum-menu .block {
    display: none;
}
.other_subalbum li p {
    font-size: 17px;
    color: #333;
    letter-spacing: 0.15em;
    line-height: 1.5;
    padding: 7px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 58px;
}

/* album_info_page */


/* 相簿分類 */
.other_album_choice li {
    padding: 12px 0px;
}
.other_album_choice li a {
    padding: 12px 20px;
}

/* hover */
.other_album_choice li:hover {
    background: ;
}
.other_album_choice li a:hover {
    color: ;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 聯絡我們 */

/* 左側-聯絡資訊 */

/* 右側-表單 */
.contact_form li {
    padding: 0 0 25px 90px;
}

/*表單勾選欄位間距*/
.contact_page input[type="checkbox"], input[type="radio"] {margin-left: 15px; margin-right: 5px;}
.contact_page input[type="checkbox"]:nth-child(1), input[type="radio"]:nth-child(1) {margin-left: 0px;}


/* hover */
.contact_form li.last blockquote:hover input, 
.contact_form li.last cite:hover input {
    letter-spacing: 2px;
}
.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}


@media screen and (max-width: 768px) {
	.noborder {
        border-radius: 0;
    }
}

@media screen and (max-width: 600px) {
    .contact_page .main_part {
        padding: 20px 10px 10px;
    }
    .contact_content {
        padding: 0 0 15px;
    }
    .contact_form li .form__label {
        width: 85px;
        margin-left: -100px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { 
    max-width:1500px;
}
.product_info_page .main_part { 
    max-width:1200px;
}

.product_page .show_content,
.product_info_page .show_content { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap;
}
.product_page .product-layer-two { 
    position: relative; 
    width: 220px; 
    letter-spacing: 1px;
    min-height: 30vw;
}
.product_page .product-layer-two:before {
    content: "CATEGORY";
    font-family: 'Kodchasan', sans-serif, 'Noto Sans TC', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(49,48,47, .5);
    display: block;
    margin-bottom: 25px;
}
.product_page .products-list,
.product-wrapper { 
    width: calc(100% - 270px); 
    display: flex; 
    flex-wrap: wrap; 
    align-s: flex-start;
}
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: solid 1px #efefef;
}
.product-layer-two li a {
    background: transparent;
}
.product-layer-two li.active a {
    border: 0;
}

/* 分類第二層 */
.product-layer-two li ul { 
    position:static; 
    margin-top:10px; 
    display:block !important; 
    width:100%; 
    margin-left:0;
}
.product-layer-two li li {
    display: block;
    padding: 5px 10px;
    transition: all ease .3s;
    border: 0;
}
.product-layer-two li li a {
    padding: 0px 8px 4px 18px;
    color: rgba(49,48,47, .8);
    font-size: 13px;
}
.product-layer-two > li ul > li + li { 
    margin-top:5px;
}
.product-layer-two li li > a:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 1px;
    background: #fff;
    left: 0;
    margin-left: 5px;
    top: 50%;
    margin-top: -2px;
    transition: all .3s;
}


/* 商品分類hover */
.product-layer-two li:hover ul { 
    border: none !important; 
    display:block !important;
}
.product-layer-two > li > a:hover {
    color: ;
}
.product-layer-two li li:hover {
    margin-left: 3px;
}
.product-layer-two li li:hover > a { 
    background:#fff; 
    color:#ad925e;
}
.product-layer-two li li:hover > a:before {
    background: #ad925e;
    transition: all .3s;
}

/*---------商品列表頁面---------*/

/*商品列表*/
.products-list .pic img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.products-list .price .ori_price {
    color: ;
    font-size: 14px;
}
.products-list .price .sp_price {
    color: ;
}
.products-list .more {
    border: 1px solid #; 
    color: ; 
    background: ; 
    letter-spacing: 3px;
}

/*商品列表hover*/
.products-list . a:hover .more {
    background: ;
}


/*---------頁碼--------*/
ul.page {
	width: 100%;
	margin-top: 60px;
	margin-right: 0px;
	margin-bottom: 50px;
	margin-left: 0px;
}


/*---------商品資訊--------*/

.product_info_page .product-layer-two { 
    display: none;
}
.product_info_page .products-list,
.product-wrapper { 
    width: 100%;
}


/*左側商品圖*/
#bx-pager h6 { 
    display: none;
}
.product_pic #bx-pager a { 
    overflow: hidden;
}

/*右側資訊*/
.radio-inline__input:checked + .radio-inline__label {
    color: #fff;
    background: #000;
}
.sidebarBtn { 
    border: 0px;
}
.inquiry_a1,
.inquiry_a2, 
.inquiry_a3 {
    border-radius: 0;
}
.product_info li .txt_box {
    color: #afab9a;
}
.sidebarBtn .price {
    color: #999; 
    border-bottom: 0px;
}
.sidebarBtn .price span.ori_price {
    font-size: 14px;
    text-decoration: line-through;
}
.sidebarBtn .sp_price {
    color: ;
}
.action-button {
    font-weight: bold;
    color: ; 
    border: solid 2px # !important; 
    background: transparent;
}

/*商品資訊欄位*/
ul.prod li h3.prod-thumb {
    background: #000;
    color: #fff;
}
li.prod-.is-active .prod-panel{
    padding: 20px 0px 100px 0px;
}

/*商品QA*/
.product_info_page .half_box { 
    width: 100%; 
    float: none; 
    padding-right: 0;
}
.product_info_page .half_box li.btn_blankTop { 
    margin-top: 50px; 
    justify-content: space-between; 
    display: flex;
}
.product_info_page .half_box li.btn_blankTop input { 
    width: calc(50% - 10px); 
    background-image: none; 
    padding: 0; 
    text-align: center;
}
.qaform .breakF {
    border: 0;
    background: #f1f1f1;
}
.lastaction { 
    color: ; 
    background-color: ;
}
.nextaction { 
    color: ; 
    background-color: ;
}

/*相關推薦*/
.related_list li a {
    padding: 0;
}
.related_list li a p {
    padding: 8px 0 10px 0;
}
.lastPage {
    background: ;
}

/* hover */
.action-button:hover {
    
}


@media screen and (max-width: 1200px) {
    .products-list . { 
        width: calc(100% / 3);
    }
}
@media screen and (max-width: 980px) {
    .products-list . { 
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    .product-layer-two,
    .products-list,
    .product-wrapper { 
        width: 100%;
    }
    .product-layer-two { 
        margin-right: 0;
    }
    .product-layer-two > li { 
        margin-bottom: 5px;
    }
    .product_page .product-layer-two,
    .product_page .products-list { 
        width: 100%; 
        border-right: none;
    }

    .product_page .show_content > a { 
        order: 1;
    }
    .product_page ul.products-list { 
        order: 2;
    }
    .product_page ul.page { 
        order: 1;
    }
    .product_page ul.product-layer-two { 
        order: 3;
    }

	/*商品管理--取消Safari預設圓角*/	
	.amountNum	{
        border-radius: 0;
    }		
	.breakF {
        border-radius: 0;
    }	
	.lastaction, .nextaction {
        border-radius: 0;
    }      
}
@media screen and (max-width: 600px) {
    .products-list . { 
        width: 100%; 
        max-width: 350px;
        margin: 20px auto;
        display: block;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}

.swiper-slide {position: relative;}
.swiper-slide:before{ content: ""; position: absolute;  z-index: 999; pointer-events:none; width: 100% !important; height: 0 !important;
   /* background:url(https://pic03.eapple.com.tw/02-89351802/down_pic.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 35%;
    left: 0%;
    background-position: center;
    padding-bottom: calc(100% / 1*0.1408);*/
}
.swiper-slide.swiper-slide-active:before{animation: slide-top 1s 0.3s both;}
/*上升*/
@keyframes slide-top {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
              opacity:0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
              opacity:1;
    }
  }



@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
.swiper-slide:before{ 
    padding-bottom: calc(100% / 1*0.2);
}
}
@media screen and (max-width: 425px) {

.swiper-slide:before{ 
    padding-bottom: calc(100% / 1*0.3);
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
	background: url(https://pic03.eapple.com.tw/02-89351802/ban.jpg) no-repeat;
	background-size: cover;
    font-size: 30px;
    color: #fff;
}
#content {background: url(https://pic03.eapple.com.tw/02-89351802/bg.png) no-repeat;
	background-size: cover;
    min-height: 60vh;
}
#content_main{min-height: 40vh;}
.banner h5 {
	letter-spacing: 3px; font-size: 30px;
    color: #fff;
}
.banner h5:after {
    content: "";
    display: block; 
    position: relative;       
    font-family: 'Poppins', sans-serif,  'Noto Sans TC', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;    
}




@media screen and (max-width: 768px) {

}


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/* #bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:30px 0 0; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}


.linkBox_Open + span i {transform:rotate(45deg);}
@media screen and (max-width: 320px) {
   
    .footer_menu a {
        width: calc(100% / 2 - 10px);
  
}
}








/* 首頁文章 */
.module_i_news {
    padding-top: 80px;
    padding-bottom: 80px;
}

.module_i_news .title_i_box {
    margin-bottom: 50px;
}

.module_i_news .title_i_box h6 {
    font-size: 18px;
    color: #B69133;
    text-transform: uppercase;
}

.module_i_news .title_i_box h4 {
    color: #2E3337;
    font-weight: 700;
    font-size: 52px;
}


.module_i_news .title_i_box h4:after {
    content: '';
    width: 58px;
    height: 3px;
    background: #CFA13E;
    display: block;
    margin: 10px auto auto auto;
}

.module_i_news ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    width: 90%;
    max-width: unset;
}

.module_i_news ul li {
    width: 100%;
}

.i_blog_le {
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    width: 100%;
    background: #263751;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.module_i_news ul li:hover .i_blog_le:after {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.i_blog_le:after {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    transition: all .6s;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    top: 0;
    bottom: auto;
    right: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-s: center;
    transition: all 0.3s ease-in-out;
}

.module_i_news li a:before {
    display: none;
}

.module_i_news ul li:hover img {
    opacity: 0.05;
    transition: all 0.3s ease-in-out;
}

.module_i_news li a:after {
    display: none;
}

.i_blog_ri {
    width: 90%;
    margin: auto;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 170px;
}

.i_blog_le img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i_blog_ri h5 {
    font-weight: 600;
    font-size: 26px;
}

.i_blog_ri p {
    font-size: 18px;
    line-height: 1.7;
}

.module_i_news {
    background: #e6e6e6;
}

.module_i_news li a {
    background: #fff;
}


@media screen and (max-width:1024px) {
    .module_i_news .title_i_box {
        margin-bottom: 40px;
    }

    .module_i_news {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .module_i_news ul {
        grid-template-columns: 1fr 1fr;
    }

    .module_i_news .title_i_box h4 {
        font-size: 36px;
    }
}

@media screen and (max-width: 476px) {
    .module_i_news .title_i_box {
        margin-bottom: 30px;
    }

    .module_i_news {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .i_blog_ri h5 {
        font-size: 18px;
    }

    .i_blog_ri p {
        font-size: 16px;
    }

    .module_i_news ul {
        grid-template-columns: 1fr;
    }

    .module_i_news .title_i_box h4 {
        font-size: 32px;
    }
}
/*●●●●●●●●●●●●●●●●●●●●●●●●   文章分類管理   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*文章設定*/
.blog_page .main_part {  max-width: 1400px;}
.blog_in_page .main_part {  max-width: 1400px;}

h5.blog_le_t { font-family: 'Noto Sans TC','Microsoft JhengHei', sans-serif;}
h5.blog_le_t span { font-family: 'Geologica';}
h5.blog_le_t {letter-spacing: 0;}
.accordion li .link a {font-weight: 500;}

.blog_search input[type=search] {border-radius: 0;}
.blog_le .accordion {  border-radius: 0;   border: NONE;}
.accordion li:not(:last-of-type) {  border-bottom: 1px solid #fff;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: #9c7a54  !important;   transition: all 0.3s;}
.blog_subbox {  display: grid;  grid-template-columns: 1fr 1fr;  grid-gap: 20px;}
.blog_subbox:before {content: none;}
.subbox_item {  width: 100%;  margin-bottom: 0; background: #fafafa;   padding: 15px;}
.blog_list_le {  padding: 0; width: 100%;}
.blog_list_ri {  padding: 12px 0;  width: 100%;}
.blog_list_ri h5 {       -webkit-line-clamp: 2;}
.blog_list_ri em {  font-size: 12px;  letter-spacing: 1px;}
.blog_list_ri p { -webkit-line-clamp: 2;  line-height: 140%;  font-size: 14px;}
.blog_list_le {  position: relative;  height: auto;  aspect-ratio: 4/3;   overflow: hidden;}
.blog_list_le img {  min-width: 100%;   display: block;  width: 100%;  margin: 0 auto;  height: 100%;   object-fit: cover;  object-position: center;}
h4.blog_category_title { border-bottom: 1px #e6e6e6 solid;}
.submenu a:hover { background: #666;  color: #FFF;}
.submenu a {  display: block;   position: relative;  color: #666;   padding: 13px 6px 12px 29px;  letter-spacing: 1px;  font-size: 12px;}


.subbox_item a:before, .subbox_item a:after {content: none;}
.subbox_item a:hover .blog_list_le:before, .subbox_item a:hover .blog_list_le:after {  opacity: 1;}
.subbox_item a .blog_list_le:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: all .4s;
}
.subbox_item a .blog_list_le:before {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    content: 'VIEW MORE +';
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 10px black;
    filter: drop-shadow(0px 0px 10px black);
    transform: translate(-50%,-50%);
    width: 148px;
    height: 40px;
    left: 50%;
    top: 50%;
    z-index: 9;
    opacity: 0;
    transition: ease all .4s;}
	
.blog_list_ri h5 {  font-weight: bold;}	

/*內頁*/
.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}
.blog_back a {width: 100%;}
.blog_back a.article_btn_back {  background: #9c7a54  ;}
.blog_page .show_content {  margin: auto;  padding: 30px 30px;  background: #fff;}
.blog_le .accordion li .link:last-child {   border-bottom: 1px solid #eaeaea;}
.link a {  width: 100%;  display: block; }

@media screen and (max-width: 1024px) {
.blog_subbox {  grid-template-columns: 1fr 1fr;}
}


@media screen and (max-width: 600px) {
h5.blog_le_t, .blog_le .accordion {
    display: block;}
}


@media screen and (max-width: 600px) {
.blog_subbox {  grid-template-columns: 1fr;}
}








/*●●●●●●●●●●●●●●●●●●●●●●●●   聯絡我們(表單功能)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*聯絡資訊*/
.contact_page .main_part { max-width: 1350px;}
.contact_content { background: #fff;}
.contact_content .information_left { width: 34%;}
button, input, optgroup, select, textarea {outline: none; padding-left: 15px !important;background: #ededed;}
input[type="checkbox"], input[type="radio"] {margin: 8px;}


.list_before.info li {   padding: 10px 0 15px 90px;     border-bottom: 1px #f5f5f5 solid;}
.innersend {padding-left: 0 !important;text-align: center;}
.TEL:before, .TEL2:before, .PHONE:before, .FAX:before, .TAXID:before, .MAIL:before, .ADD:before, .ADD2:before { 
    width: 44px;    margin-left: 25px;    font-size: 15px;    height: 25px;    border-right: 1px solid #ededed;    letter-spacing: 0.05em;    color: #545454;    font-weight: 500;}
.TEL::after, .TEL2::after, .PHONE::after, .FAX::after, .TAXID::after, .MAIL::after, .ADD::after, .ADD2::after { 
     position: absolute; content: "●";  color: #2B77DA; font-size: 5px;  width: 30px;  height: 17px;  left: 0;  top: 50%; transform: translateY(-50%);}


/*表格樣式*/
.red {color: #998a8a;}
.contact_content .information_right { width: calc(65% - 0px);  padding-left: 30px;}
.contact_form { display: flex; flex-direction: column; flex-wrap: wrap;  justify-content: space-between;    align-s: flex-end;}
.contact_form li { width: 100%;  display: inline-block;  padding: 10px 10px;  border-bottom: none;}
.contact_form li .form__label {text-align: left;margin-left: 0;width: 100%;font-size: 16px;font-weight: 1000;color: #856747;}
.contact_form li.last{width: 100%;}
.noborder {padding: 10px 0;margin-top: 10px;border: 2px solid #ccc;}
.form select {background-color: #fff;border: 2px solid #ccc;padding: 8px 26px 8px 3px;margin-top: 10px;width: 100%;margin-top: 10px;}
.contact_form li.last cite {background: #353739;}
.contact_form li.last blockquote, .contact_form li.last cite { width: 49%; border: 1px #f5f5f5 solid;}
.contact_form li input.noborder { border: 0px #ddd solid; background: #f5f5f5;}
.contact_form li textarea.noborder  { border: 0px #ddd solid; background: #f5f5f5;}
.noborder {padding: 10px 10px;  border-radius: 4px;}

.contact_form {  margin-top: 20px;  margin-bottom: 20px;  font-size: 14px; color: #444;}



@media screen and (max-width: 768px) {
.list_before.info {width: 100%;max-width: inherit;}
.contact_content .information_left { width: 100%;}
.contact_content .information_right { width: 100%;  padding: 0;}
.show_content {padding: 0px; }
/*手機版 輪播圖另外在換圖*/
.swiper-slide{height: 620px;background-position: center center !important;background-size: cover !important;} 
.swiper-slide:nth-child(1){background: url(https://pic03.eapple.com.tw/02-89351802/w1.jpg) no-repeat;}
.swiper-slide:nth-child(2){background: url(https://pic03.eapple.com.tw/02-89351802/w2.jpg) no-repeat;}
.swiper-slide img{display: none;}
}
@media screen and (max-width: 600px) { 
.contact_form li {width: 100%; padding: 10px 0;}
.contact_content > .style1 {display: flex; flex-wrap: wrap-reverse;}/*聯絡資訊-手機版(上下顛倒)*/
.contact_content .information_right { width: calc(100% - 0px);}
.contact_content .information_left {  width: 100%;}
}
@media screen and (max-width: 480px) { 

.information_left, .information_right { padding: 0px;}
.contact_page .main_part {padding: 50px 15px;}
h4.blank_letter.i::after {font-size: 25px; letter-spacing:0px;}
.blank_letter { padding: 30px 0 0 10px;}
.contact_content { padding: 50px 10px;}
}




.show-list .item:hover .overlay ,.pic-list .item:hover .overlay{
  opacity: 0;
    -webkit-transform: scale(0);
     transform: scale(0);
}


.overlay {
    background: rgba(0, 0, 0, .5);
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
   
}
.show-list,.pic-list{   
    display: inline-block;
    vertical-align: top;
    padding: 0px;
    margin: 16px 0.5%;
}
.pic-list .show_pic {
    padding-bottom: 57%;
}

.pic-list{margin: 0px 0.5%;}
.album_info_page .main_part,.album_page .main_part {padding: 40px 10px 10px;text-align: center;}
.other_album_choice li {background: #272423;}
.show-list .item:hover .show_name {color:#9d7b50 !important;}
.show-list .item {
    padding: 0px;
    margin: 8px 0;
	
}
.pic-list .item {
    padding: 0px;
    margin: 2px;
} 

.show-list .show_name {
-webkit-box-orient: unset;}

@media screen and (max-width: 600px) {
.pic-list . {width: 100%;}
.pic-list .item {
    width: 100%;}
.other_album_choice li {
    background: #272423;
    display: block;}
}
