@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
/* "Tenor Sans" */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
/* "Zen Antique" */
@import url('https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap');

body {
    font-family: "Noto Sans TC" serif;
}

body {
    font-weight: 400;
    font-style: normal;
}

#content {
    background-image: url(https://pic03.eapple.com.tw/purewide/bg-02.png);
    position: relative;
    height: auto;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;

}

#content::before {
    content: "";
    position: absolute;
    top: 11.458vw;
    left: -20px;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/purewide/bg-tree.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -1;
    animation: treeMove 10s linear infinite;
}


@keyframes treeMove {
    0% {
      opacity: 1;
      transform: skew(3deg);
    }
    25% {
      opacity: 0.8;
    }
    50% {
      transform: skew(-1deg);
    }
    75% {
      opacity: 0.8;
    }
    100% {
      opacity: 1;
      transform: skew(3deg);
    }
}

@media only screen and (max-width: 1024px) {
#content::before {top: auto; bottom: 0; left: -10px; width: 100%; height: 66vw; background-image: url(https://pic03.eapple.com.tw/purewide/bg-tree-mb.png);
max-width: 1600px; background-size: contain; background-repeat: no-repeat; position: fixed; animation: treeMove 10s linear infinite;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {
    background-color: #316A9A;
    color: #fff;
}

::selection {
    background-color: #316A9A;
    color: #fff;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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 {}
*/

/* 商品下拉超過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個--結束 */

@media only screen and (max-width: 768px) {

    .navigation {
        flex-direction: column;
    }

    .nav-brand img {display: block;}

    .main_header_area .container {padding-left: 0;}

    .header_area .main_header_area .container {max-width: 90%;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
    /* --Color: #cca39a; */
    --MainColor: #316A9A;
    /*網站主要色系*/
    --SubColor1: #6FAFD6;
    /*網站輔助色系1*/
    --SubColor2: #A8D8E8;
    /*網站輔助色系2*/
    --SubColor3: #F7F7F7;
    /*網站輔助色系3*/
    --SubColor4: #3D3D3D;
    /*網站輔助色系4*/
    --SubColor5: #707070;
    /*網站輔助色系5*/
    --SubColor6: #88C9A1;
    /*網站輔助色系6*/
    --SubColor7: #F7D6B3;
    /*網站輔助色系7*/
    --SFontE: "Inter", "Noto Sans TC", sans-serif;
    /*英文字體-無襯線*/
    --SFontEN: "Cardo", "Noto Serif TC", sans-serif, system-ui;
    /*英文標字體*/
    --SFont: "Noto Sans TC", sans-serif;
    /*內文黑體字*/
    --SFont2: "Shippori Mincho", "Noto Serif TC", sans-serif;
    /*內文襯縣字體*/
    --SFontJ: "LXGW WenKai Mono TC", "Noto Serif TC", "Noto Sans TC", sans-serif;
    /*日文字體-楷*/
    --pd100: 100px 0;
    --p100: 100px;
    --pre5: clamp(60px, 5%, 100px);
    --m100: 100px;
    --m50: 50px;
    --m30: 30px;
    --f80: 80px;
    --f60: 60px;
    --f52: 52px;
    --f48: 48px;
    --f44: 44px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

@media (min-width:1520px) {
    :root {
        --p100: 120px;
    }
}

@media (max-width:1024px) {
    :root {
        --p100: 80px;
        --pre5: clamp(40px, 5%, 80px);
        --m50: 40px;
        --m30: 25px;
        --f80: 70px;
        --f52: 48px;
        --f48: 40px;
        --f44: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --p100: 60px;

        --m100: 70px;
        --f80: 60px;
        --m50: 30px;
        --m30: 20px;
        --f52: 44px;
        --f48: 32px;
        --f44: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }
}

@media (max-width:600px) {
    :root {
        --p100: 50px;
        --pd100: 50px 0;
        --pre5: clamp(20px, 5%, 40px);
        --m100: 50px;
        --m50: 25px;
        --f80: 52px;
        --f52: 36px;
        --f48: 28px;
        --f44: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
    }
}

@media (max-width:480px) {
    :root {
        --p100: 40px;
    }
}

@media (max-width:375px) {
    :root {
        --f80: 48px;
        --f52: 32px;
        --f48: 24px;
        --f44: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}

/*網站全域設定/＝＝＝＝＝*/


.edit_part {
    padding: 0;
}

.linksBtn {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.nav-header {
    max-width: 250px;
}

.nav-brand img {
    display: flex;
}

.header_area {
    position: relative;
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;

}

.header_area.sticky {
    position: fixed;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: transparent;
}

.main_header_area:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition-timing-function: ease-in;
    padding: 0 40px;
    transition: .4s ease;
    border-bottom: 1px solid #e9edfc;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 5px 8px 5px rgba(0, 71, 55, .03);
}

.pageIndex .main_header_area:after {
    background: #ffffffc4;
}

.pageIndex .main_header_area:after {
    /* height: 0; */
}

.header_area.sticky .main_header_area:after {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.main_header_area .container {
    max-width: 100%;
    padding: 0;
    padding-left: 5%;
    transition: 0.5s;
}

.pageIndex .header_area .main_header_area,
.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
    position: relative;
}

.pageIndex .header_area.sticky .main_header_area,
.header_area.sticky .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

.navigation {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 25px;
    row-gap: 0;
}


/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav {

}

.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}


/* 第一層 */
.stellarnav>ul>li {
    position: relative;
    padding: 20px 0;
    padding: 0;
}

.stellarnav>ul>li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    content: none;
}

.stellarnav>ul>li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

.stellarnav>ul>li>a {
    font-family: var(--SFont2);
    color: #3D3D3D;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 20px 25px;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

.stellarnav>ul>li>a:hover {
    color: #316A9A;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}

/* 預約按鈕 */
.stellarnav>ul>li:last-child {
    right: 0;
    background: #316A9A;;
}

.stellarnav>ul>li:last-child a {
    color: #fff;
    padding-right: 40px;
    padding-left: 40px;
    letter-spacing: 0.12em;
    font-weight: 300;
    z-index: 2;
}

.stellarnav>ul>li:last-child a:before {
    background-color: #4185bd;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.stellarnav>ul>li:last-child a:after {
    background-color: #4185bd;;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 2s;
    transition: all 2s;
}

.stellarnav>ul>li:last-child a:hover:before,
.stellarnav>ul>li:last-child a:hover:after {
    width: 100%;
    height: 100%;
    opacity: 1;
}


.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.stellarnav ul ul>li>a:hover,
.stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}

/* 下拉符號 */
.stellarnav li.has-sub>a:after {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #888 #888 transparent;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: border .2s;
    transition: border .2s;
    margin: 0px;
    top: 48%;
    right: 6px;
}

.stellarnav li.has-sub>a:hover:after {
    opacity: 0.6;
    transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
}


/* 第二層 */
.stellarnav ul ul {
    background: #fff;
    left: 50%;
    margin-left: -75px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
}

.stellarnav li li {
    border: 0;
}

.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.06em;
    font-family: var(--SFont2);
}

.stellarnav ul ul>li>a:hover {
    color: #fff;
    background: #316A9A;
}


.me_tp_features {
    display: none;
}

@media screen and (max-width: 1200px) {
.nav-header {max-width: 200px;}
.stellarnav>ul>li>a { padding: 20px 20px;}
}

@media screen and (max-width: 1024px) {
.navigation { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; align-content: center; padding: 20px 0px 0px;}
.nav-header {max-width: 220px;}
.main_header_area .container {    padding-left: 0%;}
.main_header_area:after { padding: 0 0px;}
.stellarnav ul { text-align: center; display: flex; justify-content: space-between; align-items: center;}
.stellarnav>ul>li>a{padding: 15px 20px;}
}

@media screen and (max-width: 768px) {
.header_area { position: sticky;}
.navigation { padding:10px 0;}
.stellarnav.mobile {top: 9px;}


/* 導覽列漢堡選單 */    
.stellarnav.mobile {
    right: 0;
    left: unset;
}
.stellarnav.mobile .menu-toggle {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: center;
}

/* 漢堡選單樣式 */
.stellarnav .menu-toggle:after {
    text-transform: capitalize;
    /* content: 'Menu'; */
    font-size: 12px;
    transform: scale(1);
    color: #707070;
    letter-spacing: 2px;
}
.sticky .stellarnav .menu-toggle:after {
    color: #3D3D3D;
}
.stellarnav .menu-toggle span.bars {
    display: block;
}
.stellarnav .menu-toggle span.bars span {
    width: 32px;
    height: 2px;
    border-radius: 0;
    background: #707070;
    margin: 0 auto 6px;
}
.sticky .stellarnav .menu-toggle span.bars span {
    background: #3D3D3D;
}
/* 黑色遮罩 */
.stellarnav.mobile::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0;
    transition: 1s;
    content: none;
}
.stellarnav.mobile.active::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}
    
/* 導覽列展開 */
.stellarnav.mobile.left > ul {
    left: unset;
    right: 0;
    font-size: 0;
    max-width: 100%;
    padding: 0 30px;        
    /*右滑出現*/
    right: -100vw;
    overflow: hidden;
    transition: all .5s ease;
    overflow-y: auto;
}
/*卷軸*/
.stellarnav.mobile.left > ul::-webkit-scrollbar {
    background: #eaeaea;
    width: 4px;
    height: 15px;
}
.stellarnav.mobile.left > ul::-webkit-scrollbar-button {
    display: none;
    background: #eaeaea;
    border-radius: 0;
}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track-piece {
    background: #fbfbfb;
}
.stellarnav.mobile.left > ul::-webkit-scrollbar-thumb {
    background-color: #888;
    width: 4px;
    border-radius: 15px;
    border: 3px solid #D4C9AA;
}
.stellarnav.mobile.left > ul::-webkit-scrollbar-track {
    border-radius: 6px;
    height: 6px;
    background-color: #eaeaea;
}
.stellarnav.mobile.left.active > ul{        
    right: 0;
    max-width: 100%;
    width: 70%;
}


.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    display: inline-block;
    font-size: 12px;
    background: transparent;
    height: 76px;
    width: fit-content;
    padding: 0;
    margin: 26px 0 28px;
    text-transform: capitalize;
    content: 'Menu';
    font-size: 14px;
    color: #000;
    transform: scale(1);
    letter-spacing: 0.04em;
    height: fit-content;
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
}
.stellarnav .icon-close {
    box-sizing: border-box;
    width: 18px;
    height: 12px;
    position: relative;
    display: inline-block;
    margin: 2px 9px 0 3px;
}
.stellarnav .icon-close:before , .stellarnav .icon-close:after {
    width: 18px;
    height: 0px;
    border-bottom: solid 1px #000;
}
/* 導覽列選取Hover效果 */
.stellarnav ul:hover li a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}


    /* 第一層 */
    .stellarnav.mobile > ul > li {
        border-bottom: 1px #eee solid;
        padding: 5px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        flex-direction: column;
    }
    .stellarnav.mobile li.open {
        background: #f3f3f3;
        /* color: #fff; */
        padding: 0;
        padding-bottom: 5px;
    }
    .stellarnav.mobile > ul > li > a, .header_area.sticky .stellarnav.mobile > ul > li > a:not(.dd-toggle){
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: block;
        letter-spacing: 0.08em;
        color: #333;
        font-size: 16px;
        letter-spacing: 0.04em;
        padding: 16px 12px 16px 30px;
    }
    .stellarnav>ul>li:last-child a {
    color: #fff;
    }
    .stellarnav.mobile li.open > a {
        border: 0;
    }    
    .stellarnav > ul > li > a:before{
        content: none;
    }
    /* +符號修改 = = */
    .stellarnav.mobile > ul > li > a.dd-toggle {
        top: 5px;
        padding: 10px;
    }
    .stellarnav.mobile > ul > li.open > a.dd-toggle {
        top: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        width: 8px;
        height: 8px;
        border-bottom: solid 1px #666;
        top: 50%;
        left: 0;
        transform: rotate(-45deg);
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        width: 8px;
        height: 8PX;
        top: 50%;
        border-bottom: solid 1px #666;
        transform: rotate(45deg);
    }
    .stellarnav li.open > a.dd-toggle .icon-plus {
        -moz-transform: translateY(10px) scaleY(-1);
        -webkit-transform: translateY(10px) scaleY(-1);
        -o-transform: translateY(10px) scaleY(-1);
        transform: translateY(10px) scaleY(-1);
    }

    /* +符號修改END = = */

    /* 第二層 */
    .stellarnav.mobile ul ul {
        left: unset;
        margin: 0 auto;
        box-shadow: none;
        width: calc(100% - 10px);
        margin: auto;
        left: unset;
        box-shadow: none;
        transform: unset;
    }
    .stellarnav li li {
        font-size: 14px;
        color: #333;
        font-family: var(--SFont);
        letter-spacing: 0.04em;
        font-size: 15px;
        color: #333333;
        letter-spacing: 0.04em;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 30px 10px 20px;
    }
    .stellarnav a.dd-toggle .icon-plus {
        height: 80%;
    }
    .stellarnav li li a.dd-toggle .icon-plus:before, .stellarnav li li a.dd-toggle .icon-plus:after{
        border-bottom: solid 1px #ccc;
        top: 0%;
    }
    .stellarnav.mobile ul li:hover > a {
        opacity: 1;
        transition: all 0.3s ease-in-out;
        background: transparent;
        color: unset;
    }
    .stellarnav.mobile ul ul>li>a:hover{
        color: var(--MainColor);
    }

    /* 第三層 */
    .stellarnav.mobile li.open li.open {
        background: #fbfbfb;
    }
    .stellarnav li li li a{
        font-size: 14px;
    }

}

@media screen and (max-width: 500px) {
.stellarnav .menu-toggle span.bars span { width: 28px;}
.stellarnav .menu-toggle:after {transform: scale(0.9);}
.header_area .main_header_area .container { max-width: 100%;}
}

@media screen and (max-width: 375px) {
.nav-header {max-width: 200px;}
.stellarnav.mobile.left > ul {padding: 0 20px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/purewide/bg-logo01.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before { 
    animation: fade-in-elegant  2.3s ease-in-out both;
}


/*上升特效*/
@keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}


.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    content: '';
    width: 100%;
    height: unset;
    max-width: 100%;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after  {
    background-image: url(https://pic03.eapple.com.tw/purewide/title01.png);

}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: ani_LtoR_clip  2.5s ease-in-out both;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

}

@keyframes ani_LtoR_clip {
    0% {
        opacity: 1;
        clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0%);

    }

    100% {
        opacity: 1;

        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
        ;

    }
}


.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/purewide/bg-logo02.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before { 
    animation: fade-in-right 2.3s ease-in-out both;
}


/*右滑出特效*/
@keyframes fade-in-right {
    0% {
      -webkit-transform: translateX(150px);
              transform: translateX(150px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }


.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    content: '';
    width: 100%;
    height: unset;
    max-width: 100%;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 3;
    pointer-events: none;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after  {
    background-image: url(https://pic03.eapple.com.tw/purewide/title02.png);

}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: ani_TtoB 2.8s ease-in-out both;
}

@keyframes ani_TtoB {
    0% {    clip-path: polygon(0 -1%,100% -1%, 100% 0, 0 0);}
    100% {    clip-path: polygon(0 0,100% 0,100% 100%, 0 100%);}
}

.swiper-pagination-bullets.swiper-pagination-horizontal {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.box_link{display: none;}


.footer {
    position: relative;
    margin-top: 0;
    padding-top: 130px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background: #316A9A;
}

footer:before {
    display: block;
    content: '';
    background-size: 100%;
    height: 367px;
    width: 600px;
    /* width: 100%; */
    position: absolute;
    z-index: 1;
    opacity: 0.25;
    background: url(https://pic03.eapple.com.tw/purewide/ft_leaf.png) no-repeat 50% / 90%;
    top: 0px;
    left: -40px;
    filter: blur(3px);
    pointer-events: none;
}

.footer .center {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    /* padding: 0; */
    /* max-width: 100%; */
    display: flex;
    justify-content: space-between;
}
.footer_logo {/* display: none; */filter: contrast(0) brightness(100);position: absolute;left: 40px;right: unset;};


/* footer資訊*/
.footer_info{ }

.footer_info {
    text-align: center;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 0;
}

.footer_info:nth-child(1) > ul {   }


/* 文字共用 */
.footer_menu a, .footer_info li p{
    position: relative;
    padding: 5px 7px;
    border: 0;
    margin: 0;
    color: #fff;
    background: transparent;
    padding: 0 20px;
    font-family: var(--SFont2);
    font-size: 13px;
    line-height: 2;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 1;
}

.footer_info li:nth-child(1) {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    margin-bottom: 20px;
    max-width: 1300px;
    margin: 0 auto 25px;
    padding: 0 20px;
}
.footer_info li p{
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 2px;
}
.footer_info li p:hover a{
    color: #F7D6B3;
}

.footer_info li p.tel{display: none;}

.footer_info li p a{
    color: #fff;
}



.footer_info li:nth-child(2){
    border-top: 1px solid #ffffff3b;
}
.footer_menu {
    font-size: 0;
    width: 100%;
    margin: 0 auto 20px;
}
.footer_menu a {       
    line-height: 2.4;
    -webkit-transition: all, -webkit-transform 0.8s linear 0.3s, opacity 0.8s linear 0.3s;
    transition: all 0.3s linear;
}
.footer_menu a:after{
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: rgba(118, 118, 118, 0.3);
    right: 0;
    top: 7px;
    opacity: 0;
}
.footer_menu a:last-child:after{
    content: none;
}
.footer_menu a:hover {
    background: transparent;
    color: #F7D6B3;
}

/* 回首頁隱藏 */
.footer_menu a:first-child {
    display: none;
}

/* ------------------------------------------------------------------------------------------------------------ */

.copy {
    text-align: center;
    padding: 7px 0;
    border-top: 0;
    align-items: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    justify-content: center;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 11px;
    line-height: 2;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.copy a {     
    color: #fff;
 }

 .copy a:hover {
    color: #F7D6B3;
}

@media screen and (min-width: 1700px) {}
/* @1200下方區域_平板版面1200px */
@media screen and (max-width: 1200px) {

/* footer*/
    .footer_info {
        margin: auto;
    }
    .footer_info li:nth-child(1) {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer_info li p {
        margin-left: 0;
    }
}

/* @1024下方區域_平板版面1024px */
@media screen and (max-width: 1024px) {
    /* footer */
    .footer_info {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        gap: unset;
    }
    .footer_logo a {
        position: relative;
        display: block;
        width: 100%;
    }

    .footer_info ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer_info li+li{
        margin-top: 0;
    }
    .footer_info li:nth-child(2) {
        padding: 15px 0;
    }
    .footer_menu {
        display: flex;
        justify-content: center;
        margin-left: auto;
    }
    .footer_menu a {
        font-size: 14px;
        padding: 0 10px;
    }

    
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu { display: none    }
    .footer.with_shopping_mode {
        padding: 80px 0 60px;
    }
    /* footer */
    
    .footer_logo {
        position: relative;
        left: unset;
        width: 100%;
        margin: auto;
        margin-bottom: 30px;
    }
    .footer_info li:nth-child(1) {
        align-items: center;
    }
    .footer_menu {
        display: flex;
        justify-content: center;
        margin-left: auto;
        flex-wrap: wrap;
        max-width: 500px;
        margin: 0 auto 20px;
    }
    .footer_menu a {
        font-size: 14px;
        padding: 0 10px;
        width: 50%;
        text-align: center;
    }
    .footer_menu a:nth-child(2n):after {
        content: none;
    }
    .copy{
        font-size: 11px;
    }


}

@media screen and (max-width: 600px) {
    footer:before {   
    height: 200px;
    width: 400px;
    }
    .copy {
        font-size: 10px;
    }
}

@media screen and (max-width: 400px) {
    footer:before {   
    height: 180px;
    width: 300px;
    }
    .footer_info li p {
    font-size: 13px;
    }
    .footer .center {padding-left: 15px;  padding-right: 15px;}
    .footer_info li:nth-child(1){padding: 0;}
    .footer_logo {width: 80%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 其他頁面*/
.path { 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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 0;
    position: relative;
    padding: 0px;
    width: 100% !important;
    padding-bottom: calc(100% / 1 * 0.32);
    max-width: 100%;
    background: transparent;
    margin-bottom: 100px;
    background-image: url(https://pic03.eapple.com.tw/purewide/b1.png);
}
.banner h5 {
    font-size: 48px;
    color: #ffffff;
    position: relative;
    letter-spacing: 3px;
    font-weight: 500;
    animation: slide-top 1.8s 0.5s both;
    text-align: left;
    width: 100%;
    top: 20vw;
    padding: 40px 200px;
    font-family: "Zen Antique", serif;
}
.banner h5:before {
    display: block;
    font-size: 26px;
    font-weight: 300;
    top: -25px;
    position: absolute;
    left: 0;
    padding: 40px 205px;
    font-family: "Tenor Sans", sans-serif;
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

.banner.banB h5:before {
    content: "SERVICE";
}
.article_a .banner.banblog h5:before {
    content: "CASE";
}
.article_b .banner.banblog h5:before {
    content: "NEWS";
}
.banner.banE h5:before {
    content: "REVIEWS";
}


/*動畫*/
@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: 1024px) {
.banner {padding-bottom: calc(100% / 1 * 0.52);}
.banner h5 {font-size: 38px; top: 40vw;}
}

@media screen and (max-width: 768px) {
.banner{padding-bottom: calc(100% / 1 * 0.32);}
.banner h5 {top: 20vw; padding: 40px 50px;}
.banner h5:before {padding: 40px 55px;}
}

@media screen and (max-width: 500px) {
.banner h5 {font-size: 28px;}
.banner h5:before {font-size: 16px; top: -20px;}
}


@media screen and (max-width: 600px) {
.banner { margin-bottom: 0px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

.blog_subbox { grid-template-columns: 1fr;  grid-gap: 50px;}
.subbox_item a { grid-template-columns: 280px 1fr;}

/*分類*/
.blog_le .accordion { border-radius: 0px; border: 1px #A8D8E8 solid;}
.blog_search input[type=search]{border-radius: 0px;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background: #316A9A !important ;}
.accordion li+li .link {border-top: 1px solid #A8D8E8;}
.accordion li .link a {color: #fff;}

/*右側*/
.blog_page h4.blog_category_title , h5.blog_le_t { display: none;}
.blog_list_ri h5 { letter-spacing: 2px; font-weight: 500; font-size: 25px; color: #fff;}
.blog_list_ri em { font-size: 14px; color: #ffffff; padding: 5px 10px; width: fit-content; margin-top: 15px; background: #316A9A; letter-spacing: 2px;}
.blog_list_ri p {  font-size: 15px; border-top: 1px solid #A8D8E8; margin-top: 20px; padding-top: 15px;padding-left: 5px;color: #fff;}
.blog_search input[type=submit]{  filter: grayscale(1);}
/*hover*/
.article_a .subbox_item a:after{display: none;}
.article_a .subbox_item:hover { border: 1px solid #A8D8E8; padding: 15px;}
.article_a .subbox_item a:before{color: #F7F7F7;}

/*內頁*/
/*.articel_mainPic {  display: none;}*/
.blog_shareData { align-items: flex-start; align-content: flex-start; flex-direction: column;}
.blog_shareData .visitors_num { padding: 10px 0;}  
.toShareNews { color: #A8D8E8;}  

.subbox_item{ border: 1px solid transparent;}
.blog_back a.article_btn_back {  background: transparent;  border: 1px solid #ffffff;    color: #ffffff;} 
.blog_back a.article_btn_prev ,.blog_back a.article_btn_next { background: transparent; color: #ffffff; border: 1px solid;}
.blog_back {  width: 600px; margin: 0 auto;}
.product_info { margin: 35px 0 20px;}
.blog_le, .blog_ri { margin-bottom: 5vw;}
.blog_le {  width: 220px;   position: sticky;   top: 110px;}
.blog_in_page h4.blog_category_title {color: #fff;}
.blog_box_edit * {color: #fff;}

/*按鈕*/
.blog_back {width: auto;}
.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover { background: #316A9A; color: #fff; border: 1px solid #316A9A;}
.blog_back a.article_btn_back:hover { background: #316A9A;color: #fff; border: 1px solid #316A9A;} 

/*相關分類*//*文章+購物車*/
.related_list { max-width: 1500px;}
.news_related , .prod_related { background: transparent; padding: 50px 15px;} 
.news_related h6 span:before, .prod_related h6 span:before { font-size: 25px; color: #ffffff; letter-spacing: 5px;font-weight: 500;}
.news_related h6 span:after { content: ""; width: calc(100% - 250px); position: absolute; background: #A8D8E8; height: 1px; right: 0;  top: 50%;}
.news_related h6 {  max-width: 1500px; margin: 0 auto 30px; text-align: left; position: relative;}
.lastPage {  color: #ffffff; background: transparent; border: 1px solid;}
.news_related_list li a , .related_list li a { padding: 0px;background: transparent;}
.news_related_list li a p , .related_list li a p{ padding: 10px 0px; text-align: center;color: #A8D8E8;}
.lastPage:hover { background: #316A9A; color: #fff; border: 1px solid #316A9A;}


/*文章二-最新消息*/

/*首頁*/
.module_i_news { padding: 80px 20px;  background-repeat: no-repeat;  background-size: cover; background-color: #F7F7F7;}
.module_i_news section { max-width: 1300px; display: flex; flex-direction: column;}
.module_i_news_list { order: 2;}
.module_i_news .i_blog_b { order: 1; margin: -80px 0 0 auto;}
.pageIndex .productsListBox, .productsListBox.swiper { padding: 50px 0 30px;}
.module_i_news ul { grid-template-columns: 1fr 1fr 1fr 1fr; grid-gap: 80px;}
.module_i_news li a { grid-template-columns: 1fr; grid-gap: 10px;}
.module_i_news_list, .module_i_news_list.swiper {  padding: 60px 0 30px;}
.module_i_news .title_i_box {position: relative; text-align: left; margin: 0 auto 0 0;}
.module_i_news .title_i_box h4 { margin: 0 auto; font-size: 36px; color: #316A9A; letter-spacing: 5px; position: relative; text-indent: 0px;
    z-index: 9; font-family: "Zen Antique", serif; padding-top: 60px; font-weight: 500;}

.module_i_news .title_i_box h4:after { content: "News"; position: absolute; left: 0%; top: 28px; font-weight: 500; font-size: 21px;
    letter-spacing: 2px; font-family: "Tenor Sans", sans-serif; color: #316A9A;text-indent: 2px;}

.i_blog_ri { min-height: 120px; padding: 15px 10px; transition: 0.5s; display: flex ; flex-direction: column; justify-content: flex-start; min-height: 100px; }
.i_blog_ri h5 { letter-spacing: 2px; font-family: "Noto Serif TC Medium";}
.i_blog_ri em { font-size: 14px; color: #555;}
.i_blog_ri p {color: #444; padding-top: 10px;  margin-top: 10px; border-top: 1px solid;}
.module_i_news li a:before { left: 10px; right: 0; text-align: left; bottom: 0px;  opacity: 1; transition: 0.5s;}
.module_i_news .i_blog_b a { background: #316A9A; border-radius: 50px;}
.module_i_news .i_blog_le{border-top-right-radius: 200px; border-top-left-radius: 200px;}

/*hover*/
.module_i_news li a:after { display: none;}
.module_i_news li a:hover .i_blog_le img { transform: scale(1.1);transition: 0.8s;}
.module_i_news li:hover a:before { letter-spacing: 2px; color: #A8D8E8;}
.subbox_item:hover a:before{ letter-spacing: 2px; color: #F7F7F7;}

/*列表*/
/*.blog_in_page .main_part { max-width: 1500px;}*/

/*側邊*/
/*.blog_search input[type=search] {  border-radius: 0px;}
.blog_le .accordion { border-radius: 0px;}
.submenu { background: #fff;}
h5.blog_le_t {  font-size: 22px; letter-spacing: 3px;  margin-bottom: 15px; position: relative;  color: #222;font-family: "Noto Serif TC Medium";}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background: #C2821E !important;}
.submenu li.on_this_category a, .submenu a:hover { background: #fff; color: #979797; letter-spacing: 4px;}
.submenu a {padding: 12px;}
.submenu a i { display: none;}*/


/**/
.article_b .blog_subbox { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 60px 30px;}
.article_b .subbox_item a { grid-template-columns: 1fr;}
.article_b .blog_list_ri { min-height: 200px;}
.article_b .blog_list_ri h5 {  font-weight: 500; letter-spacing: 2px;  font-size: 20px;  color: #fff; font-family: "Noto Serif TC Medium";}
.article_b .blog_list_ri p { border-top: 1px solid #A8D8E8; padding-top: 10px; margin-top: 10px; font-size: 15px; color: #ffffff;}
.article_b .blog_list_ri em { color: #fff;}
/*hover*/
.article_b .subbox_item a:after{display: none;}
.article_b .blog_list_le { overflow: hidden; border-top-right-radius: 200px; border-top-left-radius: 200px;}
.article_b .subbox_item:hover .blog_list_le img { transform:scale(1.1);  transition: 0.8s;}
.article_b .subbox_item a:before { left: 0px; opacity: 1; color: #A8D8E8;}

@media screen and (max-width: 1080px) {
/*文章*/
.blog_subbox { grid-template-columns: 1fr 1fr;  grid-gap: 40px 20px;}
.subbox_item a { grid-template-columns: 1fr;}
.blog_ri { margin-bottom: 0vw;  padding: 0 0 0 50px;}
.blog_le { position: relative;  top: 0px;   padding: 0px;}
.blog_list_ri em { font-size: 12px; letter-spacing: 1px;}
.blog_list_ri h5 {  letter-spacing: 1px;  font-size: 17px;}
}

@media screen and (max-width: 1024px) {
/*首頁文章*/
.module_i_news .title_i_box h4 {font-size: 26px;}
.module_i_news .title_i_box h4:after {font-size: 18px;}
.module_i_news ul{ grid-gap: 20px;}

/*文章二*/
.article_b .blog_subbox {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 768px) {
/*首頁文章*/
.module_i_news .title_i_box h4 {font-size: 22px;}
.module_i_news .title_i_box h4:after {font-size: 16px;}
.i_blog_ri {min-height: 150px;}
.module_i_news li{border-bottom: none;}
.module_i_news ul{grid-template-columns: 1fr 1fr;}

/*文章一*/
.blog_ri {padding: 0 0 0 0px;}
}

@media screen and (max-width: 600px) {
/*首頁文章*/
.module_i_news .i_blog_b { order: 2; margin: 0 auto;}
.module_i_news { padding: 20px 20px;}

/*文章一*/
.blog_subbox { grid-template-columns: 1fr; grid-gap: 40px 20px;}

/*文章二*/
.article_b .blog_subbox {grid-template-columns: 1fr;}
.article_b .blog_list_le {border-top-right-radius: 280px; border-top-left-radius: 280px;}
}

@media screen and (max-width: 425px) {
/*首頁文章*/
.module_i_news ul{grid-template-columns: 1fr;}
.module_i_news .title_i_box{position: relative; margin: 0 auto 0 auto; text-align: center;}
.module_i_news .title_i_box h4:after {left: 20%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/

/*相簿*/
/*列表*/
.show-list { grid-gap: 50px 20px;}
.overlay {  display: none !important;}
.show-list .show_name {  color: #ffffff; margin-top: 15px;  text-align: center;  letter-spacing: 5px; font-size: 19px;}

/*hover*/
.show-list .show_pic {transition: 0.5s; }
.show-list .item:hover .show_pic { padding: 15px;}
.show-list .show_pic:before {
        content: ""; width: 20px; height: 20px;  display: block;
        box-sizing: border-box; border-top: 2px solid #ffffff00; border-left: 2px solid #ffffff00;
        position: absolute; top: 0; left: 0;  transition: all .3s linear;z-index: 1;}
.show-list .show_pic:after {
        content: "";  width: 20px; height: 20px; display: block;  box-sizing: border-box;
        border-bottom: 2px solid #ffffff00;  border-right: 2px solid #ffffff00; position: absolute; 
         bottom: 0;  right: 0; transition: all .3s linear;z-index: 1;}
.show-list .item:hover .show_name { color: #A8D8E8;}
/*.show-list .show_pic:hover img { transform:scale(1.1);  transition: 0.8s;}*/

/*次分類*/ 
.subalbum-menu { margin: 0px; padding: 0px;}
.subalbum-menu h2 { display: none !important;}       
.other_subalbum li { background: transparent;} 
.other_subalbum li a p {  line-height: 2; text-align: center;  color: #ffffff;  font-size: 17px; letter-spacing: 2px; padding-top: 10px;}
.show-list .item a:hover p { color: #A8D8E8;}

/*內頁*/
.album_descrip { color: #ffffff;   line-height: 1.4;  letter-spacing: 2px;  font-size: 16px;  padding: 0px 15px; border-left: 4px solid #ffe5d4; margin-top: 25px; margin-bottom: 60px;}
.pic-list .item h6 { color: #bcbcbc;}

/*分類按鈕*/
.album_fixed_title {  font-size: 15px; color: #ffffff;background: transparent;}
.other_album_choice li { background: #316A9A;}
.other_album_choice li:hover { background: #A8D8E8;}
.other_album_choice li a i.fa-solid.fa-right-from-bracket { margin: 0 10px;  display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




