@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=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');


body {
    font-family: "Philosopher", "Noto Serif TC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pageIndex .main_part {
    border-top: none;
}

body {
    overflow: overlay;
}

&::-webkit-scrollbar {
    background: #000;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #000;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #000;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid slategrey;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}


#content_main {
    background: #1d0b29;
}

#content {
    width: 100%;
    min-height: 80vh;
    background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-05.jpg);

}

.main_part {
    max-width: 1400px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #402254;
}

.swiper-pagination {
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}

.swiper-pagination {
    display: none;
}

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    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;
    }

    .swiper-slide img {
        height: auto;
        width: 200%;
        position: relative;
        left: -50%;
    }
}





.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-05.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-07.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}


.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-06.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-08.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}










.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    content: "";
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::before {
    content: "";
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}





.swiper-slide img {}


@keyframes banner-img {
    0% {
        filter: brightness(0.1);
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        filter: brightness(1);
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes banner-bg {
    0% {
        height: 95%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

@keyframes banner-bg-2 {
    0% {
        filter: brightness(0.1);
        opacity: 0;
    }

    100% {
        filter: brightness(1);
        opacity: 1;
    }
}



@keyframes bannerScrollAnimation {

    0%,
    100% {
        bottom: 81px;
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        bottom: 90px;
        border-color: #fff;
    }
}

@media screen and (max-width: 768px) {

    @keyframes bannerScrollAnimation {

        0%,
        100% {
            bottom: 10px;
            border-color: rgba(255, 255, 255, 0.5);
        }

        50% {
            bottom: 20px;
            border-color: #fff;
        }
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-child(1):before {
        width: 100%;
        max-width: 100%;
        background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-10.jpg );
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 0);
        animation: none;
        height: 100%;
        opacity: 1;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-child(2):before {
        width: 100%;
        background-image: url(https://pic03.eapple.com.tw/ignizfineart/bg-11.jpg );
        max-width: 100%;
        margin: 0 auto;
        left: 50%;
        transform: translate(-50%, 0);
        animation: none;
        height: 100%;
        opacity: 1;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::after {
        display: none;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::after {
        display: none;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 1200px;
}

.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: #1C88AC;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #1C88AC;
}

.nav-dropdown>li {
    text-align: center;
}

/*  */

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    background: transparent;
}



.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area {
    background: #000000b0;
    box-shadow: #00000040 1px 1px 5px;
    transition: all 0.3s;
}




.header_area .navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: block;
    transition: all 0.3s;
}

.header_area.sticky .navigation {
    padding: 10px 0;
    transition: all 0.3s;
}


.header_area .stellarnav {
    position: relative;
    width: 100%;
    z-index: 9900;
    line-height: normal;
    text-align: center;
    opacity: 0;
    transition: all 0.3s;
}

.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
}


.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.stellarnav>ul>li:nth-child(4) {
    margin-right: 20%;
}












@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

}


@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 {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 30px 0;
        transition: all 0.3s;
    }
}

@media screen and (max-width: 768px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area {
        background: #fff;
        width: 100%;
        height: 60px;
    }

}

/*  */


/*LOGO設定*/
.nav-header {
    position: absolute;
    z-index: 99999999;
    top: -10px;
    max-width: 91px;
    left: 50%;
    transform: translate(-50%, 0);
    overflow: hidden;
    border-radius: 70px;
    transition: all 0.5s;
}

.nav-header:hover {
    top: 0;
    max-width: 110px;
    transition: all 0.5s;
}


.sticky .nav-header::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(118deg, transparent 0%, transparent 45%, #ffffff3b 50%, #ffffff6b 55%, #ffffff3a 60%, transparent 65%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000000;
    opacity: 0;
    animation: bg-shin 2s infinite cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


@keyframes bg-shin {
    0% {
        transform: translate(-100%, 0%);
    }

    100% {
        transform: translate(100%, 0%);
    }

}

.sticky .nav-header:hover:after {
    opacity: 1;
}

.sticky .nav-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #1d0b29b9;
    opacity: 0;
    transition: all 0.5s;
}

.sticky .nav-header:hover::before {
    opacity: 1;
    transition: all 0.5s;
}

.nav-brand img {
    width: 100%;
}

.header_area .nav-brand,
.header_area .nav-brand:focus {
    display: block;
    position: relative;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    padding: 20px 34px;
    width: 0;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand,
.header_area .nav-brand:focus {
    width: 100%;
    transition: all 0.3s;
}



/* 其他分頁 LOGO */
.header_area .nav-brand img {
    transition: all 0.5s cubic-bezier(1, -0.02, 1, -0);
}



/*  */







.me_tp_features {
    display: none;
}



.stellarnav>ul>li.has-sub>a {
    padding-right: 0;
}




.stellarnav>ul>li>a {
    padding: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0 25px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

/*  */


.header_area .stellarnav>ul>li>a {
    color: #fff;
    transition: all 0.3s;
}

.header_area.sticky .stellarnav>ul>li>a {
    color: #fff;
    transition: all 0.3s;
}

.header_area .stellarnav>ul>li>a:hover,
.header_area.sticky .stellarnav>ul>li>a:hover {
    color: #fff;
    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: #1C88AC;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.stellarnav li li a {
    padding: 10px 10px;
    border-left: 0px #1C88AC solid;
    background: #fff;
    color: #555;
    font-size: 14px;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    border-left: 10px #1C88AC solid;
    transition: all 0.3s;
}

.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
}

.stellarnav ul ul {
    width: 160px;
}

.stellarnav ul ul ul {
    top: 0;
    left: 180px;
}




@media screen and (max-width: 1440px) {
    .stellarnav>ul>li>a {
        margin: 0;
    }


}

@media screen and (max-width: 1024px) {
    .stellarnav>ul>li:nth-child(4) {
        margin-right: 40%;
    }

    .stellarnav>ul>li>a {
        font-size: 14px;
    }

}






@media screen and (max-width: 768px) {

    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 10px;
        width: auto;
        display: inline-block;
        opacity: 1;
    }

    .nav-header {
        position: absolute;
        z-index: 0;
        top: 0px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .stellarnav .menu-toggle span.bars span {
        background: #555555;
    }

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #555555;
        display: block;
        transform: scale(0.9);
    }

    .stellarnav .menu-toggle {
        padding: 0;
    }

    .stellarnav>ul {
        text-align: center;
        padding: 0px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #1C88AC;
        color: #fff;
    }

    .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 {
        border-right: 0px #eee solid;
        background-color: #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 10px;
        border: 0;
        font-size: 16px;
        font-weight: bold;
    }

    .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 #1C88AC solid;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 15px;
    }

    .header_area.sticky .stellarnav>ul>li>a {
        color: #666;
        transition: all 0.3s;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #fff;
    }

    .header_area.sticky .nav-brand,
    .header_area .nav-brand:focus {
        width: 120px;
    }

    .header_area .nav-brand,
    .header_area .nav-brand:focus {
        width: 100px;
    }

    .stellarnav>ul>li:nth-child(4) {
        margin-right: 0;
    }

    .stellarnav li li a {
        padding: 10px 10px;
        border-left: 0px #1C88AC solid;
        background: #000000c7;
        color: #666;
        font-size: 14px;
        transition: all 0.3s;
    }

    .stellarnav.mobile ul ul li {
        background-color: transparent;
    }

    .stellarnav.mobile li.open li.open {
        background: #fff;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
        top: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #1C88AC;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #1C88AC;
    }

    .header_area .stellarnav>ul>li>a {
        color: #666666;
        transition: all 0.3s;
    }

    .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;
    }

    .header_area .main_header_area {
        background: #fff;
        height: 0;
        transition: all 0.3s;
    }

    .stellarnav.mobile li li.has-sub li.drop-left a {
        padding: 10px 40px 10px 30px;
        background: #0000002e;

    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 0;
    background: #110816;
}

.footer_menu {
    border-bottom: none !important;
}

.copy {
    background: #000;
    color: #fff;
    border: none;
}

.copy a {
    color: #fff;
}

.footer_menu a:hover {
    background: #402254;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    color: #fff;
}

.footer_info li p a {
    color: #fff;
}

.footer_info {
    padding-right: 0px;
    align-items: center;
}

.footer_info li:nth-child(1) {
    text-align: right;
}

.footer_info li:nth-child(2) {
    text-align: right;
}

.footer .center {
    position: relative;
    max-width: 90%;
    padding: 60px 0;
}

.footer_logo {
    max-width: 100px;
}




.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
    border-bottom: 1px #fff solid;
}



@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    width: 100%;
    padding: 0;
    height: 455px;
    background-position: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 40px;
}

.banner h5 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    letter-spacing: 20px;
}

.banner h5::before {
    content: "";
    display: block;
    font-size: 40px;
    color: #402254;
    font-family: "Space Grotesk";
    letter-spacing: 0.2em;
    text-align: center;
}

.banner.banA h5::before {
    content: "注意事項";
}

.banner.banB {
    display: none;
}

.banner.banC {}



/*  */
.banner.banE {
    background: url(https://pic03.eapple.com.tw/ignizfineart/banner-06.png);

}

.banner.banE h5::before {
    content: "CASE";
}

/*  */




.banner.banF {}

.banner.banF h5::before {}

.banner.banblog {}



/*  */
.banner.banblog {
    background: url(https://pic03.eapple.com.tw/ignizfineart/banner-07.png);
}

.banner.banblog h5::before {
    content: "NEWS";
}

/*  */

/*  */
.banner.banF {
    background: url(https://pic03.eapple.com.tw/ignizfineart/banner-08.png);
}

.banner.banF h5::before {
    content: "SHOPS";
}

/*  */




@media screen and (max-width: 1440px) {
    .banner {}

}

@media screen and (max-width: 1024px) {
    .banner {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-right: 0%;
        padding-bottom: 10%;
        background-position: top center;
        background-image: url(https://pic03.eapple.com.tw/ignizfineart/banner-06.jpg);
        background-size: contain;
        background-color: #0c0c0c;
    }

    .banner h5 {
        text-align: center;
    }

    .banner.banF {}

    .banner.banblog {}

    .banner.banD {}

    .banner.banA {}
}

@media screen and (max-width: 768px) {
    .banner {
        display: flex;
        justify-content: center;
        padding-right: 0%;
        background-position: center;
        height: 640px;
    }

    .banner h5 {
        font-size: 30px;
    }

}

@media screen and (max-width: 500px) {
    .banner {
        height: 500px;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */

.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.product_page .show_content {
    margin: auto;
    padding: 10px 0;
}

.product-layer-two li a {
    background: transparent;
}

.products-list {
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 4 - 20px), 1fr));
    grid-gap: 20px;
}

.products-list .pic {}

.products-list .item a:hover .more {
    background: #402254;
    color: #fff;
}

.product-layer-two {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.products-list .item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin-bottom: 30px;
}

.product-layer-two::after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    background-color: #0000006b;
    box-shadow: inset 0px 0.2px 2px #000;
    margin: 0;
    transform: translate(0, -50%);
    z-index: 0;
}






.products-list .more {
    border: 0;
    background: transparent;
    color: #595959;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    height: fit-content;
    margin-top: 10px;
    border: 1px #595959 solid;
    font-weight: bold;
}

.products-list .pic img {
    max-width: 100%;
    transition: all 0.3s;
}

.products-list a:hover .pic img {
    filter: brightness(0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #595959;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    text-align: center;
    font-weight: bold;
}

.products-list .price b.ori_price {
    color: #59595957;
    text-align: left;
}

.products-list .price {
    text-align: center;
}


.products-list .price b {
    color: #402254;
}

.inquiry_a3 {
    width: 50%;
    background: #402254;
    margin: 0 auto;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    letter-spacing: 2px;
    background: #08b3b6;
}

.prod_tabs {
    width: 100%;
}

.sidebarBtn .sp_price {
    color: #402254;
}


@media screen and (max-width: 1440px) {
    .products-list .price b {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .products-list .price b {
        font-size: 16px;
    }
}

/*外層*/



.product-layer-two li::before {
    content: "";
    display: block;
    width: 150%;
    height: 3px;
    background-color: #402254;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    z-index: 9999999;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li:hover:before,
.product-layer-two li.active::before {
    transform: translate(-50%, 0) scale(1);
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;

}






.product-layer-two li a {
    color: #595959;
    border: 0;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
}

.product-layer-two li.active a {
    border: 0;
}






/*內層*/
.lastPage {
    background: #402254;
    color: #d1d1d1;
    font-weight: bold;
}

.nextaction {
    background-color: #fff;
}

.lastaction {
    color: #fff;
    background-color: #fff;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: none;
    background: none;
}



/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 50px 0px;
}

.nextaction {
    background-color: #c1b09c;
}

.lastaction {
    color: #fff;
    background-color: #c1b09c;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}

.product_pic #bx-pager a {
    border: none;
}

.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    position: relative;
}

#number_area {
    display: none;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebarBtn {
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
    margin: 30px 0;
}

.sidebarBtn h2 {
    color: #595959;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 0;
    width: fit-content;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    letter-spacing: 7px;
    line-height: 70px;
}

.sidebarBtn h2::after {}

.pd_tabTitle li {
    border-bottom: 0;
}

.pd_tabTitle li.activeTab a {
    font-size: 20px;
    font-weight: bold;
    color: #595959;
}

.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: #402254;
}


.edit {
    COLOR: #595959;
}





.sidebarBtn {
    color: #bebebe;
}

.sidebarBtn .price {
    font-size: 24px;
    margin-top: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebarBtn .price::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #595959;
    margin: 10px 0 50px;
}


.product_info {
    display: none;
}

.product_info li span {
    color: #bebebe;
}

#bx-pager h6 {
    display: none;
}

ul.prod li:nth-of-type(2) {
    display: none;
}

ul.prod li h3.prod-thumb {
    color: #d6bfa9;
    font-family: 'Noto Sans TC';
    font-size: 24px;
    text-align: left;
    background: transparent;
    padding: 0;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c3b29e;
    margin: 20px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #dec7b1a6;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #bebebe;
}

.toShare {
    display: none;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #bebebe;
}

.qaform .breakF {
    border: 1px #939393 solid;
    background: #00000061;
    color: #fff;
}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #939393 solid !important;
    color: #bebebe;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #00000071;
    transition: all 0.5s;
}

/*  */

.prod_related {
    background: #0000008f;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #fff;
    font-family: "Noto Sans TC";
}

.related_list li a {
    display: block;
    padding: 5%;
    background: transparent;
    transition: all 0.3s;
}

.related_list li a:hover {
    background: transparent;
}

.related_list li a p {
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
    font-weight: bold;
}

.related_list li {
    transition: all 0.5s;
}

.related_list li:hover {
    transform: scale(1.05);
    transition: all 0.5s;
}

.mobile_product_name {
    display: none;
}

.sidebarBtn .price span {
    display: block;
    font-size: 24px;
    margin: 0 10px;
}


/* 結帳 */

.separate_title {
    font-size: 30px;
    color: #fff;
    padding: 10px 0 10px 40px;
    background: transparent;
}

.formbox_form li .form__label {
    color: #fff;
}

/*  */
.shopping-cart .cart_head {
    background: #42512a;
    color: #fff;
}

.shopping-cart .row {
    position: relative;
    height: auto;
    margin: 25px 0;
    clear: both;
    background-color: transparent;
    color: #fff;
}

.shopping-cart .cell {
    background: transparent;
    color: #fff;
}

.shopping-cart .cell a {
    background: transparent;
    color: #fff;
}

.total_amount li {
    margin: 10px 0;
    color: #fff;
}

.form label.Bigcheck {
    color: #fff;
}

.form label {
    color: #fff;
}

.declaration {
    background: transparent;
}



@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {
    .products-list .item {
        width: calc(100% / 3 - 3%);
    }

}



@media screen and (max-width: 768px) {
    .car_page .information_left {
        display: none;
    }

    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .product-layer-two li {
        width: calc(100% / 3 - 2%);
        text-align: center;
        margin: 10px 1%;
    }

    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }

    .product-layer-two li:hover>a {
        padding-left: 20px;
    }

    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
        max-width: 100%;
    }

    .products-list .item {
        width: 49%;
    }

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .item {
        width: calc(100% / 2 - 2.5%);
    }

    .sidebarBtn h2 {
        font-size: 40px;
        padding: 20px 40px;
    }
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }

    .product-layer-two li {
        width: calc(100% / 2 - 2%);
    }

    .products-list .more {
        font-size: 14px;
    }

    .products-list .item {
        width: 100%;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現*/
.blog_back a.article_main_header_area_back {
    background: #402254;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    width: fit-content;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #fff;
    display: none;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 1440PX;
    margin: auto;
    padding: 0px;
}

.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}

.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
    /* padding: 0; */
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
}

.blog_search form {
    width: 20%;
    position: relative;
}

.blog_le .accordion {
    margin: auto;
    border-radius: 0;
    border: 1px #595959 solid;
    overflow: visible;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
    background: transparent;
    border-radius: 10px;
}

.accordion li .link a {
    font-size: 20px;
    color: #595959;
    font-weight: bold;
    padding: 10px 15px;
    transition: all 0.3s;
}

.accordion li .link a::before {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    background-color: #402254;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    z-index: -1;
}

.accordion li .link a:hover:before,
.accordion>li.on_this_category .link a::before {
    width: 140%;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    transition: all 0.3s;
}

.accordion li+li .link {
    border: 0;
}



.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #D1D1D1 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=search]:focus,
.blog_search input[type=search]:valid {
    top: -20px;
    font-size: 16px;
    color: #333;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_search input[type=search]:focus {
    color: #ccc;
}


.news_related {
    background: #0000008f;
}

.news_related_list li a {
    padding: 0;
    background: transparent;
}

.news_related_list li a p {
    font-size: 16px;
    color: #fff;
    line-height: 2;
    font-weight: bold;
    margin-top: 10px;
}

.news_related h6 span:before {
    font-size: 24px;
    color: #fff;
}

/* 內容 */
.blog_ri {
    width: 100%;
    padding: 0;
    min-height: 75vh;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    align-content: center;
}

.blog_list_ri h5 {
    color: #402254;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.subbox_item::after {
    width: 80%;
    height: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg) scale(1.5);
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.subbox_item:hover:after {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.blog_subbox:has(.subbox_item:hover) .subbox_item:not(:hover) {
    opacity: 0.7;
    filter: blur(1px);
}


.subbox_item img {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.subbox_item a:after {
    display: none;
}

.subbox_item a:before {
    display: none;
}

.blog_list_le {
    height: 0;
    width: 100%;
    line-height: 0;
    padding-bottom: calc(100% / 4 * 3);
    overflow: hidden;
    position: relative;
}

.subbox_item {
    width: calc(100% / 3 - 20px);
    margin: 0 10px;
    margin-bottom: 50px;
    overflow: hidden;
}

.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: transparent;
    flex-direction: row;
}

.blog_list_ri {
    width: 100%;
    margin-left: 0;
    padding: 5%;
    min-height: 170px;
}

.blog_list_le img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri em {
    font-size: 14px;
    color: #5959598a;
    font-style: normal;
    display: block;
    margin: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.blog_list_ri p {
    font-size: 15px;
    color: #595959;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 160%;
}


.blog_box_edit {
    color: #fff !important;
}


.blog_back a.article_btn_back {
    background: #402254;
}



@media screen and (max-width: 1440px) {
    .blog_page .main_part {
        max-width: 80%;
    }
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: calc(100% / 2 - 20px);
        margin: 0 10px;
        margin-bottom: 50px;
        overflow: hidden;
    }
}


@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: 0px #eee solid;
    }

}

@media screen and (max-width: 768px) {
    .blog_le .accordion {
        display: none;
    }

    .blog_search form {
        width: 50%;
    }

    .blog_search {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    .subbox_item {
        width: 100%;
    }

}

/**/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
}

.show-list {
    grid-template-columns: repeat(3, 1fr);
}

.show-list .item:hover .show_name {
    color: #402254;
}

.show-list .show_pic {}

.show-list .show_pic img {}

/*次分類頁面*/
.other_album_choice li {
    background: #402254;
}

.other_subalbum li {
    background: transparent;
}

.other_subalbum li p {
    line-height: 220%;
}

.other_subalbum li a p {
    color: #595959;
}

.subalbum-menu h2 {
    color: #402254;
}

.other_subalbum li a div {}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/*照片頁*/
.pic-list .show_pic {
    height: 40vh;
    max-height: 240px;
    padding-bottom: 0;
}

.pic-list .show_pic img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.show-list .show_name {
    color: #ccc;
}

.album_fixed_title {
    display: none;
}


.album_descrip {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }
}

/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title {
    border-bottom: 1px solid #402254;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: block;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

    /*手機版LOGO設定*/
    .footer_logo {
        margin-left: unset;
        margin: auto;
        text-align: center;
    }

}

@media screen and (max-width: 600px) {

    /*手機板大圖*/
    /*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}

.blank_letter {
    color: #402254;
}

.list_before {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #fff;
    display: block;
    width: 100%;
    position: relative;
}

.list_before::after {
    display: block;
    font-size: 15px;
    color: #fff;
    display: block;
    width: 100%;
}

.contact_form li .form__label {
    color: #fff;
}

.contact_form li input.noborder {
    color: #fff;
    border: 2px #eeeeee2b solid;
    background: #0000006b;
}

.contact_form li textarea.noborder {
    color: #fff;
    border: 2px #eeeeee2b solid;
    background: #0000006b;
}

.contact_form li.last cite {
    background: #402254;
    color: #fff;
}

.list_before.info li {
    padding-left: 32px;
    color: #ccc;
}


@media screen and (max-width: 768px) {
    .contact_form li .form__label {
        width: 85px;
        margin-left: -90px;
    }

    .contact_form li {
        padding-left: 90px;
    }

}