@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=ZCOOL+XiaoWei&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..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", serif;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {
    background-color: #FBFBFA;
    color: #fff;
}

::selection {
    background-color: #D2C6BA;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #181818;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #181818;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #181818;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #FBFBFA;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}



/*  */


.swiper-fade .swiper-slide {
    background: #ffffff;
    height: 0;
    padding-bottom: calc(100% / 10 * 5);
    overflow: hidden;
}


.swiper-banner .swiper-slide img {}



/* 文字 */
/*.bannerindex .swiper-fade .swiper-slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/chengliinterior/bg-06.png);
    width: 100%;
    max-width: 100%;
    height: 0%;
    padding-bottom: calc(100% / 8 * 5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    opacity: 1;
}*/




/* 大圓線 */
.bannerindex .swiper-fade .swiper-slide::after {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    top: 0px;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/ylcstudio/bg-01.png);
    width: 100%;
    max-width: 100%;
    height: 0%;
    padding-bottom: calc(100% / 9 * 5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 1;
    transform-origin: 80% 0;
    animation: line-1 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

@keyframes line-1 {
    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%);
        ;

    }

}



/* 圓logo */
.bannerindex .swiper-fade::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    background-image: url(https://pic03.eapple.com.tw/ylcstudio/bg-02.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    transform-origin: 20% 80%;
    animation: line-2 3s  1.8s both ;
}


@keyframes line-2 {
    0% {
        height: 100%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }

}


.pageIndex .swiper-slide:before{
    content: "";
     background-image: url(https://pic03.eapple.com.tw/ylcstudio/bg-03.png);
    display: block;
    pointer-events: none;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 0%;
    padding-bottom: calc(100% / 10 * 5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    opacity: 1;
    transform-origin: 80% 0;
}
.pageIndex .swiper-slide.swiper-slide-active:before{animation: ani_down 3s 3.5s both;}


@keyframes ani_up {
    0% {      transform:translateY(-5vw);opacity: 0;   }
    100% {      opacity:translateY(0);opacity: 1;    }
}
@keyframes ani_down {
    0% {      transform:translateY(5vw);opacity: 0;   }
    100% {      opacity:translateY(0);opacity: 1;    }
}


@media screen and (max-width: 1600px) {
    .pageIndex .swiper-slide:before {bottom: 260px;}
}

@media screen and (max-width: 1440px) {
    .pageIndex .swiper-slide:before {bottom: 230px;}
}

@media screen and (max-width: 1200px) {
    .pageIndex .swiper-slide:before {aspect-ratio: 2 / 9; bottom: 170px;}
}

@media screen and (max-width: 1024px) {
    .pageIndex .swiper-slide:before { bottom: 150px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.nav-menu {margin: 0;}

.main_header_area .container {max-width: 80%;}

.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: #cc3e3e;}

.nav-dropdown>li:hover>a,.nav-dropdown>li.focus>a {color: #cc3e3e;}

.nav-dropdown>li {text-align: center;}

.header_area {
    position: fixed;
    width: 100%;
    padding: 0;
    background: transparent;
}

.header_area.sticky {
    background: transparent;
}

.me_tp_features { display: none;}

/*  */

.header_area::before {}

.header_area.sticky::before {}


.header_area .main_header_area {
    background: transparent;
    opacity: 1;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area {
    opacity: 1;
    transition: all 0.3s;
}


.header_area .navigation {
    padding: 0px 0 0px 210px;
    display: flex;
    transition: all 0.3s;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 0;
        transition: all 0.3s;
    }

    .header_area.sticky .navigation {
        padding: 0;
        transition: all 0.3s;
    }

    .header_area .stellarnav>ul {
        display: flex;
        text-align: center;
        transition: all 0.3s;
        flex-wrap: nowrap;
        border: 0;
    }

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 10px 0;
        transition: all 0.3s;
    }

    .stellarnav li {
        width: calc(100% / 4);
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area .main_header_area {
        background: #54524deb;

    }

    .pageIndex .header_area .main_header_area {
        background: transparent;

    }

    .header_area.sticky .main_header_area {
        background: #54524deb;
    }
}

@media screen and (max-width: 600px) {
    .header_area {background: #fff; position: sticky;}
    .pageIndex .swiper-slide:before {aspect-ratio: 6.5 / 10; bottom: 90px; right: 45%;}
}

@media screen and (max-width: 425px) {
    .pageIndex .swiper-slide:before {aspect-ratio: 7.5 / 10; bottom: 60px; right: 40%;}
}

/*  */


.stellarnav {
    display: flex;
    justify-content: flex-end;
    transition: all 0.5s;
}

.stellarnav>ul {
    width: fit-content;
    position: relative;
    padding: 30px 0;
    transition: all 0.5s;
}

.sticky .stellarnav>ul {
    padding: 10px 0;
    transition: all 0.5s;
}


.stellarnav>ul::before {
    content: "";
    display: block;
    width: 120%;
    height: 100%;
    background-color: #fff6;
    box-shadow: 1px 1px 10px #00000059;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 0 0 10px 10px;
    transition: all 0.5s;
    backdrop-filter: blur(13px);
}


.sticky .stellarnav>ul::before {
    top: 0;
    transition: all 1s;
}










.stellarnav>ul>li>a {
    padding: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0 20px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.stellarnav>ul>li>a b {
    font-weight: 500;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    color: #B44136;
}

/*  */


.header_area .stellarnav>ul>li>a {
    color: #333333;
    opacity: 1;
    transition: all 0.3s;
}


.pageIndex .header_area .stellarnav>ul>li>a {
    color: #000000;
}



.header_area.sticky .stellarnav>ul>li>a {
    color: #000000;
    opacity: 1;
    transition: all 0.5s;
    /* transition-delay: 1s; */
}

.header_area .stellarnav>ul>li>a:hover,
.header_area.sticky .stellarnav>ul>li>a:hover {
    transition: all 0.3s;
}






/*  */


.stellarnav li.has-sub>a:after {
    display: none;
}

/*下拉*/
.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: #cc3e3e;
    ;
    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 {}




.stellarnav li li a {
    padding: 10px 10px;
    border-left: 0px #B44136 solid;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.stellarnav li li a:hover {
    border-left: 5px #B44136 solid;
    transition: all 0.3s;
}

.stellarnav ul ul {
    background: #fff;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 0px;
}



@media screen and (max-width: 1440px) {
    .header_area .navigation {}

    .nav-brand {
        display: inline-block;
        width: 130px;
    }

    .main_header_area .container {
        max-width: 90%;
    }
}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 0;
    }


}



@media screen and (max-width: 768px) {
    .header_area .navigation {
        justify-content: center;
    }

    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 10px;
        width: auto;
        display: inline-block;
    }

    .stellarnav .menu-toggle span.bars span {
        background:#000000;
    }

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #000000;
        display: block;
        transform: scale(0.9);
    }

    .stellarnav>ul {
        text-align: center;
        padding: 0px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #cc3e3e;
        color: #fff;
        height: fit-content;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        display: flex;
        flex-direction: column;

    }

    .stellarnav>ul::before {
        display: none;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 10px;
        border: 0;
    }

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }

    .stellarnav.mobile li.open {
        background: #fff;
    }

    .stellarnav.mobile ul ul {
        background-color: #fff;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 1px #cc3e3e solid;
    }

    .stellarnav.mobile li a {
        text-align: left;
        border-bottom: 0;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 15px;
        padding-left: 25px;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #fff;
    }

    .stellarnav.mobile ul ul li {
        background-color: #fff;
    }

    .stellarnav.mobile li.open li.open {
        background: #171717e0;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #cc3e3e;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #cc3e3e;
    }

    .header_area .stellarnav>ul>li>a {
        color: #666666;
        transition: all 0.3s;
    }
    .pageIndex .header_area .stellarnav>ul>li>a {
    color: #666666;
}

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav .dd-toggle {
        top: 17px;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        width: 15px;
    }

    .stellarnav a.dd-toggle .icon-plus::after {
        width: 15px;
    }

    .stellarnav.mobile>ul>li:nth-child(4) ul li:nth-child(1) {}

    .header_area.sticky .stellarnav>ul>li>a {
        color: #666666;
        transition: all 0.3s;
    }

    .header_area .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }
}


@media only screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 15px 10px;
    }
}



.page {}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/

.nav-brand img {
    position: relative;
    top: 0px;
    max-width: 100%;
    transition: all 0.3s;
}

.pageIndex .header_area a.nav-brand::before {
    content: "";
    display: block;
    background: #fff6;
    box-shadow: 1px 1px 5px #00000059;
    width: 90%;
    height: 105%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: -2;
    border-radius: 0 0 25px 25px;
    transition: all 0.3s;
    backdrop-filter: blur(13px);
}

.pageIndex .header_area a.nav-brand::before {
    top: -280px;
}

.header_area a.nav-brand::before {
    content: "";
    display: block;
    background: #fff6;
    box-shadow: 1px 1px 5px #00000059;
    width: 90%;
    height: 105%;
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: -2;
    border-radius: 0 0 25px 25px;
    transition: all 0.3s;
    backdrop-filter: blur(13px);
}

.header_area.sticky a.nav-brand::before {
    top: -5px;
    transition: all 1s;
}


.nav-header {
    position: absolute;
    z-index: 123;
    top: 5px;
    left: 0;
}

.nav-header img {
    opacity: 1;
    transition: all 0.5s;
}

.sticky .nav-header img {
    opacity: 1;
    transition: all 1s;
    transition-delay: 1.3s;
}




.nav-brand {
    display: inline-block;
    width: 150px;
}

@media screen and (max-width: 1024px) {
    .nav-brand {
        width: 100px;
    }

    .header_area .nav-header {}

    .header_area.sticky .nav-header {}

    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }

    .header_area.sticky a.nav-brand::before {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;
    }

    .stellarnav>ul>li>a {
        margin: 0 10px;
    }

}











@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .header_area .main_header_area {
        backdrop-filter: none;
    }

    .header_area .nav-brand {
        display: inline-block;
        width: 60px;
        transition: all 0.5s;
    }

    .header_area.sticky .nav-brand {
        display: inline-block;
        width: 60px;
        transition: all 0.5s;
    }

    .header_area.sticky a.nav-brand::before {
        width: 160%;
    }

    .header_area a.nav-brand::before {
        display: none;
    }

    .header_area.sticky a.nav-brand::before {
        display: none;
    }

    .header_area .nav-header {
        position: relative;
        text-align: center;
        display: block;
    }

    .nav-header {
        z-index: 0;
        top: -13px;
    }

    .footer_logo {
        display: block;
        margin: 0 auto;
        width: 100px;
    }

    .header_area.sticky .nav-header {
        display: block;
        top: 5px;
    }

    .header_area .nav-header {
        position: relative;
        text-align: center;
        display: block;
        top: 5px;
    }

    .header_area.sticky .main_header_area {
        backdrop-filter: none;
        background: #fff;
    }

    .me_tp_features {
        display: none;
    }

    .stellarnav li {
        width: calc(100% / 1);
        text-align: center;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*電腦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: 48px 0 0;
    border-top: 1px solid #FAFAFA;
    font-size: 13px;
}

.footer_logo {
    max-width: 150px;
    margin: -8px 0 0;
}

.footer_logo img {
    max-width: 100%;
    display: block;
}

.footer .center {
    max-width: 1400px;
    padding: 0 5%;
}

.footer_menu a:first-child {
    display: none;
}

.footer_info {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    font-weight: 400;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    grid-gap: 0;
}

.footer_info,
.footer_info li {
    padding: 0;
}

.footer_info ul {
    display: flex;
    width: calc(90% - 4vw);
    letter-spacing: 0;
    padding: 0 0 36px;
}

.footer_info li:nth-child(1) {
    width: 100%;
}

.footer_info li p,
.footer_info li p a {
    color: #000000;
    transition: all 0.5s;
}

.footer_info li p {
    display: inline-block;
    width: 100%;
    letter-spacing: 0px;
    line-height: 200%;
}

.footer_info li:nth-child(2) {
    width: 100%;
    position: relative;
}

.footer_menu {
    width: max-content;
    position: absolute;
    right: 0;
}

.footer_menu a {
    padding: 6px 12px;
    border: none;
    color: #666;
    background: transparent;
    margin: 0;
    transition: all 0.5s;
}

.footer_info li p a:hover,
.footer_menu a:hover {
    color: #B44136;
    background: none;
}

/*改字*/
.footer_info li p.tel:before {
    content: '服務專線：';
}
.footer_info li p.line:before {
    content: '官方 Line ID：';
}
.footer_info li p.mail:before {
    content: '服務信箱：';
}
.footer_info li p.add:before {
    content: '店家地址：';
}
.footer_info li p.add2:before {
    content: '服務時間：';
}

.copy,
.copy a {
    color: rgba(0, 0, 0, .25);
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
    font-weight: 400;
}

.copy a:hover {
    color: #C9C9C7;
}

.copy {
    text-align: right;
    padding: 5px calc(5% + 12px) 60px;
    border-top: none;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: flex-end;
}

.box_link {
    display: none;
}


@media screen and (max-width: 1360px) {
    .footer_info {
        flex-direction: column;
        gap: 10px;
    }

    .footer_info ul {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .footer_menu {
        position: static;
        width: 100%;
    }

    .footer_info ul {
        gap: 20px;
        padding: 0 0 8px;
        flex-direction: column;
    }

    .footer_menu a {
        margin-left: -12px;
        margin-right: 16px;
        margin-bottom: 4px;
    }

    .footer .center {
        padding: 0 5%;
    }

    .copy {
        text-align: left;
        padding: 5px 5% 60px;
        flex-direction: row-reverse;
    }

    .footer_info li+li {
        margin-top: 0;
    }

    .footer_logo {
        max-width: 140px;
    }
}

@media screen and (max-width: 768px) {
    .footer.with_shopping_mode {
        padding: 40px 0;
    }

    #to_top {
        bottom: 68px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;}
#content{
background-image: url(https://pic03.eapple.com.tw/ylcstudio/i_blog_bg.jpg);
position: relative;
height: auto;
background-size: cover;
}
.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 {
    width: 100%;
    height: 350px;
    position: relative;
    background: #e9dccf94;
    padding: 100px 0;
    width: 100%;
    margin: 0 auto;
    height: 40vw;
    max-height: 350px;
    border-radius: 0 0 3vw 3vw;
    overflow: hidden;
}

.banner:after {
    content: ' ';
    background-color: #f4f2ec;
    width: 200vw;
    height: 185vw;
    opacity: 0.4;
    position: absolute;
    top: -81vw;
    left: 50%;
    margin-left: -100vw;
    margin-top: -100vw;
    border-radius: 43%;
    animation: rotate 9000ms infinite linear;
}

.banner:before  {
    content: ' ';
    background-color: #d6d4cd;
    width: 200vw;
    height: 185vw;
    opacity: 0.2;
    position: absolute;
    top: -81vw;
    left: 50%;
    margin-left: -100vw;
    margin-top: -100vw;
    border-radius: 43%;
    animation: rotate 12000ms infinite linear;
}


@keyframes rotate {
    0%{
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(360deg);
    }
}

.banner h5 {
    font-size: 42px;
    color: #333;
    font-weight: 400;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: 2px;
    z-index: 5;
}

.banner h5:after {
    content: "CASES";
    display: block;
    font-size: 24px;
    color: #333;
    font-family: "Cinzel", serif;
    padding-top: 8px;
    letter-spacing: 1px;
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/*大範圍*/
.blog_box {padding: 0;display: flex;justify-content: space-between;flex-wrap: wrap;}
/*側邊*/
.blog_le {padding: 0;}
h5.blog_le_t{text-align: center;margin-bottom: 0;}
h5.blog_le_t em,h5.blog_le_t span{display: none;}
.blog_search input[type=search]{border-radius: 10px;}
.accordion li .link a {font-size: 13px;font-weight: 500;letter-spacing: .6rem;text-align: center;}
.blog_le .accordion {border-radius: 15px;}
.blog_le .accordion li{transition: all .8s;}
.blog_le .accordion li .link i {font-size: 12px;}
.blog_le .accordion li.open .link {background: #666;}
.blog_le .accordion li.open .link a{color: #fff;}
.blog_le .accordion li.open .link i{color: #fff;}
.submenu a {padding: 12px 12px 12px 30px;background: #fff;font-size: 12px;}
.submenu a i {font-size: 12px;color: #ccc;left: 10px;transition: all .5s;}
.submenu li.on_this_category a, .submenu a:hover {background: #aaa;}
.submenu li.on_this_category a i, .submenu a:hover i{color: #fff;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: #D2C6BA !important;}

/*分類頁*/
.blog_ri {padding: 0 0 0 50px;}
.blog_page h4.blog_category_title{display: none;}
.blog_subbox {grid-template-columns: 1fr; grid-gap: 40px;}
.subbox_item a {grid-template-columns: 300px 1fr;align-items: center;grid-gap: 50px;padding-right: 50px;}
.subbox_item a:before {font-size: 10px;padding: 5px 20px;background: #D2C6BA;color: #fff;letter-spacing: 0;
	bottom: auto;right: 0;left: auto;top: 0;}
.subbox_item a:after {background: rgba(256,256,256,.5);border: none;}
.blog_list_ri h5 {color: #444;font-weight: 400;}
.blog_list_ri em {font-size: 12px;}
.blog_list_ri p {font-weight: 400;letter-spacing: .2rem;line-height: 160%;font-size: 12px;margin-top: 20px;}
.blog_list_le {aspect-ratio: auto;}
.blog_list_le img {/*height: 20vw;*/ max-height: 280px;}
/*文章頁*/
h4.blog_category_title {padding: 0;font-size: 20px;letter-spacing: .4rem;margin-bottom: 0;font-weight: 400;}
.blog_shareData{border-bottom: 1px solid #eee;padding-bottom: 10px;}
.toShareNews b{font-size: 12px;font-weight: 400;}
.toShareNews a object{max-width: 20px;}
.articel_mainPic{display: none;}/*清單縮圖*/
.blog_back {grid-gap: 0;width: 100%;}
.blog_back a.article_btn_prev{background: transparent;color: #888;border: 1px solid #D2C6BA;font-size: 13px;padding: 12px; border-radius: 10px 0 0 10px;}
.blog_back a.article_btn_next {background: transparent;color: #888;border: 1px solid #D2C6BA;font-size: 13px;padding: 12px; border-radius: 0 10px 10px 0;}
.blog_back a.article_btn_back{background: #D2C6BA ;padding: 12px;font-size: 13px;}
.news_related{padding: 60px 0 30px;border-top: 1px solid #333;margin-top: 100px;background: transparent;}
.news_related h6 {max-width: 1400px;margin: 0 auto 30px;}
.news_related h6 span:before {font-size: 18px;letter-spacing: .6rem;font-weight: 500;color: #555;}
.news_related_list {background: transparent;grid-template-columns: repeat(4, 1fr);max-width: 1400px;width: 94%;}
.news_related_list li figure {aspect-ratio: auto;}
.news_related_list li a{padding: 0; background: #fff6; box-shadow: 1px 1px 10px #00000059; border-radius: 10px;}
.news_related_list li a img {/*height: 20vw;*/ max-height: 280px; border-radius: 10px 10px 0 0;}
.news_related_list li a p {font-size: 14px;width: 90%;line-height: 1.4;margin: 20px auto 20px;padding: 0;}
.lastPage {background: #D2C6BA;font-size: 12px; border-radius: 10px;}
/*首頁*/
.module_i_news {padding: 80px 0;}
.module_i_news section {max-width: 1800px;width: 94%;}
.module_i_news .title_i_box {margin-bottom: 0;}
.module_i_news ul {grid-template-columns: repeat(4, 1fr);}
.module_i_news li a {grid-template-columns: 1fr;}
.i_blog_le {aspect-ratio: 4 / 3;}
.i_blog_ri h5 {font-size: 18px;letter-spacing: 0;}
.i_blog_ri p {font-size: 13px;line-height: 1.4;}

@media screen and (max-width: 1200px){
	/*分類頁*/
	.blog_list_le img{height: 25vw;}
	/*文章頁*/
	.news_related_list {grid-template-columns: repeat(2, 1fr);}
	.news_related_list li a img {height: 25vw;}
	/*首頁*/
	.module_i_news ul {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 1024px){
	/*側邊*/
	.blog_le {width: 180px;}
	.accordion li .link a {letter-spacing: .2rem;padding: 12px 10px;}
	/*分類頁*/
	.blog_ri {padding: 0 0 0 30px;width: calc(100% - 200px);}
	.subbox_item a {padding-right: 0;grid-template-columns: 220px 1fr;grid-gap: 30px;}
}
@media screen and (max-width: 960px) {
	/*分類頁*/
    .subbox_item {border-bottom: none;}
}
@media screen and (max-width: 768px){
	/*側邊*/
	.blog_le{padding: 0;width: 100%;}
	/*分類頁*/
	.blog_ri {padding: 0;width: 100%;}
	.blog_list_ri{padding: 0;}
	.blog_list_ri h5 {font-size: 16px;}
	/*文章頁*/
	.blog_le, .blog_ri{margin-bottom: 50px;}
	.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back{font-size: 12px;}
	.lastPage{font-size: 12px;}
	/*首頁*/
	.module_i_news li {border-bottom: none;}
}
@media screen and (max-width: 600px){
	/*分類頁*/
	.subbox_item a {grid-template-columns: 1fr;}
	.blog_list_le img {height: 280px;}
	/*文章頁*/
	.news_related_list li a img {height: 150px;}
}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
.module_i_news{background: url(https://pic03.eapple.com.tw/ylcstudio/i_blog_bg.jpg);padding: 80px 0 80px;}
.module_i_news section {max-width: 1400px;}
.module_i_news_list{padding: 50px 0;}
.module_i_news ul {grid-template-columns: repeat(4, 1fr);grid-gap: 0 3%;}
.module_i_news li a {background: #fff;grid-gap: 0;box-shadow: 0 0 10px 10px rgba(0, 0, 0, .02);
    border-radius: 10px;overflow: hidden;}
.module_i_news li a:hover:before, .module_i_news li a:hover:after{display: none;}
.i_blog_le{position: relative; aspect-ratio: 5 / 3;}
.i_blog_le:before{content: "";position: absolute;width: 100%;height: 100%;border: 15px solid rgba(256,256,256,.3);
transition: all .5s;transform: scale(1.2);z-index: 100;}
.i_blog_le img{transition: all .5s;}
.i_blog_ri {padding: 25px 25px 35px;}
.i_blog_ri h5 {font-size: 24px;-webkit-line-clamp: 2;color: #333;}
.i_blog_ri em {margin: 5px 0 25px;font-size: 12px;font-weight: 400;}
.i_blog_ri p {line-height: 1.8;}
.module_i_news li a:hover .i_blog_le:before{transform: scale(1);}
.module_i_news li a:hover .i_blog_le img{transform: rotate(3deg) scale(1.1);}
.module_i_news .title_i_box h6{display: none;}
.module_i_news .title_i_box h4 { font-size: 26px; color: #333; font-weight: 400; font-family: "Noto Sans TC", sans-serif; letter-spacing: 2px;}
.module_i_news .title_i_box h4::after{content: "CASES"; display: block; font-size: 18px; color: #333;
 font-family: "Cinzel", serif; padding-top: 8px; letter-spacing: 1px;}
.animated-arrow{background: #D2C6BA; border-radius: 10px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




