@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}
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family:"Montserrat","Noto Sans TC", sans-serif;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {
    background-color: #00A8E9;
    color: #fff;
}

::selection {
    background-color: #00A8E9;
    color: #fff;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* 基礎樣式 */
.pageIndex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

/* banner01 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    background-image: url(https://pic03.eapple.com.tw/baiyungo168/bg-01.png);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s, 
                opacity 0.8s ease 0.2s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* banner02 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    background-image: url(https://pic03.eapple.com.tw/baiyungo168/bg-02.png);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s, 
                opacity 0.8s ease 0.2s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* 脈動動畫 - 獨立圖層避免衝突 */
.pageIndex .bannerindex .swiper-slide-active:before{    
    animation: subtlePulse 3s ease-in-out infinite 1s;
}
    
/* 動畫 */

/* 修正脈動動畫：僅影響 scale，絕對不改變位置 */
@keyframes subtlePulse {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, 0, 0) scale(1.05); }
}

/* 非 Active 狀態：強制重置 */
.pageIndex .bannerindex .swiper-slide:not(.swiper-slide-active):before
 {
    transform: translate3d(0, 100px, 0) !important;
    opacity: 0 !important;
    animation: none !important;
    transition: none !important;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 90%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 90%;
    transition: all 0.3s;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    display: none;
}

.nav-header {
    max-width: 300px;
    position: absolute;
    top: 50%;
    z-index: 98999999;
    transform: translate(0, -50%);
    transition: all 0.5s;
}

.sticky .nav-header {
    max-width: 290px;
    top: 50%;
    transition: all 0.5s;
}

.nav-header::before {}

.pageIndex .nav-header::before {
    top: -100px;
    opacity: 0;
    transition: all 0.3s;
    transition-delay: 0.5s;
}

.pageIndex .main_header_area {
    background: linear-gradient(180deg, #000000a3, transparent);
    box-shadow: none;
    position: relative;
}


.sticky .nav-header::before {
    top: 50%;
    opacity: 1;
    transition: all 0.3s;
    /* transition-delay: 0.5s; */
}

.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    background-color: #215b6d;
    transition: all 0.3s;
    transition-delay: none;
}





@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@media screen and (max-width: 1200px) {
.nav-header {
        max-width: 250px;
    }

    .sticky .nav-header {
    max-width: 240px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-header {
        max-width: 230px;
    }

    .sticky .nav-header {
    max-width: 220px;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 95%;
    }

}




.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: transparent;
}

.header_area .main_header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0;
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 5px #00000066;
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1.55);
}

.header_area .main_header_area::before {
    top: -160px;
}

.header_area.sticky .main_header_area::before {
    height: 100%;
    top: 0;
    transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li>a {
    padding: 0px 15px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
}


.pageIndex .stellarnav>ul>li>a {
    color: #fff;
}


.sticky .stellarnav>ul>li>a {
    color: #000;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    font-weight: 500;
    transition: all 0.5s;
}


.stellarnav>ul>li>a:hover {
    transition: all 0.5s;
    color: #C2A96D;
}

.stellarnav > ul > li:nth-of-type(1) > a:hover, .stellarnav > ul > li:nth-of-type(3) > a:hover , .stellarnav > ul > li:nth-of-type(5) > a:hover{
    color: #00A8E9;
    transition: all 0.5s;
}

.stellarnav > ul > li:nth-of-type(2) > a:hover, .stellarnav > ul > li:nth-of-type(4) > a:hover , .stellarnav > ul > li:nth-of-type(6) > a:hover {
    color: #F3A000;
    transition: all  0.5s;
}

.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #00A8E9;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease-in-out;
}
.stellarnav > ul > li:hover:before {
    transform: scaleX(1); 
}
.stellarnav > ul > li:nth-of-type(1):before , .stellarnav > ul > li:nth-of-type(3):before , .stellarnav > ul > li:nth-of-type(5):before {
    background-color: #00A8E9;
}
.stellarnav > ul > li:nth-of-type(2):before , .stellarnav > ul > li:nth-of-type(4):before , .stellarnav > ul > li:nth-of-type(6):before {
    background-color: #F3A000;
}

.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 15px 0;
    opacity: 1;
    transition: all 0.3s;
    justify-content: flex-end;
}

.pageIndex .header_area .navigation {
    padding: 40px 0;
}

.header_area.sticky .navigation {
    padding: 15px 0;
    opacity: 1;
    transition: all 0.5s;
    transition-delay: 0.5s;
}



/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #2B3047;
    ;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.stellarnav ul ul{background: #0049ab;}

.stellarnav li li {
    border: none;
}

.stellarnav > ul > li.has-sub > ul a {
    padding: 10px 15px;
    color: #fff;
    font-size: 13px;
}

.stellarnav > ul > li > ul a {
    border-bottom: none;
    font-weight: 300;
    transition: all .5s;
}

.stellarnav > ul > li.has-sub > ul a:hover {
    padding: 10px 10px 10px 20px;
    background: #00a8e9;
}

/*隱藏下拉第一個*/
.stellarnav > ul > li:nth-child(4) li:nth-child(1) {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100%;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    width: 100%;
    transition: all 0.5s;
}

.pageIndex .header_area .nav-brand img {
    filter: contrast(0) brightness(100);
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area .nav-brand img {
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    filter: none;
    transition: all 0.3s;
}


@media screen and (max-width: 1440px) {

.header_area .main_header_area .container {
    max-width: 95%;
}

.stellarnav>ul>li>a{
    margin: 0px;
}

}


@media screen and (max-width: 1200px) {

.stellarnav>ul>li>a {
margin: 0px;
padding: 0 10px;
letter-spacing: 1.5px;
}
.stellarnav > ul > li.has-sub > a {
padding-right: 10px;
}
.header_area .navigation {
    flex-direction: column;
    align-items: center;
}

.nav-header {
    position: relative;
    top: 0px;
    transform: none;

}
.header_area .main_header_area::before {
    top: -231px;
}

.stellarnav ul {
    text-align: center;
    padding: 20px 0px 0px;
}

.header_area.sticky .navigation {
    padding: 25px 0 10px;
}


.pageIndex .main_header_area {
    background: linear-gradient(180deg, #000000a3, transparent);
}

.pageIndex .header_area.sticky .main_header_area {
height: 100%;
}

.pageIndex .header_area .navigation {
padding: 30px 0 5px;
}

.pageIndex .stellarnav ul {
transition: all 1s;
opacity: 0;
pointer-events: none;
    }

.pageIndex .header_area.sticky .stellarnav ul {
transition: all 1s;
opacity: 1;
pointer-events: all;
    }

.main_header_area {
    background: linear-gradient(180deg, #000000a3, transparent);
}

.header_area.sticky .main_header_area {
height: 100%;
}

.header_area .navigation {
padding: 30px 0 5px;
}

.stellarnav ul {
transition: all 1s;
opacity: 0;
pointer-events: none;
    }

.header_area.sticky .stellarnav ul {
transition: all 1s;
opacity: 1;
pointer-events: all;
    }
.stellarnav > ul > li:before {
    bottom: -10px;
}

}

@media screen and (max-width: 900px) {
    .stellarnav>ul>li>a{
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {



    .header_area.sticky .main_header_area::before {
        height: 95px;
        top: 0px;
        background: #fff;
        transition: all .3s;
    }

    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav.mobile {
        top: 9px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #ff8f4b;
    }

    .stellarnav .menu-toggle:after {
        color: #ff8f4b;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }
.stellarnav > ul > li.has-sub > ul a {
    padding: 10px 15px;
    color: #00a8e9;
    font-size: 13px;
}
.stellarnav > ul > li.has-sub > ul a:hover {
    padding: 10px 10px 10px 20px;
    background: transparent;
}
    .pageIndex .header_area.sticky .stellarnav ul {
        padding-top: 0;
    }
    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #00a8e9;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        color: #666;
        text-shadow: none;
        padding: 15px 10px;
    }

    .nav-brand {
        display: inline-block;
        width: 220px;
    }

    .header_area .nav-brand {
        width: 150px;
    }

    .header_area .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .stellarnav>ul {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #00a8e9;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 43px 25px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0;
        position: absolute;
        top: 20px;
    }

    .stellarnav ul {
        padding-top: 0px;
    }

    .stellarnav.mobile.left>ul {
        left: 0;
        padding: 0;
        border: 0;
        max-width: 400px;
        border-right: 1px solid #ebebeb;
    }
.stellarnav.mobile li.open>a {
    padding-bottom: 15px;
}
    .stellarnav.mobile li.open {
        background: transparent;
        padding-bottom: 20px;
    }

    .stellarnav.mobile li.open ul {
    background: aliceblue;
    margin: 10px;
    border-radius: 10px;
}

    .stellarnav li li:hover {
        background: inherit;
        border-radius: 0;
        color: inherit;
        transform: none;
        box-shadow: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .stellarnav li li:hover>a {
        color: inherit;
        transition: all 0.3s;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 43px 15px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav li li a {
        padding: 15px 15px;
        color: #666;
    }

    .nav-header {
        position: absolute;
        left: 50%;
        top: 50px;
        transform: translate(-50%, -50%);
        z-index: 0;
        transition: all 0.5s;
    }

    .header_area .nav-brand {
        width: 200px;
    }

    .header_area .navigation {
        padding: 0px 0;
    }

    .header_area.sticky .navigation {
        padding: 0px 0;
    }

    .header_area.sticky .nav-brand {
        width: 230px;
        transition-delay: 1s;
        transition: all 1s;
    }

    .nav-header::before {
        top: -120%;
        width: 90%;
        height: 100px;
    }

    .sticky .nav-header {
        top: 50px;
        transition: all 0.5s;
    }

    .stellarnav .menu-toggle {
        padding-top: 20px;
        opacity: 0;
        transition: all .3s;
        pointer-events: none;
    }

    .header_area.sticky .stellarnav .menu-toggle {
        pointer-events: all;
        opacity: 1;
        transition: all .3s;
    }
    .stellarnav > ul > li:before{
        display: none;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer { background: #fff; padding: 70px 0 0; border-top: 1px solid #cbcbcb;}
.footer .center { max-width: 100%; padding: 0 60px;}

/*icon*/
.box_link { position: relative; top: -70px; right: 0px;  width: 100%; max-width: 100%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap; flex-direction: row; max-height: 100%; order: 3;}
.box_link a { width: fit-content;  border: unset;  padding: 5px 8px; font-size: 20px; color: #6a6a6a;}
.box_link a:hover { color:  #00A8E9;}

.footer_info { padding-right: 0px;}
.footer_info ul {position: relative; display: flex; width: 100%; justify-content: space-around;}
.footer_info ul li:nth-child(1):before {
    content: "CONTACT US"; font-size: 20px;color: #FF8F4B; left: 10px; top: 0%; position: absolute;  letter-spacing: 1px;font-weight: 800;}
.footer_info ul { display: flex; width: 100%; justify-content: flex-end;}
.footer_info li:nth-child(1) {
    position: relative;
    padding-top: 40px;
    width: 100%;
    max-width: 400px;
}.footer_info li:nth-child(2) {
    width: 100%;
    max-width: 450px;
}
.footer_info li p { line-height: 250%; letter-spacing: 1px; color: #000;}
.footer_info li p > a { color: #444;}
.footer_info li p:hover a {color: #00A8E9;}
.footer_menu { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; position: relative;  padding-top: 30px;}
.footer_menu:before { content: "LINK"; font-size: 20px; color: #FF8F4B; left: 0px; top: 0%; transform: translateY(-50%); position: absolute;font-weight: 800;letter-spacing: 1px;}
.footer_menu a { display: inline-block; padding: 5px 7px 5px 15px; border: unset; margin: 0 0px 5px 0; font-size: 14px; position: relative; line-height: 100%;
    color: #000; background: transparent;  width: 46%; letter-spacing: 2px; transition: 0.5s;}

.footer_menu a:before { content: ""; background: #000; width: 5px;height: 5px;position: absolute; left: 0; top: 50%; transform: translateY(-50%);}
.footer_menu a:hover { background: transparent; color: #00A8E9; letter-spacing: 4px;}
.copy { text-align: center; padding: 15px 0 15px; font-size: 13px; color: #fff;  border-top: 1px solid #b9c4c9; margin: 0; background: #0049AB;}
.copy a { color:  #fff;}
.copy a:hover { color: #FF8F4B;}

/*改字*/
.footer_info li p.add2:before {content: '營業時間：';}

/*隱藏*/
.footer_info li p.mail,.footer_info li p.add {display: none;}

/*icon隱藏*/
.box_link a.me_tp_call,.box_link a.me_tp_mail { display: none;}

/*回首頁隱藏*/
.footer_menu a:first-child {display: none;}

@media screen and (max-width: 1200px) {
  .footer_info {
    display: flex;
    flex-direction: column;
  }
  .footer_info ul {
    justify-content: flex-start;
  }
  .box_link {
    top: -20px;
  }
}

@media (max-width: 992px) {
  .footer .center {
    padding: 0px 10px;
  }
  .footer_info li:nth-child(1) {
    max-width: 500px;
  }
  .footer_info li:nth-child(2) {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .footer_info ul {
    flex-direction: column;
  }
  .footer_info ul li:nth-child(1):before {
    top: 25%;
    left: 0px
  }
  .footer_info li:nth-child(1) {
    padding-top: 85px;
  }
  .footer_menu {
    padding-top: 60px;
  }
  .footer_menu:before {
    top: 20%;
  }
  .box_link {
    top: 0px;
    position: absolute;
    padding-right: 20px;
    justify-content: flex-end;
  }
  .copy {
    margin-top: 60px;
  }
  .footer_menu {
    justify-content: flex-start;
}
}

@media (max-width: 400px) {
    .footer_menu a{
    width: 100%;
    }
    .footer_menu:before {
    top: 10%;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*側邊浮動按鈕*/
.linksBtn {  background-color: #00A8E9;}
.info_fix:hover>.linksBtn {background: #0049AB;}
.info_fix_links a:hover {background: #FF8F4B;}

/*隱藏*/
.info_fix_links a.info_fix_default.info_fix_mail {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.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: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {    
    background: url(https://pic03.eapple.com.tw/baiyungo168/banner-01.jpg);
    position: relative;
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: bn_ing 2.5s ease backwards;
}
.banner h5 {
    font-size: 40px;
    color: #ffffff;
    position: relative;
    letter-spacing: 3px;
    animation: slide-top 1.5s 0.5s both;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    display: block;
    padding-top: 0px;
    font-weight: bold;
    z-index: 1;
}

.banner h5::after {
    content: "Our Camp";
    font-family: "Montserrat", sans-serif;
    font-size: clamp(20px, 5vw, 72px);
    color: #ffffff3d;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    text-transform: uppercase;
    font-weight: 800;
    z-index: -1;
}

.services_page .banner h5:after {
    content: "Services & Process";
}

.other_page .banner h5:after {
    content: "Services & Process";
}

.blog_page.article_a .banner h5:after {
    content: "News";
}

.blog_in_page.article_a .banner h5:after {
    content: "News";
}

.album_page .banner h5:after,
.album_class_page .banner h5:after,
.album_info_page .banner h5:after {
    content: "Projects";
}

.blog_page.article_b .banner h5:after {
    content: "Packing Guide";
}

.blog_in_page.article_b .banner h5:after {
    content: "Packing Guide";
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


@keyframes slide-top {
    0% {-webkit-transform: translateY(80%); transform: translateY(80%); opacity: 0;}
    100% { -webkit-transform: translateY(30%); transform: translateY(30%); opacity: 1;}
}

@keyframes bn_ing {
    0% {filter: blur(5px); transform: translateY(-10px);}
    100% {filter: blur(0px); transform: translateY(0px);}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他頁面*/
.path {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/*文章一-最新消息*/
.article_a .show_content.blog_box {padding-top: 40px;}

/* 左側分類欄位 = = */
.article_a .blog_le {position: relative;width: 100%;padding: 0;z-index: 1;margin: 0;}
.article_a h5.blog_le_t {text-align: center;padding: 20px;padding-top: 15px;padding-bottom: 15px;width: 100%;margin: 0 0 40px;display: none;}
.article_a h5.blog_le_t em {font-weight: 500;font-size: 30px;letter-spacing: 3px;color: #000;text-align: center;font-family: var(--SFont);}
.article_a .blog_search {display: none;}
.article_a .blog_search input[type=search] {color: #999;border: 0;background: #eee;border-radius: 0;padding: 10px 40px 10px 10px;}
/* deco */
.article_a .blog_le::before, .article_a .blog_le::after, .article_a .blog_le .accordion::before, .article_a .blog_le .accordion::after {content: '';display: block;position: absolute;
background-color: #fff;z-index: 1;}
.article_a .blog_le::before {width: 100%;height: 1px;top: 0;left: 0;transform: scale(1.04, 1) translateX(-.3px);}
.article_a .blog_le::after {width: 1px;height: 100%;top: 0;left: 0;transform: scale(1, 1.08) translateY(-3px);}
.article_a .blog_le .accordion::before{width: 1px;height: 100%;top: 0;right: 0;transform: scale(1, 1.1) translateY(1.5px);}
.article_a .blog_le .accordion::after{width: 100%;height: 1px;bottom: 0;left: 0;transform: scale(1.02, 1) translateX(.3px);}
/* 分類列 */
.article_a .blog_le .accordion {border-radius:15px; font-size: 0;padding: 0;background: #F2F4F5;border-top: 1px solid #e7e7e7;border: 0;display: flex;justify-content: center;align-items: center;gap: 0;}
.article_a .blog_le .accordion li {transition: .3s ease-out;border: 0;position: relative;overflow: unset;height: fit-content;display: flex;max-height: fit-content;flex-direction: column;}
.article_a .accordion li .link {position: relative;width: 100%;display: flex;flex-direction: row;justify-content: space-evenly;align-items: center;border: 0;}
.article_a .accordion li+li .link {border-top: 0;}
.article_a .accordion li + li a::before {content: "";outline: 0;position: absolute;top: 50%;-webkit-transform: translate(0, -50%);transform: translate(0, -50%);left: 0;z-index: 1;width: 1px;height: 30px;
background-color: #dddddd;}
.article_a .accordion li .link a {color: #3D3D3D; text-align: center;line-height: 1.6;font-weight: 400;margin: 0;padding: 15px 40px;font-size: 16px;letter-spacing: 2px;border: 0;
border-bottom: 2px solid transparent; height: auto;transition: all 0.5s ease-out;}
/* 分類2層-OFF */
.article_a .submenu {font-size: 14px;opacity: 1;width: 100%;border: 0;}
.article_a .submenu li+li {border-top: 1px solid #ccc !important;}
.article_a .submenu a {color: #666;word-break: break-all;line-height: 1;padding: 12px 20px 12px 30px;height: fit-content;font-size: 13px;}
.article_a .submenu a i {left: 10px;font-size: 13px;}
.article_a .submenu li.on_this_category a, .submenu a:hover {color: #FFF;}
/* 當前頁面 */
.article_a .blog_le .accordion > li.on_this_category .submenu {display: none !important;height: 100%;}
.article_a .blog_le .accordion > li.on_this_category.open .submenu {display: block !important;height: 100%;}
.article_a .blog_le .accordion > li:hover .link i, .article_a .blog_le .accordion > li.on_this_category .link i {color: #444 !important;}
.article_a .blog_le .accordion > li.on_this_category{background: transparent !important;}
.article_a .blog_le .accordion > li.on_this_category:hover {color: #3C3C3C !important;}
.article_a .blog_le .accordion > li:hover {background: transparent !important;}
.article_a .blog_le .accordion > li.on_this_category .link a, .article_a .blog_le .accordion > li:hover .link a {color: #3C3C3C !important;border-bottom-color: #FF8F4B;}


/* 右側圖文區 = = */
.article_a .blog_ri {width: 100%;padding: 0;margin: 0 auto;margin-top: 20px;display: flex;flex-direction: column;}
.article_a h4.blog_category_title {width: fit-content;font-weight: 600;letter-spacing: 1px;margin: 0;}
/* 圖文區塊 */
.article_a .blog_subbox {grid-template-columns: repeat(1, 1fr);width: 100%;gap: 0;}
.article_a .subbox_item {border-radius: 0;overflow: hidden;transition: .5s ease-out;margin: 0;padding-bottom: 30px;}
.article_a .subbox_item:hover {transition: .5s ease-out;}
.article_a .subbox_item a {gap: unset;display: flex;}
.article_a .subbox_item a:after, .article_a .subbox_item a:before {content: none;}
/* 圖 */
.article_a .blog_list_le {overflow: hidden;aspect-ratio:125/74;background-color: #121212;width: 375px; position: relative;}
.article_a .blog_list_le img {transition: .5s ease;box-shadow: 6px 6px 0 rgba(0, 0, 0, .04);}
.article_a .subbox_item a:hover img {transition: 0.5s;opacity: 0.4;transform: scale(1.05);}
.article_a .subbox_item a:hover .blog_list_le::before{opacity: 1;transition: 0.5s;transform: translateX(-50%) translateY(-50%) scale(1);}
.article_a .blog_list_le::before {content: "MORE +";position: absolute;line-height: 1.5;left: 50%;top: 50%;z-index: 99;transform: translateX(-50%) translateY(-50%) scale(0);
display: block;padding: 10px 20px 7px;font-size: 14px;font-weight: 400;letter-spacing: 1.5px;color: #fff;border: 2px solid #fff;opacity: 0;transition: all 0.5s ease;}
/* 文字 */
.article_a .blog_list_ri {display: flex;flex-direction: column;justify-content: center;
margin: 0;padding: 10px;width: calc(100% - 375px - 30px);margin-left: 30px;padding-left: 0;max-width: 100%;overflow: hidden;}
.article_a .blog_list_ri h5 {line-height: 1.6;font-size: 20px;text-align: left;color: #3C3C3C; font-weight: 500;letter-spacing: 1px;margin: 5px 0;padding-bottom: 5px;border-bottom: 1px solid #DADADA;}
.article_a .subbox_item a:hover .blog_list_ri h5 {color: #FF8F4B;}
.article_a .blog_list_ri em {font-size: 14px;color: #aaa;margin: 10px 0 0;padding: 5px 0;letter-spacing: 0.04em;}
.article_a .blog_list_ri em {margin: 0;padding: 0;position: relative;margin-left: -45px;order: -1;color: #B1B1B1; letter-spacing: 1px;}
.article_a .blog_list_ri p {font-size: 14px;letter-spacing: 1px;line-height: 1.6;font-weight: 400;color: #666;margin: 10px 0;}


/*文章二-搬家知識打包技巧*/
.article_b .main_part { max-width: 1600px; margin: auto; padding: 50px 20px 100px;}
.article_b .module_i_news_list.swiper { padding: 65px 20px;}
.article_b .subbox_item a {grid-template-columns: 1fr; grid-gap: 15px;}
.article_b .blog_list_le {aspect-ratio: 16 / 9;position: relative;}
.article_b .blog_list_ri h5 {letter-spacing: 1px; color: #3C3C3C;}
.article_b .blog_list_ri em { color: #B1B1B1; margin: 5px 0 15px; padding-bottom: 15px;}
.article_b .blog_list_le img {transition: 0.5s;}
.article_b .subbox_item a:before ,.article_b .subbox_item a:after{display: none;}

/*hover*/
.article_b .subbox_item:hover .blog_list_le img { transform:scale(1.1);  transition: 0.8s;}
.article_b .i_blog_le:before , .article_b .blog_list_le:before { content: 'READ MORE'; position: absolute; z-index: 19; bottom: 0px;  right: 0px;  opacity: 0; text-align: center;
font-size: 12px; color: #eeeeee; background: #FF8F4B; padding: 14px 15px; transition: all .6s;}
.article_b .subbox_item:hover .blog_list_le:before {  opacity: 1; transition: all .5s; border-radius: 15px 0 0 0;}

/*按鈕*/
.article_b .i_blog_b { margin: -80px auto 0 0; text-align: center; order: 3;position: relative; overflow: hidden;}
/*.i_blog_b a i.fa-solid.fa-arrow-right { display: none;}
.fa-arrow-right::before { display: none;}*/
.article_b .i_blog_b a { background: transparent; width: fit-content;  margin-top: 0;  letter-spacing: 2px;  line-height: 60px;  height: auto;  display: block;  color: #6a6a6a;}

/*列表*/
.article_b .blog_le {  width: 220px;  position: sticky;  top: 100px;  margin-bottom: 0px; height: 500px;}
.article_b .blog_list_le { overflow: hidden; border-radius: 15px;}
.article_b .blog_ri { padding: 0 0 0 100px;}
.article_b .blog_subbox { grid-template-columns: repeat(auto-fill,minmax(350px, 1fr));}
.article_b .accordion li+li .link { border-top: 1px solid #DADADA;}





/*側邊*/
.article_b h5.blog_le_t { margin-bottom: 13px;}
.article_b .blog_search { margin-bottom: 50px;}
.article_b .blog_search input[type=search] { border: unset; border-bottom: 1px solid;  border-radius: 0px;}
.article_b .blog_le .accordion { border-radius: 0px;border: 1px  #DADADA solid; border-radius: 5px;}
.article_b h5.blog_le_t { display: flex; flex-direction: column-reverse; color: #2F2F2F;  letter-spacing: 5px;}
.article_b h5.blog_le_t span { font-size: 50px;}
.article_b h5.blog_le_t em {  font-size: 19px;  letter-spacing: 3px; padding-top: 5px; font-weight: 300; display: none; }
.article_b .accordion li .link a { color: #2f2f2f;letter-spacing: 1px;font-weight: 500;}

/*顏色*/
.article_b .blog_le .accordion > li:hover, .article_b .blog_le .accordion > li.on_this_category { background:#0049AB !important;}


/*文章內層/ = = = = */
.blog_in_page h5.blog_le_t em {}
.blog_in_page .blog_ri {
width: 100%;
display: block;
padding: 0;
margin: auto;
min-height: fit-content;
}
.blog_in_page h4.blog_category_title {
width: 100%;
font-size: 28px;
letter-spacing: 0.08em;
margin-bottom: 0;
text-align: left;
padding: 30px 0 0;
}
.articel_mainPic {
    display: none;
}

/* 上下篇按鈕 */
.blog_back {
align-items: center;
/* border-top: 1px solid #cecece; */
padding: 40px 0;
display: flex;
-ms-flex-wrap: wrap;
gap: 10px;
}
.blog_back a {
font-size: 13px;
letter-spacing: 0.08em;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next, .blog_back a.article_btn_back {
background: #eee;
background: transparent;
transition: .5s ease;
height: 45px;
width: 180px;
font-weight: 300;
line-height: 43px;
padding: 0 20px;
position: relative;
border-radius: 4px;
border: 1px solid #c2c2c2;
color: #666;
display: block;
font-size: 15px;
padding: 0 20px;
position: relative;
}
.blog_back a.article_btn_prev {
text-align: right;
}
.blog_back a.article_btn_prev:before, .blog_back a.article_btn_next:before{
content: "";
width: 10px;
height: 10px;
border-left: 1px solid #9e9e9e;
border-bottom: 1px solid #9e9e9e;
display: block;
position: absolute;
top: calc(50% - 5px);
}
.blog_back a.article_btn_prev:before{
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
left: 15px;
}
.blog_back a.article_btn_next:before{
-webkit-transform: rotate(-135deg);
transform: rotate(-135deg);
right: 15px;
}
.blog_back a.article_btn_next {
margin-left: auto;
text-align: left;
}
.blog_back a.article_btn_back {
background: transparent;
transition: .5s ease;
margin-inline-start: auto;
}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover{
border: 1px solid #FF8F4B;
background: #FF8F4B;
color: #fff;
}

.blog_back a.article_btn_back:hover{
border: 1px solid #0049AB;
background: #0049AB;
color: #fff;
}

.blog_back a.article_btn_prev:hover:before, .blog_back a.article_btn_next:hover:before  {
border-left: 1px solid #fff;
border-bottom: 1px solid #fff;
}

/*文章二-文章內層*/
.blog_in_page.article_b .main_part {
    max-width: 1300px;
}
.article_b .blog_ri {
    padding: 0 0 0 100px;
    width: calc(100% - 240px);
    min-height: 75vh;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 2vw;
}

/* 分享按鈕 = = */
.blog_shareData {
border: 1px solid #ccc;
align-items: center;
align-content: center;
flex-wrap: wrap;
flex-direction: row;
margin-bottom: 20px;
width: fit-content;
padding: 10px;
border-radius: 5px;
margin: 0;
display: none;
}
.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
font-weight: 400;
font-size: 14px;
color: #333;
}
.toShareNews a object {
filter: grayscale(1) brightness(1) contrast(1);
}
.toShareNews > a:hover > object {
filter: none;
}
/* 文章編輯器 */
.blog_box_edit {
background: transparent;
padding: 0;
margin: 10px 0;
font-size: 16px;
color: #2F2F2F;
line-height: 1.8;
padding: 0;
letter-spacing: 0.04em
}
/* 文章封面 */
/*.articel_mainPic {
display: none;
}*/

/*文章-相關推薦*/
.news_related h6 span:before, .prod_related h6 span:before {
font-size: 24px;
color: #333;
font-weight: 500;
letter-spacing: 0.04em;
}
.news_related_list, .related_list {
margin: 40px auto;
}
.news_related_list li, .related_list li {
display: block;
padding: 0px;
}
.news_related_list li a, .related_list li a {
padding: 10px;
background: #fff;
height: 100%;
border: 1px solid #eee;
border-radius: 5px;
transition: .3s ease;
}
.news_related_list li a:hover, .related_list li a:hover {
box-shadow: 4px 4px 15px rgb(181 177 172 / 25%);
transition: .3s ease;
}
.news_related_list li a p, .related_list li a p{
font-size: 16px;
letter-spacing: 0.04em;
color: #333;
padding: 10px 0 5px;
line-height: 1.5;
}
/* 按鈕 */
.news_related_b_box, .prod_related_b_box {
margin: auto;
background: transparent;
color: #fff;
position: relative;
z-index: 1;
min-width: 165px;
width: 200px;
height: 50px;
border: 1px solid #0F0F0F;
font-size: 14px;
letter-spacing: 0.1em;
color: #0F0F0F;
overflow: hidden;
transition: color 0s ease;
border: 1px solid #bcbfbf;
border-radius: 10px;
}
.lastPage {
color: #fff;
background: transparent;
transition: all .5s;
font-weight: 500;
letter-spacing: 0.12em;
font-size: 16px;
margin: 0 auto;
color: #293943;
line-height: 1.8;
}
a.lastPage:after {
content: "";
position: absolute;
left: 0;
top: 0;
z-index: -1;
width: 0;
height: 100%;
background-color: #0049AB;
transition: all 0.5s;
}
a.lastPage:hover {
color: #fff;
}
a.lastPage:hover:after {
width: 100%;
}







@media screen and (max-width: 1024px) {
.blog_subbox {grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));gap: 20px;}
.i_blog_ri p, .blog_list_ri p {letter-spacing: 0.08em;}
.i_blog_ri h5, .blog_list_ri h5 {-webkit-box-orient: unset;letter-spacing: 0.04em;}

.fa-chevron-down::before {font-size: 12px;}
.blog_le .accordion li .link i {width: 35px;}
.accordion li .link a {padding: 5px 15px;font-size: 15px;}
}

@media screen and (max-width: 940px) {
.blog_le .accordion {grid-template-columns: repeat(2, 1fr);}
}

@media screen and (max-width: 768px) {
.article_b .blog_le {
        position: relative;
        top: 0px;
        margin-bottom: 0px;
        height: auto;
        width: 100%;
    }
    .article_b .blog_ri {
    padding:0px;
    width: 100%;
}
}

@media screen and (max-width: 768px) {
.subbox_item a {flex-direction: column;}
.article_a .blog_list_ri {
    width: 100%;
    margin-left: 0px;
}
}

@media screen and (max-width: 480px) {
.i_blog_ri h5, .blog_list_ri h5 {order: 2;}
.blog_list_ri em {order: 1;font-size: 13px;margin: 0;}
.i_blog_ri p, .blog_list_ri p {order: 3;}
}

@media screen and (max-width: 400px) {
.blog_le .accordion {grid-template-columns: repeat(1, 1fr);}

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿*/
.other_album_choice li {background: #ccc;}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .show_pic {aspect-ratio: 3 / 2;border-radius: 10px;}
.show-list .item a .show_pic img {
transform: scale(1);
transition: all .8s;
}
.show-list .item a:hover .show_pic img {
transform: scale(1.05);
}


/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*分類頁面-ON*/
.overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
    background: rgb(0 73 171 / 90%);
    z-index: 1;
}
.show-list {grid-template-columns: repeat(3, 1fr);grid-gap: 40px 20px;}
.show-list .show_pic {z-index: 0;}
.show-list .item a {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.album_page .show-list .item a:before {
    content: "VIEW MORE +";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 1px solid #F2F4F5; 
    font-size: 14px;
    max-width: 150px;
    color: #fff;
    font-weight: 500;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .5s;
    transition-delay: 0s;
    font-family: var(--SFontEN);
    letter-spacing: 1px;
}
.show-list .item a:hover:before{opacity: 1;height: 25px;padding-bottom: 10px;transition: all .4s;transition-delay: .3s;z-index: 100;}
.show-list .show_name {
    color: #2A2A2A;
font-weight: 600;
    text-align: center;
    letter-spacing: 4px;
    font-size: 16px;
}
.show-list .item:hover .show_name {
    color: #0049AB;
}



/*相簿頁面*/
.other_album {display: none;}
.album_class_page .show-list .item a:before {
        content: '\f002';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    margin-left: -11px;
    margin-top: -12px;
    font-family: FontAwesome;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    transition: all .5s 
ease-out;
}
.album_class_page .show-list .item a:hover:before{
transform: translate(0);
opacity: 1;
transition-delay: .5s;
}

.album_class_page .overlay {-webkit-transform: scale(1);transform: scale(1);background: rgb(85 85 85 / 60%);content: '';position: absolute;top: 0;left: 0;z-index: 1;width: 100%;height: 100%;background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.4) 100%);pointer-events: none;opacity: 0;transition: all .4s ease-out;}

.subalbum-menu{padding: 0;}
.subalbum-menu h2 {
    background: transparent;
    padding: 0;
    line-height: 1.2;
    border-radius: 5px;
    position: relative;
    color: #444;
    opacity: 1;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.12em;
}
.other_subalbum li a p {
    background: transparent;
    background-image: linear-gradient(0deg, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 0%) 100%);
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    letter-spacing: .08em;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}


/*相本內頁*/
.album_info_page{}
/* 相簿內標 */
.album_descrip {
    line-height: 1.6;
    opacity: 1;
    position: relative;
}
.album_descrip p {
color: #444;
    opacity: 1;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 20px;
    letter-spacing: 0.12em;
}

/*相簿瀑布流 -OFF*/
.album_info_page .pic-list {
display: block;
grid-template-columns: unset;
grid-gap: unset;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
column-count: 3;
column-gap: 15px;
width: 100%;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
grid-gap: 10px;
}
.album_info_page .pic-list .item {
    width: 100%;
    display: block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    height: fit-content;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: auto;
aspect-ratio: 392 / 277;
}
.pic-list .item h6 {padding: 0;}
.pic-list .show_pic img { transition: all 0.4s ease;}
.pic-list .show_pic:hover img { opacity: 0.5;}



/* = = = 相簿首頁 = = = = = = */
.module_i_album {padding: 0px 20px 60px;}
/* 標 */
.module_i_album .title_i_box {
text-align: center;
margin: auto;
}
.module_i_album .title_i_box h4 {
    color: #FF8F4B;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
}
.module_i_album .title_i_box h6::before {
    content: "Projects";
    display: block;
    position: relative;
    font-size: 72px;
    font-family: "Montserrat", sans-serif;
    color: #F2F4F5;
    text-transform: uppercase;
    font-weight: 800;
    bottom: -50px;
    z-index: -1;
}
/* 圖 */
.i_album_list_box {
    padding: 60px 0;
}
.i_album_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.i_album_list li {
    border-radius: 10px;
    overflow: hidden;
}
.i_album_list li a p {
    width: 100%;
    height: 2em;
    position: absolute;
    left: 0;
    bottom: 0;
    background: transparent;
    background-image: linear-gradient(0deg, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 0%) 100%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #fff;
    overflow: hidden;
    padding: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: fit-content;
    transition: all .5s;
}
.i_album_list li:hover a p {
    background-image: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 100%);
}
.i_album_list li a p span {
    letter-spacing: .08em;
    text-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
/* BTN */
.module_i_album a.animated-arrow{
display: flex;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    position: relative;
    text-align: center;
    max-width: 200px;
    width: 100%;
    min-height: 50px;
    border-radius: 25px;
    font-weight: 500;
    padding: 5px 35px;
    color: #fff;
    -webkit-filter: drop-shadow(0px 10px 12.5px rgba(0, 117, 175, 0.2));
    filter: drop-shadow(0px 10px 12.5px rgba(0, 117, 175, 0.2));
    background-color: #0049AB;
    margin: 0 0 40px;
    align-items: center;
    justify-content: space-between;
}
.module_i_album a.animated-arrow b {
    font-weight: 500;
    letter-spacing: .08em;
    font-size: 15px;
}
.i_album_b a i.fa-solid.fa-arrow-right {
    margin: 0;
}
.i_album_b a:hover i.fa-solid.fa-arrow-right {
    margin-right: -10px;
}



@media screen and (max-width: 1024px){
/*外*/
.show-list {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 500px){
/*外*/
.show-list {grid-template-columns: repeat(1, 1fr);}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: flex; }
.footer.with_shopping_mode { padding:30px 0 50px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}


@media screen and (max-width: 600px) {
  .bannerindex .swiper-slide img {
    display: none;
  }
  .bannerindex .swiper-slide {
    height: 130vw;
    width: 100% !important;
  }
  /*圖片比例*/
  .bannerindex .swiper-slide:nth-child(1) {
    background-image: url(https://pic03.eapple.com.tw/baiyungo168/rwd_01.jpg);
    background-position: top;
    background-size: cover;
  }
  /*個別換背景*/
  .bannerindex .swiper-slide:nth-child(2) {
    background-image: url(https://pic03.eapple.com.tw/baiyungo168/rwd_02.jpg);
    background-position: top;
    background-size: cover;
  }
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before {
        background: url(https://pic03.eapple.com.tw/baiyungo168/rwd_01-1.png);
        background-size: contain;
        background-repeat: no-repeat;
        top: 60%;
        left: 14%;
        width: 66% !important;
        height: 35% !important;
        background-position: right;
        padding-bottom: calc(100% / 1 * 0.12);
    }
    .pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
        background: url(https://pic03.eapple.com.tw/baiyungo168/rwd_02-1.png);
        background-size: contain;
        background-repeat: no-repeat;
        top: 60%;
        left: 26%;
        width: 66% !important;
        height: 35% !important;
        background-position: right;
        padding-bottom: calc(100% / 1 * 0.12);
    }
}