@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+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');

body {
    font-family: "Zen Dots", "Noto Sans TC", sans-serif;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #00aeae;
    color: #fff;
}

::selection {
    background-color: #00aeae;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fff;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #00aeae;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}


#page {}

#content_main {
    background: #fff;
    margin-top: 0 !important;
    min-height: 150vh;
}





#content {
    background-image: url(https://pic03.eapple.com.tw/spinex2014/bg-05.jpg );
    background-size: cover;
    background-position: center top;
    background-repeat: repeat-x;
}




/* 大圖 */


/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #00aeae;
}

.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 {
        height: auto;
        padding-bottom: 0%;
    }
}




/*  */

.pageIndex .swiper-wrapper .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/spinex2014/bg-08.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.pageIndex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    width: 40vh;
    height: 40vh;
    position: absolute;
    top: 15%;
    left: 12%;
    border-radius: 100%;
    background: linear-gradient(139deg, #4db1b1, #4dffff);
    filter: blur(30px);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    animation: bg-ball 5s infinite cubic-bezier(0.54, 0.4, 0.34, 0.57);
}

@keyframes bg-ball {

    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.5) rotate(150deg);
    }

}


/*  */

.pageIndex .swiper-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    background-image: url(https://pic03.eapple.com.tw/spinex2014/bg-06.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .swiper-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/spinex2014/bg-07.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: banner-bg-2 2s both 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% {
        transform: translate(200px, 0);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}



@keyframes bannerScrollAnimation {

    0%,
    100% {
        bottom: 81px;
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        bottom: 90px;
        border-color: #fff;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.header_area {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
}

.main_header_area {
    background: transparent;
}

.container {
    max-width: 80%;
}

.me_tp_features {
    display: none;
}


/*LOGO設定*/



.nav-brand img {
    width: 100%;
    max-width: 100%;
}


.nav-brand {
    width: 100%;
    transition: all 0.5s;
}

.sticky .nav-brand {
    width: 230px;
    transition: all 0.5s;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 160px;
    overflow: hidden;
    opacity: 0;
    padding: 20px;
    background: #00aeae9c;
    border: 1px #fff solid;
    border-top: 0;
    border-left: 0;
    border-radius: 0 0 30px 0;
    transition: all 0.3s;
}

.sticky .nav-header {
    opacity: 1;
    transition: all 0.3s;
}



/* 開場logo、選單 */





.pageIndex .nav-header {
    opacity: 0;
    animation: logo-action 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 1s;
}

@keyframes logo-action {
    0% {
        opacity: 0;
        transform: translate(-50%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

}


/*  */
.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    opacity: 1;
    animation: action-nav 0.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 5s;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    height: 0;
    transition: all 0.5s;
}

.header_area .me_tp_features {
    display: block;
    position: fixed;
    top: 40px;
    right: 210px;
    margin-bottom: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

.header_area.sticky .me_tp_features {
    top: 20px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 5%;
    right: 3%;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    top: 5%;
    transition: all 0.5s;
}


.header_area .stellarnav.active .menu-toggle {
    top: 3%;
    transition: all 0.5s;
}

/* 


@keyframes action-nav {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
 */


/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;
    opacity: 1;

}

.stellarnav .menu-toggle:after {
    content: "MENU";
    font-size: 12px;
    text-align: center;
    color: #a5a5a5;
    margin-top: 0px;
    opacity: 0;
}


@keyframes action-menu {
    0% {
        opacity: 0;
        transform: translate(-100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}

.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 43px;
    height: 2px;
    border-radius: 6px;
    background: #413f3e;
    margin: 0 auto 3px;
    left: 0;
    transition: 0.5s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    top: 0;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    margin: 0;
    transform: rotate(35deg) scaleX(.35) translate(33px, -10.5px);
    border-radius: 50px 50px 50px 0;
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    margin: 0;
    opacity: 1;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 23px;
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    margin: 0;
    transform: rotate(-35deg) scaleX(.35) translate(32px, 10.5px);
    border-radius: 0 50px 50px 50px;
    transition: all 0.3s;
}



.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    opacity: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    opacity: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}










/* 未開啟 */

.stellarnav.desktop>ul {
    display: flex !important;
    pointer-events: none;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    gap: 0;
    opacity: 1;
    transform-origin: 50% 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-end;
    align-items: center;
}

.stellarnav.desktop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}


/* 開啟 */
.stellarnav.desktop.active>ul {
    pointer-events: all;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.stellarnav.desktop>ul::after {
    content: "";
    display: block;
    width: 0;
    height: 100vh;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: -1;
    background-color: #ffffff;
    backdrop-filter: grayscale(1);
    border-radius: 10px;
    box-shadow: 1px 1px 10px #0000006b;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active>ul::after {
    width: 35%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.stellarnav.desktop>ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: -2;
    opacity: 0;
    backdrop-filter: blur(30px);
    pointer-events: none;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active>ul::before {
    opacity: 1;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





/* 購物籃 */
.tp_links {}

.box_search input[type=text] {
    display: none;
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(20% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #3F3F3F solid;
    border-radius: 0;
    transition: all 0.3s;
}

.box_search input[type=text]:hover {
    color: #3F3F3F;
    transition: all 0.3s;
}

.box_search input[type=text]:focus {
    color: #3F3F3F;
    transition: all 0.3s;
}

.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}


.tp_links {
    display: flex;
    width: 13vw;
    position: fixed;
    bottom: 21vh;
    right: 5%;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    display: none;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links {
    pointer-events: all;
}


.tp_links a {
    color: #a5a5a5;
    opacity: 0;
    font-size: 16px;
    transform: translate(0, 50px);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




.tp_links::before {
    content: "\f167";
    display: block;
    color: #a5a5a5;
    font-family: "Font Awesome 6 Free", 'Font Awesome 6 Brands';
    font-size: 16px;
    opacity: 0;
    transform: translate(0, 50px);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.tp_links::after {
    content: "\f3c5";
    display: block;
    color: #a5a5a5;
    font-family: "Font Awesome 6 Free", 'Font Awesome 6 Brands';
    font-weight: 900;
    font-size: 16px;
    opacity: 0;
    transform: translate(0, 50px);
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links::before,
.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links::after {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links::before {
    transition-delay: 0;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(1) {
    transition-delay: 0.2s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(2) {
    transition-delay: 0.3s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(3) {
    transition-delay: 0.4s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:nth-of-type(4) {
    transition-delay: 0.5s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links::after {
    transition-delay: 0.6s;
}



.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a i {
    transition: all 0.3s;
}

.header_area:has(.stellarnav.desktop.active) .me_tp_features .tp_links a:hover i {
    color: #fff;
    transition: all 0.3s;
}






/* 選項 */
.stellarnav>ul>li>a {
    width: 100%;
    margin: 0 20px;
    padding: 0;
    color: #413f3e;
    display: flex;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: 100%;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
    text-transform: math-auto;
    align-items: center;
    gap: 20px;
    padding: 0 12%;
}

.stellarnav>ul>li>a:hover {
    transition: all 0.3s;
}

.stellarnav>ul>li>a b {
    display: inline;
    line-height: 150%;
    height: auto;
}

.stellarnav>ul>li>a b:nth-child(1) {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-style: italic;
}
.stellarnav>ul>li>a:hover b:nth-child(1) {
    transform: scale(1.2);
}




.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 30px;
    word-break: keep-all;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 1;
    color: #00aeae30;
    font-style: italic;
}



.stellarnav>ul>li>a:hover b:nth-child(2) {
    opacity: 1;
    color: #fff;
    transform: translate(0px, 0px);
    animation: font-in both 1s ;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@keyframes font-in {
    0%{
opacity: 0;
transform: translate(100px,0);
    }
    100%{
opacity: 1;
transform: translate(0px,0);
    }
    
}




.stellarnav li {
    opacity: 1;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

.stellarnav>ul>li::before {
    /* content: ""; */
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: all;
    cursor: pointer;
}


.stellarnav>ul>li.has-sub>a {
    padding-left: 0;
    padding: 0 12%;
}




/* 選單兼具 */




/* 選單 圖片 */
/* .stellarnav > ul > li:nth-of-type(1):before{
    background-image: url(https://pic03.eapple.com.tw/spinex2014/icon-45.png);
}
.stellarnav > ul > li:nth-of-type(2):before{
    background-image: url(https://pic03.eapple.com.tw/spinex2014/icon-46.png);
}
.stellarnav > ul > li:nth-of-type(3):before{
    background-image: url(https://pic03.eapple.com.tw/spinex2014/icon-47.png);
}
.stellarnav > ul > li:nth-of-type(4):before{
    background-image: url(https://pic03.eapple.com.tw/spinex2014/icon-48.png);
}
.stellarnav > ul > li:nth-of-type(5):before{
    background-image: url(https://pic03.eapple.com.tw/spinex2014/icon-49.png);
}
.stellarnav > ul > li:nth-of-type(6):before{
    background-image: url(https://pic03.eapple.com.tw/spinex2014/icon-50.png);
} */



/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {}

.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}

.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}

.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}

.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}

.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}

.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}




/* 字 動畫 */



.stellarnav>ul>li {
    display: flex;
    width: 35vw;
    opacity: 0;
    transform-origin: 0% 0%;
    align-items: center;
    height: 10vh;
    border-bottom: 1px #a5a5a53d solid;
    overflow: hidden;
}
.stellarnav>ul>li:nth-of-type(1){
    border-top: 1px #a5a5a53d solid;

}


.stellarnav.active>ul>li::before {
    content: "";
    display: block;
    width: 0px;
    height: 100%;
    background-color: #00aeae;
    position: absolute;
    right: 0;
    border-radius: 0;
    transition: all 0.5s;
}

.stellarnav.active>ul>li:hover:before {
    width: 100%;
    transition: all 0.5s;
}

.stellarnav>ul>li:hover>a {
    color: #fff;
    transition: all 0.3s;
}
.stellarnav>ul>li>a:hover b:nth-child(2){
}



.stellarnav.active>ul>li {
    animation: up 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li:nth-of-type(1) {
    animation-delay: 0s;
}

.stellarnav>ul>li:nth-of-type(2) {
    animation-delay: 0.05s;
}

.stellarnav>ul>li:nth-of-type(3) {
    animation-delay: 0.1s;
}

.stellarnav>ul>li:nth-of-type(4) {
    animation-delay: 0.15s;
}

.stellarnav>ul>li:nth-of-type(5) {
    animation-delay: 0.20s;
}

.stellarnav>ul>li:nth-of-type(6) {
    animation-delay: 0.25s;
}

.stellarnav>ul>li:nth-of-type(7) {
    animation-delay: 0.30s;
}

/* 下拉 */
.stellarnav ul ul {
    width: 100%;
    left: 0;
    background: #621d10;
}

.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: transparent;
    color: #fff;
    border-bottom: 1px #ffffff85 solid;
    transition: all 0.3s;
}

.stellarnav li li:nth-child(1) {}

.stellarnav li li:nth-last-child(1) {}

.stellarnav li li:hover {
    background: transparent;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.stellarnav li li.has-sub>a {
    padding: 15px 10px;
}

.stellarnav li li a:hover {
    color: #fff;
    transition: all 0.3s;
}


@keyframes ul-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes up {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



@media screen and (min-width: 768px) {
    .stellarnav ul ul {
        display: none !important;
    }

}
















/* 子分類 */
.stellarnav ul ul ul {
    position: relative;
    top: 0;
    left: 0;
}

.stellarnav ul ul ul li a {
    padding: 15px 10px;
    padding-left: 20px;
    transition: all 0.3s;
}

.stellarnav ul ul ul li a:hover {
    background: #00000023;
    transition: all 0.3s;
}


@media screen and (max-width: 1440px) {
    .stellarnav.desktop>ul {
        padding: 6% 5% 0 63%;
    }

    .stellarnav.desktop.active>ul::after {
        width: 40%;
    }
}



@media screen and (max-width: 1024px) {
    .stellarnav.desktop>ul {
        justify-content: space-around;
    }

    .stellarnav>ul>li:nth-of-type(5) {
        margin-left: 0%;
    }

    .stellarnav>ul>li>a b:nth-child(1) {
        font-size: 24px;
    }

    .stellarnav>ul>li::before {
        width: 120px;
        height: 120px;
    }

    .nav-header {
        position: absolute;
        text-align: center;
    }
}


@media screen and (max-width: 768px) {
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        background: #111;
        border: none;
    }

    .nav-header {
        z-index: 0;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
        padding: 30px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: #fff;
        background: #b24a3d;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #666;
        transition: all 0.3s;
    }

    .nav-header {
        opacity: 0;
        transition: all 0.3s;
    }

    .sticky .nav-header {
        opacity: 1;
        transition: all 0.3s;
    }

    .stellarnav>ul>li::before {
        display: none;
    }

    .stellarnav>ul>li {
        width: 100%;
    }

    .stellarnav>ul>li:nth-of-type(3) {
        margin-left: 0;
    }

    .stellarnav.mobile li.open {
        background: #000;
        padding: 0;
    }

    .stellarnav li li {
        margin-bottom: 0px;
        background: #000;
    }

    .stellarnav li li:hover {
        background: #000;
    }

    .stellarnav li li a {
        color: #fff;
        font-weight: 1000;
        text-align: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: 35px;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 2%;
        transition: all 0.5s;
    }
}












/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*Footer*/
.footer {
    border-top: none !important;
    padding: 0;
    background: #413f3e;
    aspect-ratio: 2001/831;
    width: 100%;
    height: auto;
    background-image: url(https://pic03.eapple.com.tw/spinex2014/footer-03.jpg );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.footer_menu {
    border-bottom: none !important;
}

.copy {
    background: #413f3e;
    color: #fff;
    border: none;
    display: none;
}

.copy a {
    color: #fff;
}

.footer_menu a:hover {
    background: 00aeae;
}

.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;
    display: none;
}

.footer_info li:nth-child(1) {
    text-align: right;
}

.footer_info li:nth-child(2) {
    text-align: right;
}

.footer_logo img {
    filter: contrast(0) brightness(100);
}

.footer .center {
    position: relative;
    max-width: 90%;
    padding: 60px 0;
}

.footer_logo {
    max-width: 140px;
}




.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 {
        text-align: center;
        border-bottom: none !important;
    }

    .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%;
        text-align: center;
    }

    .footer_info li:nth-child(1) {
        text-align: center;
    }

    .footer_info {
        padding: 0;
    }
}

/* 浮動 */

/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    opacity: 1;
    z-index: 1;
}


.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix {
    animation: footer-in both 2s;
    animation-delay: 1s;


}

@keyframes footer-in {
    0% {
        transform: translate(100px, 0);
    }

    100% {
        transform: translate(0px, 0);
    }
}



.info_fix_links {
    display: flex !important;
    background: #565656bf;
    width: 50px;
    padding-bottom: 0;
    border: 1px #A29080 solid;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}


.info_fix_links {
    display: flex !important;
    background: #565656a1;
    width: 50px;
    padding-bottom: 0;
    border: 1px #fff solid;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}




.info_fix_default.info_fix_google {
    color: #fff;
    background-color: #eeb540;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 120px;
    align-items: center;
    align-content: center;
}

.info_fix_default.info_fix_google:hover {
    background-color: #ab822d;
}

.info_fix_links p {
    text-align: center;
    font-weight: 500;
    writing-mode: vertical-rl;
    font-size: 16px;
}


.info_fix_google img {
    width: 25px;
    margin-bottom: 5px;
}








@media screen and (max-width: 1440px) {
    .footer_info ul {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer_info li:nth-child(1) {
        width: 100%;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }
}




@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%;
    }

    .footer_info li:nth-child(1) {
        flex-wrap: wrap;
    }

    .footer_menu {
        flex-wrap: wrap;
    }
}




/* 開場MENU 浮動 */
.pageIndex .stellarnav .menu-toggle {
    opacity: 0;
    animation: action-menu 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 1s;
}


.info_fix {
    opacity: 1;
}



@keyframes action-footer {
    0% {
        opacity: 0;
        transform: translate(100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/


.banner {
    display: flex;
    background: transparent;
    background-position: center;
    background-repeat: no-repeat;
    height: 806px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0;
    position: relative;
}


.banner h5 {
    display: flex;
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: calc(100% / 12 * 2);
    text-transform: uppercase;
    letter-spacing: 10px;
}


.banner h5::before {
    content: "";
    display: block;
    font-size: 100px;
    color: #fff;
    margin-bottom: 10px;
}





/*  */
.banner.banA {
    background-image: url(https://pic03.eapple.com.tw/spinex2014/banner-04.jpg);

}

.banner.banA h5::before {
    content: "NEWS";
}

/*  */





/*  */
.banner.banE {
    background-image: url(https://pic03.eapple.com.tw/spinex2014/banner-06.jpg);

}

.banner.banE h5::before {
    content: "Case";
}

/*  */



/*  */
.banner.banC {
    background-image: url(https://pic03.eapple.com.tw/spinex2014/banner-07.jpg);

}

.banner.banC h5::before {
    content: "Contact";
}

/*  */


/*  */
.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/spinex2014/banner-05.jpg);

}

.banner.banblog h5::before {
    content: "Health";
}

/*  */



.banner.banA {}

.banner.banB {
    display: none;
}

/*  */




.banner.banD {}

.banner.banE {}

.banner.banblog {}

@media screen and (max-width: 768px) {
    .banner::after {
        margin-top: -130px;
    }

    .banner {
        padding: 20px 0;
    }
}


@media screen and (max-width: 500px) {
    .banner::after {
        margin-top: -60px;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */

.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;
}

.product-layer-two li:hover a,
.product-layer-two li.active a {
    color: #00aeae;
    transition: all 0.5S;
}

.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: #00aeae;
    color: #DEDBC4;
}

.product-layer-two {
    margin: 20px 0;
    display: flex;
    border-bottom: 1px #47474766 solid;
    justify-content: space-around;
}

.product-layer-two li i {
    color: #DEDBC4;
}

.products-list .item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin-bottom: 30px;
}

.product-layer-two::after {}






.products-list .more {
    border: 0;
    background: transparent;
    color: #707070;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    height: fit-content;
    margin-top: 10px;
    border: 1px #707070 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: 20px;
    color: #474747;
    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: #ada17ea3;
}

.products-list .price {
    text-align: center;
}


@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: 100%;
    height: 2px;
    background-color: #474747;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 1px) 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 ul {
    background: #000;
}

.product-layer-two li li {
    background: transparent;
}

.product-layer-two li li a {
    background: transparent;
}


.product-layer-two li a {
    color: #474747;
    border: 0;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 30px;
    transition: all 0.3s;
    text-align: center;
}

.product-layer-two li.active a {
    border: 0;
}






/*內層*/
.lastPage {
    background: #00aeae;
    color: #d1d1d1;
    font-weight: bold;
}

.nextaction {
    background-color: #DEDBC4;
}

.lastaction {
    color: #fff;
    background-color: #DEDBC4;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: none;
    background: none;
}



/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 80%;
    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 {
    grid-template-columns: repeat(4, 1fr);
}

#number_area {
    display: none;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
}

.sidebarBtn {
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
    margin: 30px 0;
}

.sidebarBtn h2 {
    color: #474747;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    padding: 10px 40px;
    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: #474747;
}

.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: #e6e6e6;
}


.edit {
    COLOR: #707070;
}





.sidebarBtn {
    color: #bebebe;
}

.sidebarBtn .price {
    color: #DEDBC4b6;
    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: #DEDBC4;
    margin: 20px 0 20px;
}

.sidebarBtn .sp_price {
    color: #DEDBC4;
}

.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 {}



/*  */
.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_tabs {
    width: 100%;
}

.inquiry_a1 {
    background: #00aeae;
}

.inquiry_a2 {
    background: #e66c95;
}

/*  */

.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: #07070724;
    transition: all 0.3s;
}

.related_list li a:hover {
    background: #00aeae;
    transition: all 0.3s;
}

.related_list li a p {
    font-size: 16px;
    color: #D1D1D1;
    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: #DEDBC4;
    padding: 10px 0 10px 40px;
    background: transparent;
}

.formbox_form li .form__label {
    color: #DEDBC4;
}

/*  */
.shopping-cart .cart_head {
    background: #42512a;
    color: #fff;
}

.shopping-cart .row {
    position: relative;
    height: auto;
    margin: 25px 0;
    clear: both;
    background-color: transparent;
    color: #DEDBC4;
}

.shopping-cart .cell {
    background: transparent;
    color: #DEDBC4;
}

.shopping-cart .cell a {
    background: transparent;
    color: #DEDBC4;
}

.total_amount li {
    margin: 10px 0;
    color: #DEDBC4;
}

.form label.Bigcheck {
    color: #DEDBC4;
}

.form label {
    color: #DEDBC4;
}

.declaration {
    background: transparent;
}



@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {
    .products-list .item {}

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 3 - 20px), 1fr));
    }

    .product_info_page .product-layer-two {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media screen and (max-width: 768px) {
    .product_info_page .main_part {
        max-width: 80%;
    }

    .car_page .information_left {
        display: none;
    }

    .product-layer-two {
        display: none;
    }

    .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 {}

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .item {}

    .sidebarBtn h2 {
        font-size: 16px;
        padding: 20px 40px;
        letter-spacing: 2px;
        line-height: 2;
    }
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 20px), 1fr));
    }

    .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: #00aeae;
}

.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;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
    border: 0;
}

.accordion li+li .link {
    border-top: 0;
}

.blog_page .main_part {
    width: 100%;
    max-width: 100%;
    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-bottom: 40px;
    /* 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;
    overflow: visible;
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px #47474766 solid;
}

.accordion li .link a {
    font-size: 20px;
    color: #474747;
    font-weight: 800;
    padding: 10px 30px;
    border: 0;
    transition: all 0.3s;
}

.accordion li .link a::before {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background-color: #00a6a6;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 1px);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.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: #00aeae !important;
    transition: all 0.3s;
}




.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 #c8c8c8 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;
}








/* 內容 */
.blog_ri {
    width: 100%;
    padding: 0 12%;
    min-height: 75vh;
}

.blog_subbox {
    align-content: center;
    grid-template-columns: repeat(3, 1fr);
}

.blog_list_ri h5 {
    color: #474747;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.blog_s .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);
    filter: brightness(0.8);
    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 {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.subbox_item {
    margin: 0;
    margin-bottom: 50px;
    box-shadow: 1px 1px 5px #00000054;
}

.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: #fff;
    flex-direction: row;
    gap: 0;
}

.blog_list_ri {
    width: 100%;
    margin-left: 0;
    padding: 5% 8%;
    min-height: 170px;
    opacity: 1;
    transition: all 0.3s;
}

.subbox_item a:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.3s;
}

.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: #707070;
    font-style: normal;
    display: block;
    margin: 0;
    position: absolute;
    bottom: 10px;
    right: 10%;
    font-family: "Noto Sans TC", sans-serif;
}

.blog_list_ri p {
    font-size: 15px;
    color: #707070;
    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: #00aeae;
}

.related_list li a img {}


.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;
}









.articel_mainPic {
    display: none;
}



@media screen and (max-width: 768px) {

    .subbox_item {
        width: 100%;
        border: 0;
    }

    .subbox_item img {
        transform: translate(-50%, -50%);
        filter: none;
        transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    }

    .subbox_item a .blog_list_ri {
        opacity: 1;
        position: relative;
        transition: all 0.3s;
    }

    .blog_page .main_part {
        padding: 0 5%;
    }

    .blog_list_ri em {
        bottom: 25px;
    }

    .blog_search {
        width: 100%;
        margin-bottom: 0px;
    }

    .blog_search form {
        width: 100%;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
  max-width: 1400px;
  padding: 100px 30px;
}






.show-list .item:hover .show_name {
  color: #00a6a6;
  opacity: 1;
  transition: 0.3s;
}

.show-list .show_pic {
}

.show-list .show_pic img {
  display: inline-block;
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
  height: auto;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  filter: grayscale(0.5) brightness(0.9);
  transition: all 0.3s;
}

.show-list a:hover .show_pic img {
  filter: grayscale(0) brightness(1);
  transition: all 0.3s;
}

.show-list .item:hover .show_pic img {
  transform: scale(1.05);
  transition: all 1s;
}

.show-list {
  display: flex;
}

.clearfix:before,
.clearfix:after {
  display: none;
}

.show-list .show_name {
  font-size: 16px;
  color: #1f1f1f;
  letter-spacing: 0.15em;
  margin-top: 0;
  overflow: hidden;
  height: auto;
  position: relative;
  opacity: 1;
  font-weight: 500;
  z-index: 3;
  text-align: center;
  margin-top: 10px;
  transition: all 0.3s;
}


.overlay {
  background: rgba(0, 0, 0, 0.37);
  opacity: 0.3;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
  transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.show-list .item:hover .overlay {
  opacity: 0;
  transform: scale(1);
  transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}








/*次分類頁面*/
.other_album_choice li {
  background: transparent;
  border-radius: 0;
}

.other_album_choice li a {
  color: #494949;
}

.other_subalbum li p {
  line-height: 220%;
  text-align: center;
}

.other_subalbum li a div {
  height: 0;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  display: none;
}

.other_subalbum li a img {
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
  height: auto;
  -moz-object-fit: cover;
  -ms-object-fit: cover;
  -o-object-fit: cover;
  filter: grayscale(0);
  -webkit-object-fit: cover;
  transition: all .4s;
}

.other_subalbum li a:hover img {
  transform: scale(1.02);
  transition: all 0.5s;
}

.other_subalbum li a:hover div:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: all .4s;
}

.album_fixed_title {
  display: none;
}


.album_info_page .show_content {
  padding: 0px 20px 50px;
}







/*照片頁*/
.pic-list .show_pic {
  padding-bottom: 66%;
}

.pic-list .show_pic img {
}

.show-list .item {}

.album_page .show_content {
  margin: auto;
  padding: 0;
  max-width: 100%;
}

.subalbum-menu {
  margin: 30px 0;
  padding: 0;
}

.subalbum-menu h2 {
  display: none;
}

.block {
  background: #494949;
}

.other_subalbum {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.other_subalbum li {
  display: inline-block;
  background: #fff;
  width: calc(100% / 4 - 20px);
  margin: 10px;
  border: none !important;
  position: relative;
}

.page strong,
.page a {
  display: inline-block;
  min-width: 29px;
  height: 29px;
  text-align: center;
  line-height: 29px;
  border: 0;
  border-radius: 0;
  padding: 0 10px;
  margin: 0 10px;
}

.album_fixed_title {
  display: none;
}

.other_subalbum li a {
  position: relative;
}

.album_descrip {
  color: #1f1f1f;
  font-size: 20px;
  line-height: 1.4;
}

.pic-list .item h6 {
  line-height: 220%;
  text-align: left;
  color: #D1D1D1;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 1;
  transition: all 0.3s;
}

.pic-list {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}


.other_subalbum li p {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  color: #fff;
  position: relative;
  letter-spacing: 2px;
}

.other_subalbum li:hover p {
  transition: all 0.3s;
}

.pic-list .item:hover h6 {
  opacity: 1;
  transition: all 0.3s;
}

.pic-list .item {
  position: relative;
}

.album_info_page .pic-list .show_pic {padding-bottom: 0;}



.show-list.other_subalbum .item {
  width: 100%;
  background: transparent;
}




.page {
  margin: 0;
  padding: 10px 0;
}



.pic-list {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
}

ul.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}


.pic-list .item a {
}

.pic-list .item h6 {
    padding: 0;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}
.pic-list .item a {
    margin: 0 auto 10px;
}

@media screen and (max-width: 600px) {
    .show-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}




@media screen and (max-width: 1024px) {
  .other_subalbum {
    grid-template-columns: repeat(2, 1fr);
  }
}






@media screen and (max-width: 768px) {

  /*照片頁*/
  .pic-list .item {
    width: 96%;
    margin: 10px 2%;
  }

  .album_page .show_content,
  .album_class_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 100%;
  }

  .show-list {
    flex-wrap: wrap;
  }


  .show-list .item:hover .show_name {
    opacity: 1;
  }

  .show-list.other_subalbum .item {
    width: 100%;
  }

  .pic-list {
    grid-template-columns: unset;
  }

  .other_subalbum {
    grid-template-columns: repeat(1, 1fr);
  }
}


@media screen and (max-width: 500px) {
  .other_subalbum li {
    width: 100%;
  }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
}

.promotion_title {
    border-bottom: 1px solid #00aeae;
}



@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;
    }

}



/* -----------------------------------最新消息------------------------------ */


.share_page .main_part {
    position: relative;
    width: 100%;
    max-width: 87.5%;
    margin: auto;
    padding: 150px 6%;
    border-radius: 40px;
}

.promotion_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px #70707057 solid;
}

.promotion_title h2 {
    font-size: 50px;
    color: #00abab;
}



.promotion_title .time{
    width: 100%;
}

.promotion_title span {
    color: #54c4c4;
    border: 0;
    padding: 2px 7px;
    margin: 0;
    width: 100%;
    font-family: "Noto Sans TC", sans-serif;
}

.promotion_title em {
    color: #54c4c4;
    border: 0;
    padding: 0;
    margin: 0;
    height: fit-content;
    word-break: keep-all;
    order: 3;
}

/* 選項 */

.other_promotion {
    margin-top: 5vh;
    padding: 1% 3%;
    grid-template-columns: 1fr;
    border-radius: 5px;
    gap: 0;
}

.other_promotion li a:before,
.other_promotion li a:after {
    display: none;
}

.other_promotion li a {
    border: none;
    display: flex;
    align-items: center;
    border-bottom: 1px #70707036 solid;
    padding: 15px 10px 15px;
}

.other_promotion li a:hover {
    background: transparent;
}


.other_promotion li a::after {
    content: "read more";
    display: block;
    width: fit-content;
    height: fit-content;
    border: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    opacity: 0;
    transform: translate(50px, -50%);
    color: #44444466;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li a:hover:after {
    width: fit-content;
    height: fit-content;
    opacity: 1;
    transform: translate(0, -50%);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.other_promotion .pmtTitle h3 {
    position: relative;
    font-size: 20px;
    color: #00abab;
    margin: 0;
    z-index: 2;
}

.other_promotion .pmtTime {
    display: flex;
    color: #fff;
    margin-right: 20px;
    align-items: center;
    z-index: 2;
}

.other_promotion .pmtTime cite {
    font-size: 16px;
    margin-right: 20px;
}

.other_promotion .pmtTime span {
    float: right;
    font-size: 13px;
    padding: 2px 10px;
    border: 1px #00abab solid;
    border-radius: 30px;
    font-family: "Noto Sans TC", sans-serif;
    color: #00abab;
}





/* --------------------------------------------------- */
/* 影片 */



.video-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-layer-two li a {
    border: none;
    background: transparent;
    color: #fff;
    transition: all 0.5s;
}

.video-layer-two li a:hover {
    background-color: #00aeae;
    color: #fff;
    transition: all 0.5s;
}

.video_page .main_part {
    padding: 50px 0 100px;
}

.page {
    width: 100%;
}

.video-layer-two>li {
    border-bottom: 1px #ffffff65 solid;
    padding: 0;
}

.video-layer-two>li a {
    padding: 10px;
}

.video-list .vidTitle {
    color: #fff;
}

/* -------------------------------------------------------- */




.contact_le_map {
    display: none;
}






.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 100px 0;
}

.blank_letter {
    display: flex;
    text-align: left;
    font-size: 40px;
    color: #474747;
    letter-spacing: 5px;
    align-items: flex-end;
    padding-top: 0;
    flex-wrap: wrap;
}

.blank_letter.f::before {
    content: "FORM";
    display: block;
    font-size: 20px;
    color: #00aeae;
    width: 100%;
}


.blank_letter.i {
    display: flex;
    text-align: left;
    font-size: 40px;
    color: #474747;
    letter-spacing: 5px;
    align-items: flex-end;
}

.blank_letter.i::before {
    content: "CONTACT";
    display: block;
    font-size: 20px;
    color: #00aeae;
    width: 100%;
}

.list_before.info li {
    color: #474747;
    display: flex;
    margin: 5px 0;
    padding-left: 0;
    letter-spacing: 0.1em;
}

.contact_form li .form__label {
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    color: #474747;
    margin: 0;
    position: relative;
}

.contact_content {
    margin: auto;
    padding: 0;
    max-width: 80%;
}

.contact_content form {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.contact_content .information_left {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 120px;
    position: relative;
}

.contact_content .information_left::before {
    content: "";
    display: block;
    width: 10vw;
    aspect-ratio: 361 / 275;
    background-image: url(https://pic03.eapple.com.tw/spinex2014/logo-11.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 7%;
    right: 17%;
}

.contact_content .information_right {
    width: 100%;
    padding: 0;
    background: transparent;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.contact_form {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.contact_form li input.noborder {
    border: 0;
    border-bottom: 1px #ddd solid;
    background-color: transparent;
    padding: 10px 0;
}






.contact_form li textarea.noborder {
    border: 1px #ddd solid;
    background-color: #ffffff1f;
}


.contact_form li {
    width: calc(100% / 2 - 30px);
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    position: relative;
}

.contact_form li .form__insert {
    text-align: center;
}

.contact_form li:nth-last-of-type(2) {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin: 20px 0 10px;
}

.contact_form li:nth-last-of-type(2) .form__label {
    width: fit-content;
    margin: 0;
    margin-right: 20px;
}

.contact_form li:nth-last-of-type(2) .form__insert {
    width: auto;

}

.contact_form li.last blockquote {
    color: #666;
}

.contact_form li.last cite {
    background: #00aeae;
    color: #fff;
}

.red {
    color: #00aeae;
    letter-spacing: 0;
}

.blank_letter.f span {
    margin-left: 20px;
}

.contact_form li.last {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-left: 0;
    flex-direction: row;
    justify-content: center;
}

.info_TEL:before,
.info_TEL2:before,
.info_PHONE:before,
.info_LINE:before,
.info_FAX:before,
.info_TAXID:before,
.info_MAIL:before,
.info_ADD:before,
.info_ADD2:before {
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    margin-right: 20px;
}


.list_before {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-top: 10px;
    margin-bottom: 60px;
}


.list_before.info li.info_TEL2 {
    order: 1;
}

.contact_le_nomap {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 510px;
    border-radius: 20px;
    overflow: hidden;
}







.PHONE:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chengliinterior/icon-14.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



.MAIL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chengliinterior/icon-15.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ADD:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chengliinterior/icon-16.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}




@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_content .information_left {
        width: 100%;
    }

    .contact_content .information_right {
        width: 100%;
    }

    .contact_page .main_part {
        padding: 100px 50px;
    }

    .contact_form {
        flex-direction: column;
        align-items: center;
    }

    .contact_form li {
        width: 100%;
    }

    .contact_le_nomap {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .blank_letter {
        flex-wrap: wrap;
    }
}


@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        background-color: transparent;
    }


}

.accordion li+li .link {
    border: 0;
}