@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body{font-family: "Noto Serif TC", serif;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
/*手機大圖*/
@media screen and (max-width: 600px) { 
}

/* 開場動畫 */


.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/nanzihancar/logo3.png);
    width: 526px;
    height: 245px;
    /* background-position: -526px 0 ; */
    background-position: 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    pointer-events: none;
    animation: banner-logo 4.4s forwards;
}
.bannerindex::after{
    content: "";
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 100;
    animation: banner-bg 4.4s forwards;

}


.swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 1s forwards;
    animation-delay: 4.4s;
}





.swiper-banner::before{
    content: "";
    display: block;
    height: 5px;
    background-color: #fff;
    position: fixed;
    bottom: 35%;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 500;
    opacity: 0;
    border-radius: 100px;
    animation: banner-line-white 4.4s forwards;
}

.swiper-banner::after{
    content: "";
    display: block;
    height: 5px;
    background-color: #6a6a6a;
    position: fixed;
    bottom: 35%;
    left: 50%;
    transform: translate(-50%,0px);
    border-radius: 100px;
    z-index: 500;
    opacity: 0;
    animation: banner-line-brown 4.4s forwards;
}



@media screen and (max-width: 768px) {
    .bannerindex::before {
        animation: banner-logo-768 4.4s forwards;

    }
}

@media screen and (max-width: 500px) {
    .bannerindex::before {
        animation: banner-logo-500 4.4s forwards;
    }
    .swiper-banner::before{
        animation: banner-line-white-500 4.4s forwards;
    }
    
    .swiper-banner::after{
        animation: banner-line-brown-500 4.4s forwards;
    }
    
}







@keyframes banner-logo{
    0%{
        opacity: 0;
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -526px 0 ;
    }
    25%{
        opacity: 1;
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 526px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}
@keyframes banner-bg{
    0%{

    }
    50%{
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes banner-img {
    0%{
        transform: scale(1.4);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes banner-line-white{
    0%{
        width: 500px;
        opacity: 1;
    }
    50%{
        width: 500px;
        opacity: 1;
    }
    80%{
        width: 500px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 500px;
        opacity: 1;
    }
    80%{
        width: 500px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-logo-768{
    0%{
        opacity: 0;
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -410px 0 ;
    }
    25%{
        opacity: 1;
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 410px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-logo-500{
    0%{
        opacity: 0;
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -300px 0 ;
    }
    25%{
        opacity: 1;
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 300px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-line-white-500{
    0%{
        width: 250px;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown-500{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


/*預設解除背景輪播*/
#content_main { 
    margin:0;
    background: #0e0e0e;
    z-index: 0;
}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

.pageIndex .navigation  {
    opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 4.4s;
}
.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 4.4s;
}
@keyframes banner-navbar {
    0%{
    
        opacity: 0;
    }
    100%{
        
        opacity: 1;
    }
}
@keyframes banner-nav-logo {
    0%{
       
        opacity: 0;
    }
    100%{
        
        opacity: 1;
    }
}
/*大圖*/
#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}
.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {.bannerindex { padding:0; margin:0;}}
.swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 1s forwards;
    animation-delay: 2.6s;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):after {
    background: url(https://pic03.eapple.com.tw/nanzihancar/bannerw1.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 28.3%;
    right: 41%;
    width: 47% !important;
    height: 25% !important;
    background-position: right;
    padding-bottom: calc(100% / 1 * 0.12);
    animation: banner-font 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    opacity: 0;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):before {background: url(https://pic03.eapple.com.tw/nanzihancar/bannerw2.png);background-size: contain;background-repeat: no-repeat;bottom: 14%;right: 67%;width: 20.5% !important;height: 11% !important;background-position: right;padding-bottom: calc(100% / 1 * 0.12);animation: banner-font 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);animation-delay: 0.5s;opacity: 0;}

@keyframes banner-font {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform:translateY(0px);
        opacity: 1;
    }
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):after {
        background: url(https://pic03.eapple.com.tw/nanzihancar/bannerw3.png);
        background-size: contain;
        background-repeat: no-repeat;
        bottom: 42%;
        left: 63%;
        width: 24% !important;
        height: 25% !important;
        background-position: left;
        padding-bottom: calc(100% / 1 * 0.12);
        animation: banner-font 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
        opacity: 0;
    }
    
.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):before {
            background: url(https://pic03.eapple.com.tw/nanzihancar/bannerw4.svg);
            background-size: contain;
            background-repeat: no-repeat;
            bottom: 24%;
            left: 52%;
            width: 34.5% !important;
            height: 40% !important;
            background-position: left;
            padding-bottom: calc(100% / 1 * 0.12);
            animation: banner-font 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
            animation-delay: 0.5s;
            opacity: 0;
        }
        
@keyframes banner-font {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform:translateY(0px);
        opacity: 1;
    }
}
/*header*/
.me_tp_features a.tp_btn_cart {
    color:#fff;
    display: none;
}
.me_tp_features a.tp_btn_notice {
    color:#fff;
    display: none;
}
.shop_search_btn {
    background: #91d3e5;
    color: #000000;
}
.tp_links {
    display: none;
}
.pageIndex .me_tp_features {
    width: 100%;
    text-align: right;
    position: absolute;
    top: 18px;
    padding: 0 615px 0 0;
    opacity: 0;
    transition: .8s;
}
.me_tp_features {
    width: 100%;
    text-align: right;
    position: absolute;
    top: 18px;
    padding: 0 615px 0 0;
    opacity: 1;
    transition: .8s;
}
.header_area.sticky .me_tp_features {
    padding: 0 33px 0 0;
    opacity: 1;
    transition: .8s;
}
.nav-brand img {
    opacity: 0;
    transition: .8s;
}
.header_area.sticky .nav-brand img {
    opacity: 1;
    transition: .8s;
}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}
.stellarnav > ul > li > a {
    margin: 0 0 0 40px;
    color: #ffffff;
    font-family: "roboto", "Noto San TC", serif;
    font-weight: 500;
    font-size: 17px;
    opacity: 1;
    transition: .8s;
    font-family: "Noto Serif TC", serif;
}
.pageIndex .stellarnav > ul > li > a {
    opacity: 0;
    transition: .8s;
}
.header_area.sticky .stellarnav > ul > li > a {
    opacity: 1;
    transition: .8s;
    font-family: "Noto Serif TC", serif;
}
.stellarnav > ul > li > a:hover {
    color: #fff9d0;
}
.stellarnav > ul > li> a:before {
    content: "";
    width: 0%;
    height: 1px;
    background: #fff9d0;
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
    left: 52%;
    transform: translateX(-50%);
}
.stellarnav > ul > li> a:hover:before {
    width: 100%;
}
.stellarnav {
    position: absolute;
    top: 55px;
    padding: 0 350px 0px 0px;
    transition: .8s;
}
.header_area.sticky .stellarnav {
    padding: 0px 35px 0 0;
    transition: .8s;
}
.header_area.sticky {
    background: 0;
}
.main_header_area .container { max-width: 1400px;}
.navigation {display: block;}
span#ori_price {
    color: #989898;
}
.header_area { background: #ffffff00;     position: absolute; transition: all 1s; padding: 0;}
.header_area.sticky {  position: fixed;    background: rgba(45, 43, 43, 0); }

.header_area.sticky .main_header_area .container {background:none; transition: all 1s;}
.header_area.sticky .main_header_area { height: 78px; opacity: 1;transition: all 1s; } 

.pageIndex .main_header_area{background: none; height: 0px;  transition: all 1s;}
.main_header_area{ height: 78px;  transition: all 1s;}

.header_area .main_header_area::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top:0px;
  right: 0;
  opacity: 0;
  height: 105px;
  background: #000000d4;
  backdrop-filter: saturate(100%) blur(10px);
  transition: all 1s;
}
.header_area.sticky .main_header_area::before {
  width: 100%;
  opacity: 1;
  transition: all .5s;
}
.stellarnav li li {
    background: #000000b8;
    transition: .5s;
}
.stellarnav li li a:hover {
    background: #91d3e5;
    color: #000;
    transition: .5s;
}
.stellarnav ul ul {
    background: #ffffff00;
}
.stellarnav li a {
    color: #ffffff;
    padding: 10px 15px 10px 10px;
}
/*LOGO*/
.pageIndex .nav-brand { max-width: 80%;    opacity: 0; transition: all 1s;}
.header_area.sticky .nav-brand {  opacity: 1; transition: all .5s;}
.nav-brand { max-width: 75%;  }

.header_area.sticky .nav-brand {
    opacity: 1;
    height: 180px;
    transition: all .5s;
    padding: 15px 15px;
    background: #ffffff;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 5px 8px #0000000c;
} 
.nav-brand{background: none; height: 0px;  transition: all 0.3s;}

/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*第一層*/




/*********************/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/
/*indexpage*/
.module_i_news {
    padding: 0px 20px 50px;
    background: #000;
}
.stellarnav li li a {
    color: #ffffff;
}
.i_blog_ri p {
    font-size: 18px;
    color: #ffffff;
}
.i_blog_ri h5 {
    font-size: 25px;
    color: #ffffff;
}
.module_i_news li a:before {
    content: 'READ MORE';
    position: absolute;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    color: #000000;
    background: #91d3e5;
    padding: 7px;
    transition: all .5s;
    border-radius: 10px 10px 0 0;
}
.module_i_news li a:hover:before, .module_i_news li a:hover:after {
    opacity: 0;
}
.module_i_news li a:hover:before {
    opacity: 0;
    transition: all .5s;
}
.module_i_news li a {
    border-bottom: #5a5a5a solid 1pt;
}
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0;
    transition: all .5s;
    background: linear-gradient(to bottom, #ffffff00, #b3edff63);
    border: 0px #ddd solid;
}
.module_i_news li a:hover::after {
    opacity: 1;
    transition: all .5s;
}
.module_i_news .title_i_box h6 {
    font-size: 25px;
    color:#BBBBBB;
}
.module_i_news .title_i_box h4 {
    font-size: 45px;
    color: #ffffff;
    font-weight: 800;
    position: relative;
}
.i_blog_b a {
    background: #00000000;
    color: #ffffff;
    border-radius: 0px;
    border: #fff 2px solid;
}
.module_i_album .title_i_box h6 {
    display: none;
}
.module_i_album .title_i_box h4 {
    font-size: 45px;
    color: #ffffff;
    font-weight: 800;
    position: relative;
}
.module_i_album .title_i_box h4:before {
    content: "";
    width: 610px;
    height: 198px;
    position: absolute;
    right: 23%;
    top: -274%;
    background-size: contain !important;
    transition: all .3s;
    background: url(https://pic03.eapple.com.tw/TripleoneBarbershop/PIECES.png) no-repeat;
    animation: jello-horizontal 1.8s infinite;
    max-width: 100%;
}
.i_album_list li div {
    aspect-ratio: 2 / 3;
}
.module_i_album {
    padding: 110px 20px 80px;
}
.i_album_list li a p {
    background: rgb(0 0 0 / 56%);
    color: #ffffff;
    font-size: 18px;
}
.animated-arrow {
    background: #ffffff;
    color: #000;
    border-radius: 30px;
}
/*內頁*/
.path p, .path p a {
    display: none;
}
#content {
    background: url(https://pic03.eapple.com.tw/nanzihancar/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*商品展示*/
/*購物頁-外*/
.page li a, .page li strong {
    color: #fff;
}
.page strong, .page a:hover {
    background: #ffe014;
    color: #000000;
}
.page li {
    color: #ffe014;
}
.shopping-cart .cell.product_name p {
    color: #fff;
}
.total_amount .rewrite_simple, .total_amount .send_simple {
    background: #ffe014;
    color: #000;
}
.formbox_form li .form__label {
    color: #fff;
}
.shopping-cart .cart_head {
    background: #ffe014;
    color: #000000;
}
.declaration {
    background: #ffe014;
}
.separate_title {
    color: #000000;
    background: #ffe014 url(../images/separateTitle.png) left center no-repeat;
}
.fa-circle-plus::before {
    content: "\f078";
    color: #fff;
}
.product-layer-two li i.close::before {
    content: '\f077';
    color: #fff;
}
.products-list .price b:first-child:last-child {
    text-align: center !important;
}
.products-list .name {
    text-align: center;
}
.products-list .price {
    margin: 0px 0 15px 0;
}
.products-list .item a:hover .more {
    background: #fff;
    color: #000000;
    transition: .5s;
    opacity: 1;
    width: 85%;
    font-family: "Noto Serif TC", serif;
}
.product-layer-two li.active li a {
    color: #ffffff;
}
.products-list .more {
    border: 1px solid #fff;
    color: #ADA17E;
    font-size: 16px;
    transition: .5s;
    opacity: 0;
}
.products-list .name {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
    height: 5em;
    text-align: center;
    font-weight: 700;
    font-family: "Noto Serif TC", serif;
}
.products-list .name .numbering {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #a7a7a7;
}
.products-list .price b {
    color: #ffffff;
    font-size: 18px;
    margin: 0px;
}
.products-list .item {
    position: relative;
    padding: 15px;
    transition: .5s;
    border: 1pt solid #ffffff00;
}
.products-list .item:hover {
    border: 1pt solid #fff;
    transition: .5s;
}
.product-layer-two > li {
    font-weight: bold;
}
.product-layer-two li.active a {
    border: 0;
}
.product-layer-two li a {
    border: 0;
    background: #ffffff00;
    padding: 7px 3px;
    color: #fff;
    font-family: "Noto Serif TC", serif;
}
.product-layer-two li li.active a {
    background: rgb(0 0 0);
    color: #ffe014;
}
.products-list .item:hover .pic img {
    transform: scale(1.1);
    transition: .5s;
}
.products-list .pic img {
    transition: .5s;
}
.product-layer-two li li a {
    padding: 5px 10px;
    color: #fff;
    background: #00000000;
}
.product-layer-two li li:hover > a {
    background: #00000000;
    color: #fff;
}
/*購物頁-裡*/
.toShare {
    font-size: 16px;
    color: #ffffff;
}
.amountNum {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: #000;
}
.prod_tabs {
    margin-top: -20px;
}
.product_info li .txt_box {
    color: #ffff;
}
.sidebarBtn h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    font-family: "Noto Serif TC", serif;
}
.sidebarBtn {
    border: 0;
    background: #000000;
}
.sidebarBtn .price {
    border-bottom: 1px solid #5d5d5d;
}
.toShare {
    border-top: 1px solid #5d5d5d;
}
.radio-inline__label {
    border-radius: 0px;
}
.inquiry_a3 {
    background: #fff;
    color: #000;
}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {background: #86d9ff;color: #000000;}
.product_info li span {
    font-size: 18px;
    color: #fff;
}
.radio-inline__label {
    color: #ffffff;
}
.sidebarBtn .sp_price {
    color: #ffffff;
}
.radio-inline__input:checked + .radio-inline__label {
    background: #fff;
    border: 1px solid #fff;
    color: #000000;
}
.pd_tabTitle li.activeTab::after {
    height: 4px;
    background: #fff;
}
.pd_tabTitle li.activeTab a {
    color: #fff;
    padding: 60px 10px 10px;
}
.pd_tabTitle li {
    border-bottom: 1px solid #5d5d5d;
}
.pd_tabTitle li a {
    color: #ffffff;
    font-size: 18px;
}
.prod_related {
    background: #000000;
}
.prod_related h6 span:before {
    color: #fff;
}
.lastPage {
    background: 0;
    transition: .5s;
    color: #fff;
    border: #fff 1pt solid;
}
.prod_related h6 {
    max-width: 1250px;
    margin: 0 auto 35px;
    border-top: 1pt solid #5b5b5b;
    padding-top: 25px;
}
.lastPage:hover {
    background: #91d3e5;
    transition: .5s;
    color: #000;
}
.inquiry_a2 {
    background: #ffffff00;
    border: 1pt solid #fff;
    color: #fff;
}
.inquiry_a1 {
    background: #fff;
    color: #000;
}
.related_list li a p {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
}
.related_list li a {
    padding: 4px 0 4px 0;
    background: #000000;
    height: 380px;
}
.related_list li a {
    position: relative;
}
.related_list li a:after {
    content: '探索';
    position: absolute;
    background: #fff;
    bottom: 5px;
    left: 27px;
    transition: .5s;
    font-size: 16px;
    color: #000000;
    left: 50%;
    bottom: -5%;
    width: 100%;
    padding: 7px 0 7px 0;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.related_list li:hover a:after {
    opacity: 1;
    width: 80%;
}
.related_list li a img {
    transition: .5s;
}
.related_list li:hover a img {
    transform: scale(1.1);
    transition: .5s;
}
.related_list li {
    padding: 10px;
    border: 1pt solid #ffffff00;
    transition: .5s;
}
.related_list li:hover {
    border: 1pt solid #fff;
    transition: .5s;
}
.edit {
    color: #ffffff;
    font-size: 16px;
}
/*作品集*/
.show-list .item:hover .show_name {
    color: #fff;
}
.show-list .show_pic {
}
.show_content {
    padding: 10px 0px;
}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 20px;
}
.show-list .item a:before {
    content: "VIEW +";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom: 2px solid #91d3e5;
    font-size: 15px;
    max-width: 100px;
    color: #fff;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .5s;
    transition-delay: 0s;
    z-index: 9999;
}
.show-list .item a:hover:before {
    opacity: 1;
    height: 25px;
    padding-bottom: 10px;
    transition: all .5s;
    transition-delay: .3s;
    z-index: 100;
}
.show-list .show_name {
    font-size: 18px;
    color: #ffffff;
    height: 26px;
    text-align: center;
}
.overlay {
    width: 0;
    background: rgb(0 0 0 / 33%);
    transform: scale(1);
    z-index: 99;
}
.show-list .item:hover .overlay {
    width: 100%;
}
.other_album_choice li {
    background: 0;
    border-radius: 0;
    border-right: 1pt solid #fff;
}
.other_album_choice li:nth-last-child(1) {
    border-right: 0;
}
.other_album_choice li a {
    color: #fff;
}
.album_fixed_title {
    color: #e3e3e3;
    padding-right: 0;
    margin-left: 15px;
    background: #00000000;
}
.subalbum-menu h2 {
    font-size: 24px;
    color: #fff;
}
/*最新消息*/
.submenu a {
    color: #ffffff;
}
.blog_le .accordion li .link i {
    color: #ffffff;
}
.main_part {
    padding: 85px 20px;
}
h5.blog_le_t span {
    color: #fff;
}
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
}
.accordion li .link a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}
h5.blog_le_t em {
    color: #fff;
    font-family: "Noto Serif TC", serif;
}
.blog_list_ri h5 {
    color: #5f4d3c;
}
.blog_list_ri h5 {
    color: #fff;
}
.blog_list_ri p {
    color: #ffffff;
}
.news_related {
    background: #000000;
}
.news_related h6 {
    max-width: 1250px;
    margin: 0 auto 35px;
    border-top: 0;
    padding-top: 25px;
}
.news_related h6 span:before {
    color: #91d3e5;
}
.blog_back a.article_btn_back {
    background: 0;
    border: 1pt solid #ffffff;
    color: #ffffff;
    transition: .5s;
}
.blog_back a.article_btn_back:hover {
    background: #5d7f86d1;
    transition: .5s;
}
.blog_back a.article_btn_next {
    background: #838383;
    transition: .5s;
}
.blog_back a.article_btn_next:hover {
    background: #fff;
    transition: .5s;
    color: #000;
}
.blog_back a.article_btn_prev {
    background: #838383;
    transition: .5s;
}
.blog_back a.article_btn_prev:hover {
    background: #fff;
    transition: .5s;
    color: #000;
}
.news_related_list li a {
    position: relative;
    height: 380px;
    background: #000000;
}
.news_related_list li a:after {
    content: '探索';
    position: absolute;
    background: #ffffff;
    bottom: 5px;
    left: 27px;
    transition: .5s;
    font-size: 16px;
    color: #000000;
    left: 50%;
    bottom: -5%;
    width: 100%;
    padding: 7px 0 7px 0;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.news_related_list li:hover a:after {
    opacity: 1;
    width: 80%;
}
.news_related_list li a p {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
}
.news_related_list li:hover a img {
    transform: scale(1.1);
    transition: .5s;
}
.news_related_list a img {
    transition: .5s;
}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    color: #000000;
    background: #91d3e5;
    padding: 7px;
    border-radius: 10px 10px 0 0;
}
.subbox_item a:hover:before {
    opacity: 0;
    transition: all .5s;
}
.subbox_item {
    border-bottom: #5a5a5a solid 1pt;
}
.subbox_item a:after {
    background: linear-gradient(to bottom, #ffffff00, #b3edff63);
    border: 0;
}
.blog_le .accordion {
    border: 0;
    border-radius: 0px;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #737373 !important;
}
.submenu {
    background: #000000;
}
.submenu li.on_this_category a, .submenu a:hover {
    background: #c7a16300;
    color: #fff;
}
.news_related_list li {
    padding: 20px;
    border: 1pt solid #ffffff00;
    transition: .5s;
}
.news_related_list li:hover {
    border: 1pt solid #c9c9c9;
    transition: .5s;
}
h4.blog_category_title {
    color: #ffffff;
}
.toShareNews {
    color: #ffffff;
}
/*footer*/
.footer_logo img {
    opacity: 0;
}
.footer_menu a:first-child {display: none;}
.box_link{display: none;}
/*footer*/
.footer {
    background: #181818;
    padding: 10px 0 0;
}

.footer .center {
    max-width: 1500px;
}

.footer_info {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 99999999999999;
}

.footer_logo {
    max-width: 100%;
    text-align: center;
    width: 250px;
    margin: 30px auto;
    z-index: 99999999999999999;
    background: url(https://pic03.eapple.com.tw/nanzihancar/logo2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_info ul {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
    z-index: 0;
}

.footer_info li p,
.footer_info li p a {
    color: #fff;
	margin-bottom: 3px;
}


.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
}

.footer_menu a:hover {
    background: transparent;
    color: #fff;
}

.footer_menu a {
    background: transparent;
    border: none;
    color: #fff;
    border-bottom: 1px solid rgba(100, 100, 100, .3);
    position: relative;
    padding: 12px 8px;
    margin-right: 10px;
}

.footer_menu a:hover:before {
    width: 100%;
    background: var(--titlecolor);
}

.footer_menu a:before {
    content: "";
    width: 0%;
    height: 1px;
    background: rgba(100, 100, 100, .3);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    transition-timing-function: ease-in-out;
}

.box_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    bottom: 0;
    position: relative;
    display: none;
}

.box_link a {
    height: 40px;
    border-radius: 56px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #7165652e;
    border: none;
    margin: 5px;
    backdrop-filter: blur(4px);
    transition: all .5s;
}

.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab,
.fa-sharp-solid,
.fa-classic,
.fa {
    color: #ccc;
    font-size: 15px;
}

.fa-phone-volume::before {
    font-size: 14px;
}

.fa-facebook-f:before {
    content: "\f39e";
    font-family: 'FontAwesome';
}

a.me_tp_mail {
    display: none;
}

.box_link a:hover i {
    color: #000;
}

.box_link a:hover {
    background: #fff;
}

.copy {
    background: #00000070;
    border: none;
    padding: 20px 20px;
    font-size: 12px;
    margin-top: 35px;
}
.footer_menu a:nth-child(8) {
    display: none;
}/*footer按鈕隱藏*/
.footer .fa-phone-volume {
    font-size: medium;
}
@media screen and (max-width: 1200px) {
.footer_logo {width: 190px;margin: 40px auto;display: inline-block;vertical-align: top;max-width: 280px;margin: 0;}
}

@media screen and (max-width: 950px) {
.footer {  padding-top: 35px;}

}
@media screen and (max-width: 768px) {
.footer_logo {  margin: 0px auto 0px auto;  }
.footer_logo {width: 150px;}

}
@media screen and (max-width: 600px) {
.footer_info ul { padding: 0 10px;}
.footer_logo {}
}
/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul {position:static;margin-top:5px;/*display:block !important;*/width:100%;margin-left:0;background: #00000000;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li {display: block;padding:0;transition:all ease .3s;background: #00000000;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a {background: #ffffff00;color: #91d3e5;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before {background: #91d3e5;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    min-height: 500px;
    background: url(https://pic03.eapple.com.tw/nanzihancar/banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner h5 {
    font-size: 45px;
    color: #fff;
    font-family: "Noto Serif TC", serif;
}
.banner h5:before {
    content: "";
    position: absolute;
    font-size: 25px;
    color: #ffffff;
    left: 50%;
    bottom: 54%;
    width: 100%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}
.banF h5:before {
    content: "PRODUCTS";
}
.banner.banblog h5:before {
    content: "NEWS";
}
.banE h5:before {
    content: "CASES";
}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 196px;
    background: #ffffff;
    left: 50%;
    top: 80.3%;
    transform: translate(-50%, -50%);
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 1190px) {
    .stellarnav {
        padding: 0 250px 0px 0px;
    }
    .me_tp_features {
    padding: 0 500px 0 0;
}
}
@media screen and (max-width: 1100px) {
.header_area.sticky .nav-brand img {
    opacity: 0;
    transition: .8s;
}
.pageIndex .nav-header {
    background: url(https://pic03.eapple.com.tw/nanzihancar/logo2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}    
.nav-header {
    background: url(https://pic03.eapple.com.tw/nanzihancar/logo2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 
    
.nav-brand {
    max-width: 80%;
}
.pageIndex .stellarnav > ul > li:before {
    opacity: 1;
}
.header_area.sticky .stellarnav {
    padding: 0;
}
    .pageIndex .me_tp_features {
    width: 100%;
    text-align: center;
    position: relative;
    top: 0;
    opacity: 1;
    padding: 10px;
}
.header_area.sticky .me_tp_features {
    padding: 10px;
}
.me_tp_features {
    width: 100%;
        text-align: center;
        position: relative;
        top: 0;
        opacity: 1;
        padding: 10px;
}
	.pageIndex .nav-brand {
    opacity: 1;
}
.header_area.sticky .nav-brand {
        opacity: 1;
        height: 88.44px;
        transition: 0s;
        padding: 0;
        background: #ffffff00;
        border-radius: 0px 0px 30px 30px;
        box-shadow: 0 5px 8px #00000000;
    }
	.stellarnav ul {
    text-align: center;
}
	.stellarnav {
    position: relative;
    top: 0px;
	padding: 0;
}
	.nav-brand {
    height: 100%;
}
	.nav-header {
    max-width: 120px;
    margin-top: 15px;
    height: 127px;
}
	.navigation {
    margin-top: 0px;
        display: flex
;
        flex-direction: column;
        align-items: center;    
}
.header_area.sticky .main_header_area::before {
    opacity: 0;
}
	.header_area {
    background: #000000eb;
    transition: .5s;
    height: 244px;
    position: sticky;
}
	.stellarnav > ul > li > a {
    font-size: 17px;
}
.header_area.sticky {
    position: sticky;
    background: #000000ed;
}
.stellarnav > ul > li:before {
    filter: brightness(0);
    opacity: 1;
}
.stellarnav > ul > li:hover:before {
    filter: brightness(0);
}
.pageIndex .stellarnav > ul > li > a {
    opacity: 1;
}
.nav-brand img {
    opacity: 0;
}
}
@media only screen and (max-width: 1024px) {
    .navigation {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
    }
}
@media only screen and (max-width: 1000px) {
    .footer_info ul {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0;
    text-align: center;
}
.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 20px;
    align-content: center;
    align-items: center;
}
}
@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    background: #000;
}
.stellarnav > ul > li> a:before {
    display:none;
}
.stellarnav.mobile > ul > li > a {margin:0;}
.stellarnav.mobile li.open {
    background: #000;
}
.stellarnav.mobile ul ul{
    background: #000;
}
.stellarnav .menu-toggle:after {
    color: #ffffff;
}
.stellarnav .menu-toggle span.bars span {
    background: #ffffff;
}
#bottom_menu {display: flex; opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 4.4s; }
.footer.with_shopping_mode { padding:30px 0 54px; }
#to_top { bottom:60px;}
#bottom_menu li {
    flex: 1;
    float: none;
    border-right: 1px solid #ddd;
    background: #0d0d0d;
}
#bottom_menu li a em {
    color: #cccccc;
}
    .stellarnav.mobile {
        left: 10px;
        top: 60px;
    }
    .header_area {
        height: 200px;
    }
}

/*手機大圖*/
@media screen and (max-width: 600px) { 

    .bannerindex .swiper-slide img { display:none; }
    .bannerindex .swiper-slide {height: 130vw;  width: 100% !important; }
/*第一張大圖*/
    .bannerindex .swiper-slide:nth-child(1) { background-image: url(https://pic03.eapple.com.tw/nanzihancar/mob01.jpg); background-position: top; background-size:cover;}
/*第二張大圖*/
    .bannerindex .swiper-slide:nth-child(2) { background-image: url(https://pic03.eapple.com.tw/nanzihancar/mob02.jpg); background-position: top; background-size:cover;}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):after {
    bottom: 50%;
    right: 10%;
    width: 80% !important;
    height: 25% !important;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):before {
    bottom: 45%;
    right: 30%;
    width: 60% !important;
    height: 11% !important;
    }
.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):after {
    bottom: 50%;
    left: 40%;
    width: 50% !important;
    height: 25% !important;
}
.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):before {
    bottom: 45%;
    left: 10%;
    width: 80% !important;
    height: 11% !important;
    }

}




