@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 {}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 網頁捲軸設定 */

::-webkit-scrollbar {
    width: 8px;
    background: #fff;
} /* 寬度 */

::-webkit-scrollbar-button {
    background: var(--color3);
    height: 8px;
} /* 滾動條上下箭頭 */

::-webkit-scrollbar-thumb {
    background-color: var(--color3);
} /* 捲軸顏色 */

:-webkit-scrollbar-track-piece {
} /* 捲軸沒有軌道的地方 */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(225, 225, 225, 0.6);
    background-color: #fff;
} /* 捲軸軌道 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* TOP按鈕 */
#to_top {
    left: unset;
    right: 15px;
    font-family: var(--Mainfont);
    color: var(--color1);
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    transition: all .3s;
}
#to_top i.top {
    width: 15px;
    height: 15px;
}
#to_top i.top:before, 
#to_top i.top:after {
    height: 10px;
    background: var(--color1);
}
#to_top i:before {
    transform: rotate(-45deg);
}
#to_top i:after {
    transform: rotate(45deg);
}
#to_top:hover {
    opacity: .7;
    transition: all .3s;
}

/* 手機版置底按鈕 */
/* #bottom_menu li a {
    color: #fff;
}
#bottom_menu li:nth-of-type(1) {
    background: #4D4D4D;
}
#bottom_menu li:nth-of-type(1) a {
    color: #fff;
}
#bottom_menu li:nth-of-type(2) {
    background: #90A183;
}
#bottom_menu li:nth-of-type(3) {
    background: #99C681;
} */


 /* 開啟手機板下方按鈕所需設定 */
@media screen and (max-width: 768px) {
    #to_top { 
    }
    .footer.with_shopping_mode { 
        padding:30px 0 70px; 
    }
    #bottom_menu li:nth-child(1) {
        background: ;
    }
    #bottom_menu li:nth-child(2) {
        background: ;
    }
    #bottom_menu li:nth-child(3) {
        background: ;
    }
    #bottom_menu li a {
        color: ;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 全域設定 */
:root {
    font-family: var(--Mainfont);
    color: var(--color1);
    /* background: var(--color2); */
    line-height: 1.8;
    letter-spacing: 0.1em;
    transition: var(--trans);

    --Mainfont: "Noto Sans TC", sans-serif;
    --color1:#3E3A39;
    --color2:#B5B6B6;
    --color3:#E0B296;
    --color4:#364A66;
    --trans: .5s cubic-bezier(0.97, 0.75, 0.56, 0.85);

    /* font-size: var(--f30);
    font-size: var(--f20);
    font-size: var(--f16); */
    --f60:60px;
    --f47:47px;
    --f40:40px;
    --f36:36px;
    --f34:34px;
    --f32:32px;
    --f30:30px;
    --f28:28px;
    --f26:26px;
    --f24:24px;
    --f22:22px;
    --f20:20px;
    --f19:19px;
    --f18:18px;
    --f17:17px;
    --f16:16px;
    --f15:15px;

    --pd120:120px;
    --pd100:100px;    
}

@media screen and (max-width: 1200px) {
    :root {
        --f60:48px;
        --f34:30px;
        --f30:26px;
                
        --pd120:80px;
        --pd100:60px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --f34:28px;
        --f30:24px;
        --f24:24px;

        --pd120:50px;
        --pd100:40px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --f60:30px;
        --f34:26px;
        --f30:22px;

        --pd120:30px;
        --pd100:20px;
    }
}

body {
    font-family: var(--Mainfont);
    height: 100vh;
    transform-origin: center center; 
/* 1. 核心修正：強制開啟 GPU 加速，避免 CPU 重新計算佈局 */
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: antialiased; /* 優化字體渲染 */
    
    /* 2. 避免邊緣抖動的屬性 */
    transform-style: preserve-3d;
    will-change: filter, transform, opacity;
    
    animation: entrance 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes entrance {
    0% {
        filter: grayscale(100%) blur(20px);
        transform: scale(1.02);
        opacity: 0.6;
    }
    100% {
        filter: grayscale(0%) blur(0px);
        transform: scale(1);
        opacity: 1;
    }
}


/* = = = header = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: sticky;
    top: 0;
    padding: 20px 50px;
    background: transparent;
    transition: 0.5s;
}
.main_header_area .container {  max-width: 100%; width: 100%;}
.navigation{  align-items: start; justify-items: end; padding: 0px;}

/* 產品搜尋欄 */
.me_tp_features {
    width: auto;
    margin-top: 25px;
    order: 1;
}
.box_search input[type=text] {
    background: url(https://pic03.eapple.com.tw/aaa/products_search.svg) no-repeat 9px center #fff;
}
input::placeholder {
    color: rgba(51, 51, 51, 0.5);
}
.box_search input[type=text]:focus {
    color: #333;
}
.fa-cart-shopping::before {
    content: "\f291";
}
.tp_links a {
    color: #fff;
    opacity: .6;
}
.tp_links a.me_tp_mail {
    display: none;
}

/* .stellarnav */
.stellarnav{  width: fit-content;padding-top: 40px;padding-left: 0px; transform: translateZ(0);}
.stellarnav > ul {width: auto; max-width: 160px;}

.stellarnav li { text-align: right;}   
.stellarnav > ul > li {
    display: block;
}     
.stellarnav > ul > li:nth-of-type(4) > ul > li:nth-of-type(1) {
    display: none;
}
.stellarnav > ul > li > a {
    position: relative;
    text-align: left;
    font-family: var(--Mainfont);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.25em;
    line-height: normal;
    height: auto;
    padding: 8px 0;
    margin: 0;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0;
}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav ul ul,
.stellarnav ul ul ul {
  left: unset;  top: 0;  background: transparent;  position: relative;
}
.stellarnav ul ul {
    transition-duration: 0.1s !important;
}
/* 隱藏預設的捲動動畫感 */
.stellarnav ul ul {
    height: 0;
    transition: opacity 0.3s ease, visibility 0.3s !important;
    display: block !important; /* 強制不使用 JS 的 slideDown */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px); /* 稍微位移增加質感 */
    transition: ease-in-out .2s;
}
/* 當父層被點擊/滑入開啟時 */
.stellarnav li.open > ul, 
.stellarnav li:hover > ul {
    height: auto !important;   /* 取消高度變化的動畫 */    
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: ease-in-out .2s;
    animation: fadein .5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes fadein {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.stellarnav li li {
    border: 0;
}
.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 5px 0 5px 17px;
}
.stellarnav li li.has-sub > a:after { float: unset; right: unset; left: 0; right: 0;  border-left: 0;}
.stellarnav li li a {
    font-size: 13px;
    color: rgb(255 255 255 / 50%);
    letter-spacing: 0.15em;
}
.stellarnav ul ul ul {  position: absolute;  right: 100px;}

/* 下滑設定 */
.header_area.sticky {background: transparent;}
/* .header_area.sticky .header_area { padding: 10px 25px 5px;}
.header_area.sticky { background: var(--mainCColor); padding: 10px 20px 5px;}
.header_area.sticky .navigation { grid-template-columns: 200px 1fr;}
.header_area.sticky .stellarnav > ul > li > a { font-size: 15px; margin: 0 15px;} */

/* hover */
.stellarnav * {
    transition: var(--trans);
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    
} /* 主選單一般變色 */
.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 > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a   {
    color: ;
    background: ;
} /* 次分類一般變色 */
.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: 768px) {
    /* 漢堡鈕設定--開始 */
    .stellarnav .menu-toggle span.bars span {
        background: var(--color1);
        margin: 0 0 4px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        background: ;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        /* margin: 0 auto 4px 0; */
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        /* margin: 0 auto 4px 0; */
    }
    .stellarnav .menu-toggle:after {
        color: var(--color3);
    }     
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        display: block;
    }
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close::after {
        width: 25px;
        border-bottom: ;
    }/* 漢堡鈕設定--結束 */


    /* --------選單設定--開始 */
    .stellarnav.mobile.right > ul, 
    .stellarnav.mobile.left > ul {
        border: 0;
        box-shadow: 5px 5px 15px rgb(0 0 0 / 10%);
    }
    /* 叉叉按鈕換邊放--開始 */
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        position: relative;
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        position: static;
    }
    /* 叉叉按鈕換邊放--結束 */
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px ;
    }
    .stellarnav.mobile li a {
        font-size: 15px;
        border: 0;
    }
    .stellarnav.mobile > ul > li > a {
        font-size: 15px;
    }     
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        padding: 10px 10px 10px 40px;
    }
    .stellarnav li li a.dd-toggle .icon-plus:before, 
    .stellarnav li li a.dd-toggle .icon-plus:after {
        border-bottom: solid 2px #777;
    } /* 次次分類的+號顏色 */
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile ul ul {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: #eee;
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle .icon-plus::before,
    .stellarnav.mobile li.open li.open > a.dd-toggle .icon-plus:after {
        border-bottom: solid 2px #777;
    } /* 次次分類展開後的+號顏色 */    
    .stellarnav.mobile ul ul ul {
        background: transparent;
    }
    /* --------選單設定--結束 */

    /* hover--開始 */
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:before, 
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:after {
        border-bottom: solid 1px var(--color1);
    }
    /* .stellarnav.mobile > ul > li > a.dd-toggle:hover .icon-plus:before, 
    .stellarnav.mobile > ul > li > a.dd-toggle.dd-toggle:hover .icon-plus:after {
        border-bottom: solid 1px #fff;
    } */      /* 只對次分類按鈕的叉叉有效果     */
    .stellarnav li li:hover > a, 
    .stellarnav li li > a:hover, 
    .stellarnav.desktop li.has-sub li a:hover, 
    .stellarnav.desktop li.has-sub li:hover > a {
        color: ;
        background: transparent;
    } /* 次分類一般變色 */ /* hover--結束 */
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

/* = = = 大圖 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.bannerindex::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 50%);
    z-index: 9;
}
.bannerindex::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    aspect-ratio: 4 / 3;
    background-image: url(
    https://pic03.eapple.com.tw/moriresearch/bannerindex_logo.svg);
    background-size: contain;
    filter: brightness(0) invert(1);
    z-index: 9;
}
.pageIndex .swiper-banner .swiper-slide img {
    animation: none;
}
.pageIndex .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 50px !important;       /* 距離左邊的距離 */
    bottom: 23% !important;      /* 移至垂直中間附近 */
    transform: translateY(50%);  /* 精準垂直置中 */
    width: auto !important;      /* 取消原本寬度 100% 的設定 */
    display: flex;
    flex-direction: column;      /* 讓內容垂直排列 */
    gap: 12px;                   /* 每一條之間的間距 */
}

/* 2. 調整單個切換條的樣式 */
.pageIndex .swiper-pagination-bullet {
    width: 3px !important;
    height: 50px !important;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    margin: 0 !important;
    display: block;
}

/* 3. 啟動狀態顏色 */
.pageIndex .swiper-pagination-bullet-active {
    background: var(--color3) !important;
}

/* = = = footer = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* .footer_info li p.line:before {
    content: 'Line ID：';
}
.footer_info li p.tel:before {
    content: '電話：';
}
.footer_info li p.phone:before {
    content: '手機：';
}
.footer_info li p.mail:before {
    content: '信箱：';
}
.footer_info li p.fax:before {
    content: '傳真：';
}
.footer_info li p.taxid:before {
    content: '統編：';
}
.footer_info li p.add:before {
    content: '地址：';
} */
.footer .center {
    padding: 0 2%;
}
.box_link {
    display: none;
}
.footer_info li p,
.footer_info li p a {
    color: ;
}
.footer_info li p {
    line-height: 220%;
}
.footer_menu a {
    border: 0;
    background: transparent;
}
.copy, 
.copy a {
    color: ;
}
.privacyLinks a+a {
    border-left: 1px solid #cccccc;
}

/* hover */
.footer * {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_info li p a:hover {
    opacity: .7;
}
.footer_menu a:hover {
    background: transparent;
    color: #777777;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 768px) {
    
}

/* = = = 功能頁-總設定 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.lastPage,
.lastPage:hover {
    transition: var(--trans);
}
.lastPage:hover {
    opacity: .7;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

/* 首頁文章管理 */
.i_blog_ri h5 {
    color: var(--color2);
}
.i_blog_ri em {
    font-size: 11px;
}
.i_blog_ri p {
    font-size: 14px;
    color: var(--color1);
    line-height: 160%;
}

/* ----blog_page---- */

/* 文章分類 */
h5.blog_le_t {
    display: none;
}
.blog_search input[type=submit] {
    width: 50px;
    height: 42px;
    background: url(https://pic03.eapple.com.tw/aaa/article_search.svg) no-repeat center center;
}
.blog_le .accordion li .link i {
    font-size: 12px;
}
.blog_le .accordion li.open .link i {
    color: var(--color1);
} /*分類展開的箭頭顏色 */
.accordion li .link a,
.submenu a {
    letter-spacing: .05em;
}
.submenu a {
    padding: 8px 12px;
}
.submenu a i {
    display: none;
}


/* 文章分類 - hover */
.blog_le .accordion > li.on_this_category {
    color: var(--color2) !important;
    background: transparent !important;
} /* 當前分類 */
.blog_le .accordion > li:hover {
    color: var(--color2);
    background: transparent !important;
} /* 點擊分類 */
.blog_le .accordion > li:hover .link {
    color: var(--color2) !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a {
    color: var(--color2) !important;
}
.blog_le .accordion > li.on_this_category .link i {
    color: var(--color2) !important;
} /* 當前分類 */
.blog_le .accordion > li:hover .link i {
    color: var(--color2) !important;
} /* 點擊分類 */
.submenu li.on_this_category a, 
.submenu a:hover {
    color: var(--color2);
    background: transparent;
    padding-left: 30px;
} /*點擊子分類 */

/* 文章列表 */
.blog_page h4.blog_category_title {
    display: none;
}
.blog_list_le {
    overflow: hidden;
}

/* hover */
.fa-chevron-down::before,
.blog_le .accordion li.open i.fa-chevron-down::before {
    transition: all .3s;
}
.blog_le .accordion li.open i.fa-chevron-down::before {
    content: "\f078";
    transform: rotate(-180deg);
}

/* ----blog_in_page---- */
h4.blog_category_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color1);
}
.blog_shareData {
    flex-direction: row;
}
.blog_back {
    max-width: 500px;
    margin: 4% auto 2% auto;
}
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
}
.news_related {
    padding: 50px 15px 25px 15px;
}
.news_related h6 span:before {
    font-weight: 600;
}
.news_related_list li a {
    background: transparent;
}
.news_related_list li a p {
    font-family: var(--Mainfont);
    font-size: 16px;
    font-weight: 600;
    color: var(--color1);
    text-align: left;
    line-height: 1.5;
    margin-top: 15px;
}

/* ----blog_in_page--hover---- */
.news_related_list * {
    transition: var(--trans);
}
.blog_back a,
.blog_back a:hover {
    transition: var(--trans);
}
.blog_back a:hover {
    opacity: .7;
}

@media screen and (max-width: 960px) {
    .subbox_item {
        border: 0;
    }
}

@media screen and (max-width: 768px) {
    .blog_search input[type=search] {
        -webkit-appearance: none;
        background: transparent;
    }
}

@media screen and (max-width: 600px) {
    .blog_list_le {
        overflow: unset;
    } 
}

@media screen and (max-width: 480px) {   
    .blog_list_ri h5 {
        font-size: 18px;
    }
}

/* = = = 聯絡我們 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.blank_letter {
    font-family: var(--Mainfont);
}

/* 左-聯絡資訊 */
.list_before {
    color: var(--color1);
}

/* 右-表單 */
.contact_content .information_right {
    width: calc(100% - 310px);
}
.contact_form {
    color: var(--color1);
}
.contact_form li .form__label {
    text-align: left;
}
.noborder:focus {
    outline: none;
}
.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border-radius: 0;
}
.form select {
    border-radius: 0;
}

/* 送出按鈕 */
.contact_form li.last blockquote, 
.contact_form li.last cite {
    width: 180px;
}
.contact_form li.last blockquote input {
    padding: 7px 30px;
}
.contact_form li.last cite input {
    padding: 7px 35px;
}

/* 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: 600px) {
    .contact_form li .form__label {
        font-weight: normal;
        background: transparent;
        padding: 0;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1500px;}

.product_page .show_content,
.product_info_page .show_content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; width: 100%;}
ul.page { width: 100%;}

.ProdFilter_Item_Show { width: 100%;}
.Prods_Menulists { width: 100%; padding: 0;}
.Prods_Wrap { width: calc(100% - 270px);}

/* 篩選器-左手邊 / 產品分類-上面
.ProdFilter_ { order: 2;}
.Prods_Menulists { order: 1;}
.Prods_Wrap { order: 3;}
.ProdFilter_ { width: 250px; letter-spacing: 1px;}
.ProdFilter_ li { width: 100%;}
.ProdFilter_ li > a { background: #f3f3f3; border: none; border-bottom: 3px #ddd solid;}
.ProdFilter_ dl { position: static; width: 100%; display: block;}
*/

/* 產品分類-左手邊 / 篩選器-上面 */

.ProdFilter_ { order: 1; margin-bottom: 25px;}
.Prods_Menulists { order: 2;}
.Prods_Wrap { order: 3;}
.Prods_Menulists { width: 250px; letter-spacing: 1px;}
.Prods_Menulists ul {}
.Prods_Menulists > ul > li { width: 100%; flex-wrap: wrap;}
.Prods_Menulists ul ul { position: static; border: none;}
.Prods_Menulists ul li ul li {}
.Prods_Menulists li.has-sub.open > a {}

.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;}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
.product_main { display: block; width: 100%;}    
.sidebarBtn { display: block; width: 100%;}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
/* 篩選器-左手邊 / 產品分類-上面
.Prods_Wrap { width: 100%;}
.ProdFilter_ { width: 100%;}
.ProdFilter_Item_Show { width: calc(100% - 110px);}
.ProdFilter_ { order: 1;}
.Prods_Menulists { order: 2;}
.ProdFilter_ li > a span { color: #333;}
*/

.Prods_Wrap { width: 100%; margin-top: 20px;}
.ProdFilter_ { width: 100%;}
.Prods_Menulists { opacity: 0; display: none;}

}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img { transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide img { transition: transform 5s ease-out; will-change: transform; transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide-active img { transform: scale(1.06);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------內頁BANNER 設定----------*/

.banner {
    height: 26vw;
    background-image: url(https://pic03.eapple.com.tw/aaa/aaa.jpg);
	background-size: cover;
    background-repeat: no-repeat;
}
.banner h5 {
    font-family: var(--Mainfont);
}
.banner h5:after {
    content: "";
    display: block; 
    position: relative;       
    font-size: 18px;
    font-weight: 600;   
    text-transform: uppercase; /*全大寫*/
    text-transform: capitalize; /*第一個字母大寫*/    
    text-transform: lowercase; /*全小寫*/
}

/*促銷方案 & 下拉編輯頁*/
.banner.banA {}

/*編輯頁*/
.banner.banB {}

/*聯絡我們*/
.banner.banC {}

/* 匯款通知 */
.banner.banD {}

/*相簿管理/作品展示*/
.banner.banE {}

/*商品展示*/
.banner.banF {}

/*文章管理*/
.article_a .banner.banblog {}

/*設計作品管理*/
.banner.banDesign {}
.banner.banDesign_c {}

@media screen and (max-width: 768px) {
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




