@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

#content {
    width: 100%;
    min-height: 80vh;
    background: #ffffff;
}
.path {
    padding: 0 10px;
    display: none;
}
@media screen and (max-width: 768px) {
.path p, .path p a {
    display: none;
}
}

.main_part {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 50px 20px;
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
.main_part {
    padding: 10px 10px 10px;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*大圖特效*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: sticky;
    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;
}

/*Slogan*/
  .bannerindex .swiper-slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: url(https://pic03.eapple.com.tw/yutai1413195/大圖-slogan.png);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 10;
}
/*circleWave*/
.bannerindex .swiper-slide::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgb(0 194 204);
  transform: translate(-50%, -50%) scale(1);
  animation: circleWave 3s infinite linear;
  pointer-events: none;
  z-index: 5;
}
@keyframes circleWave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    box-shadow:
      0 0 0 0 rgb(0 194 204 / 40%),
      0 0 0 0 rgb(0 194 204 / 25%),
      0 0 0 0 rgb(0 194 204 / 10%);
  }
  50% {
    box-shadow:
      0 0 0 30px rgb(0 194 204 / 30%),
      0 0 0 45px rgb(0 194 204 / 15%),
      0 0 0 60px rgb(0 194 204 / 5%);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
    box-shadow:
      0 0 0 75px rgb(0 194 204 / 0%),
      0 0 0 105px rgb(0 194 204 / 0%),
      0 0 0 135px rgb(0 194 204 / 0%);
  }
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


@media screen and (max-width: 600px) {
/*Slogan*/
  .bannerindex .swiper-slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: url(https://pic03.eapple.com.tw/yutai1413195/mb-大圖-slogan.png);
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 10;
}
/*大圖*/
    .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/yutai1413195/mb-大圖-01.jpg); 
        background-position: top; 
        background-size:cover;
    }
    .bannerindex .swiper-slide:nth-child(2) { 
        background-image: url(https://pic03.eapple.com.tw/yutai1413195/mb-大圖-02.jpg); 
        background-position: top; 
        background-size:cover;
    }

}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*======Header區塊======*/

/*首頁Header*/
.pageIndex .header_area {
    position: fixed;
    width: 100%;
    background: transparent;
    transition: all .3s;
    box-shadow: unset;
    backdrop-filter: unset;
}

.pageIndex .header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: transparent;
    box-shadow: unset;
    backdrop-filter: unset;
}
.pageIndex .navigation {
    width: 100%;
    position: relative;
    padding: 10px;
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-gap: 10px;
    margin-top: 0;
}
/*首頁選單*/
.pageIndex .stellarnav ul::before {
    content: "";
    display: block;
    position: absolute;
    top: -18px;
    right: 0;
    width: 100%;
    height: 60px;
    background-color: rgb(255 255 255 / 68%);
    border-radius: 999px;
    border: 1px solid rgb(0 0 0 / 13%);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 1em .25em #93939357 inset, 0 .125em .125em -.125em #0003;
    z-index: -1;
    transform-origin: right;
    animation: scale-in-from-right 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/*選單底圖左右延展*/
@keyframes scale-in-from-right {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.pageIndex .header_area.sticky .stellarnav ul li ul::before {
    display: none;
}


/*Header*/
.header_area {
    position: sticky;
    width: 100%;
    background: #ffffff;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 14%);
}

.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 30%);
}


.main_header_area .container {
    max-width: 100%;
    margin: auto;
    transition: 0.8s all;
}

.header_area.sticky .main_header_area .container {
    max-width: 100%;
    margin: auto;
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0 20PX;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    margin-top: 0;
    align-items: center;
    top: 0px;
}
.pageIndex .nav-header {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0, 0, 1, 0.61);
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 70px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
/*選單*/
/* 初始隱藏 */
.pageIndex .stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: right;
    opacity: 1;
    transition: opacity 3s cubic-bezier(0, 0, 1, 0.61);
    /* display 不用設定或保留 block 會比較方便動畫 */
}

/* 顯示 */
.pageIndex .header_area.sticky .stellarnav ul {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.3s cubic-bezier(0, 0, 1, 0.61);
}
.stellarnav>ul>li>a {
    padding: 0;
    color: #003029;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    height: 40px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: none;
}
.stellarnav > ul > li > a b:nth-of-type(2) {
    font-size: 15px;
}
.pageIndex .stellarnav>ul>li>a:hover {
    color: #ffffff;
    transition: .3s all;
    letter-spacing: 0px;
}
.pageIndex .stellarnav li.has-sub>a:hover:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    transform: translateY(-50%);
}


.stellarnav>ul>li>a:hover {
    color: #ee4e2a;
    transition: .3s all;
    letter-spacing: 0px;
}

.stellarnav ul ul {
    top: auto;
    width: 160px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: unset;
}

.stellarnav li li {
    display: block;
    border: unset;
    border-bottom-width: 0;
    padding: 0px;
    background: #ffffff;
    transition: .5xs all;
    font-weight: 500;
}

.stellarnav li li :hover {
    background: #f0f0f0;
    font-weight: 500;
    transition: .5s all;
}

.stellarnav>ul>li:hover>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    background: unset;
}

.stellarnav li.has-sub>a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #003029;
    display: inline-block;
    position: absolute;
    top: 26%;
    right: 0px;
    transform: translateY(-50%);
}
.stellarnav li.has-sub>a:hover:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ee4e2a;
    transform: translateY(-50%);
}



/*首頁商品*/
.prod_part {
    padding: 100px 20px 50px;
}
.i_prod_tit:before {
    content: 'Project Portfolio';
    font-size: 15x;
    font-weight: 800;
    color: #ee4e2a;
    font-family: "Poppins", sans-serif;
}
.i_prod_tit span, .i_video_tit span {
    font-size: 35px;
    color: #3E3A39;
    font-weight: 600;
    letter-spacing: 5px;
}
.animated-arrow {
    background: #ee4e2a;
}
/*===*/


/*選單ICON隱藏*/
.tp_links {
    display: none;
}
/*搜尋隱藏*/
.box_search {
    display: none;
}


@media screen and (max-width: 1500px) {
    .pageIndex .navigation {    grid-template-columns: 30% 1fr;}

}
@media screen and (max-width: 1300px) {
    .pageIndex .navigation {    grid-template-columns: 10% 1fr;}
}

@media screen and (max-width: 1024px) {

    .stellarnav ul {
        text-align: right;
    }
    .stellarnav>ul>li>a {
        font-size: 14px;
        font-weight: 500;
    }

}
@media screen and (max-width: 800px) {

}

@media only screen and (max-width: 768px) {
/*首頁*/
    .pageIndex .header_area {
        position: sticky;
        background: #e8f1f0;
        transition: all .3s;
    }  
    
    .pageIndex .header_area.sticky {
        position: sticky;
        background: #e8f1f0;
    }  
    
    .pageIndex .navigation {
        width: 100%;
        display: flex;
        gap: 5px;
        position: sticky;
        padding: 10px 0 0;
        box-shadow: 4px 2px 10px 0px #2f2f2fad;
    }
    .pageIndex  .nav-header {
        max-width: 60px;
        width: auto;
        opacity: 1;
        visibility: visible;
    }
    .pageIndex .header_area.sticky .nav-header {
        max-width: 60px;
    }
    .pageIndex .stellarnav ul::before{ display: none; }
    
/*------*/
    .header_area {
        position: sticky;
        background: #e8f1f0;
        transition: all .3s;
        padding: 0;
    } 
    .header_area.sticky {
        position: sticky;
        background: #e8f1f0;
    }  
    .navigation {
        width: 100%;
        display: flex;
        gap: 5px;
        position: sticky;
        padding: 10px 0 0;
    }
    .nav-header {
        max-width: 60px;
        width: auto;
        opacity: 1;
        visibility: visible;
    }
    .header_area.sticky .nav-header {
        max-width: 60px;
    }
    .header_area.sticky .stellarnav ul::before {
        display: none;
    }
    .me_tp_features {
        text-align: center;
        display: none;
    }

    .main_header_area .container {
        max-width: 100%;
        margin: auto;
        transition: 0.8s all;
        text-align: right;
    }



    
/* 手機板選單顯示 */
    .pageIndex .stellarnav ul {
        opacity: 1;
        visibility: visible;
    }
    .stellarnav.mobile {
        position: absolute;
        right: 10px;
        top: 20px;
        width: auto;
        display: inline-block;
    }
    .stellarnav .menu-toggle span.bars span {
        display: block;
        width: 33px;
        height: 2px;
        border-radius: 6px;
        background: #666;
        margin: 0 auto 6px;
    }
    .stellarnav .menu-toggle:after {
        display: none;
    }
/*打開漢堡外觀*/
    .stellarnav.active .menu-toggle .bars span:nth-child(1) {
        transform: rotate(35deg) translate(5px, 6px);
        transition: transform 0.3s ease, translate 0.3s ease; /* 加入變化過渡 */
    }
    
    .stellarnav.active .menu-toggle .bars span:nth-child(2) {
        opacity: 0;
        transition: opacity 0.3s ease; /* 加入透明度過渡 */
    }
    
    .stellarnav.active .menu-toggle .bars span:nth-child(3) {
        transform: rotate(-35deg) translate(5px, -6px);
        transition: transform 0.3s ease, translate 0.3s ease; /* 加入變化過渡 */
    }
/*關閉*/
    .stellarnav .menu-toggle .bars span:nth-child(1) {
        transform: none;
    }
    
    .stellarnav .menu-toggle .bars span:nth-child(2) {
        opacity: 1;
        width: 15px;
    }
    
    .stellarnav .menu-toggle .bars span:nth-child(3) {
        transform: none;
    }    
/*打開漢堡*/
    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        /* 移除原本的 left 設定 */
      font-size: 0;
      max-width: 100%;
      height: auto;
      padding: 0 15px;
      left: -100vw;
      overflow: hidden;
      transition: all .5s ease;
    }
  .pageIndex .header_area.sticky .stellarnav ul {
    visibility: visible;  /* 關掉 collapse */
    opacity: 1;            /* 若你有 opacity 變化也一起重設 */
    transition: none;      /* 若要完全拿掉動畫 */
  }
/*關*/
     .stellarnav.mobile.left.active > ul{
        display: block !important;
        left: 0;
        max-width: 70%;
        background: #ffffff;
        border-right: unset;
    }
    .stellarnav.mobile.left .close-menu {
        display:  block !important;
        text-align: right;
        font-size: 0;
        background: unset;
    }
    .stellarnav .icon-close{ display: none;}
    .stellarnav.mobile > ul > li {
        display: block;
        border-bottom: unset;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .stellarnav.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: flex;
        border-bottom: 1px solid #ffffff30;
        flex-direction: column;
    }
    .pageIndex .stellarnav>ul>li>a:hover {
        color: #ee4e2a;
    }
    .stellarnav>ul>li>a:hover {
        color: #ee4e2a;
    }
    .stellarnav > ul > li > a b {
        animation: none;
        animation-delay: 0s;
      }  
    .stellarnav.mobile li a {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        font-size: 14px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle {
        top: 13px;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 1px #777;
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px #777;
    }
}

@media only screen and (max-width: 570px) {
    .stellarnav.mobile {
        position: absolute;
        right: 10px;
        top: 30px;
        width: auto;
        display: inline-block;
    }

    .me_tp_features {
        text-align: center;
        display: none;
    }
    
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*======Footer區塊======*/
/*LOGO隱藏*/
.footer {
    padding: 30px 0 0;
    font-size: 14px;
    background: #222;
    position: relative;
    z-index: 99;
    box-shadow: 0px -2px 10px 0px #2f2f2fad;
}

.footer .center {
    position: relative;
    max-width: 80%;
}
.footer_logo {
    display: none;
}
.footer_info {
    padding: 35px 0 0 0;
    display: flex;
    grid-gap: 15px;
    align-items: center;
    flex-direction: column;
}

.footer_info ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.footer_info li {
    display: block;
    padding: 0 0 40px 0px;
    text-align: left;
    width: 100%;
}

.footer_info li p {
    line-height: 200%;
    letter-spacing: 1px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.footer_info li p a {
    color: #ffffff;
}
.footer_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: unset;
    margin: 5px 15px 0 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 100%;
    color: #888;
    background: unset;
    transition: .8s all;
}
.footer_menu a:hover {
    background: unset;
    color: #ffffff;
}
.copy {
    text-align: left;
    padding: 10px;
    font-size: 13px;
    color: #4b4a48;
    border-top: unset;
    margin-top: 10px;
}
.privacyLinks a+a {
    border-left: 1px solid #4b4a48;
}
.copy a:hover {
    color: #ccc;
}

.box_link a {
    display: none;
}
.footer_menu a:nth-of-type(1) {
    display: none;
}
/*浮動按鈕隱藏*/
.linksBtn {
    display: none;
}
@media screen and (max-width: 1024px) {
    .footer_info ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_menu {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}


@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
    }
    .footer_menu {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer_info li p {
        font-size: 13px;
    }
    .footer_menu a {
        display: inline-block;
        padding: 5px 10px;
        border: unset;
        margin: 0;
        font-size: 13px;
        font-weight: 900;
        line-height: 100%;
        color: #ccc;
        background: unset;
        border-bottom: unset;
        transition: .8s all;
    }
}
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 35px;
    color: #4c4c4c;
    background: #dfdfdf;
    font-size: 14px;
    font-weight: 400;
    border-radius: 10px;
    letter-spacing: 5px;
    position: relative;
}
.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    background: #ee4e2a;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #ffffff !important;
}
.submenu li.on_this_category a,
.submenu a:hover {
    background: #f5f5f0;
    color: #4c4c4c;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*購物車*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: none;
    cursor: pointer;
    border: 0;
}

.product-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: #ffffff;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.products-list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.products-list .more {
    border: 1px solid #003029;
    color: #003029;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.product-layer-two li i.close::before {
    content: '\f056';
    color: #003029;
}
.product-layer-two li li:hover>a {
    background: #fff;
    color: #003029;
}

.product-layer-two li li:hover>a:before {
    background: #003029;
}

/*價格隱藏*/
.products-list .price {
    display: none;
}

.products-list .price b {
    color: #003029;
    font-size: 16px;
    width: calc(50% - 10px);
}

.products-list .more {
    border: 1px solid #003029;
    background: #003029;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}
.products-list .item a:hover .more {
    background: #ee4e2a;
    border: 1px solid #ee4e2a;
    border-radius: 0 20px 0 0;
    letter-spacing: 2px;
}


/*第二層*/
/*價格隱藏*/
.proImgSwiper {
    --swiper-navigation-size: 30px;
    --swiper-navigation-color: #FFFFFF;
    order: 2;
    width: 100%;
    margin: 0;
    aspect-ratio: 3 / 2;
}
.prod_tabs {
    margin-top: 30px;
}
.sidebarBtn .price {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 3px solid #e6e6e6;
    letter-spacing: 1px;
    display: none;
}

.product_info li {
    margin: 10px 0;
    display: none;
}


.product-layer-two li.active a {
    font-weight: bold;
    border: unset;
    background: unset;
    color: #003029;
}

.proImgSwiper li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.sidebarBtn h2 {
    color: #4c4c4c;
    font-size: 24px;
}
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: unset;
    background: #fff;
    box-shadow: 3px 3px 2px rgb(0 0 0 / 12%);
}

.sidebarBtn .sp_price {
    display: block;
    color: #c6ba88;
    font-size: 22px;
    font-weight: bold;
}
.inquiry_a1 {
    background: #ee4e2a;
}
.inquiry_a2 {
    background: #ee4e2a;
}
.inquiry_a3 {
    background: #ee4e2a;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    letter-spacing: 3px;
    background: #003029;
}

/*第三層*/
.shopping-cart .cart_head {
    background: #003029;
    padding: 5px;
    border-radius: 0 0 15px 15px;
    color: #fff;
}

.send_simple {
    background: #003029 url(../images/simple_right.png) 88% center no-repeat;
}

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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: 0;
}

.product_page .products-list,
.product-wrapper {
    width: 100%;
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    /*display:block !important;*/
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !important;*/
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li li a {
    padding: 5px 10px;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #ad925e;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product_menu_list {
    display: none;
}

.product_info_page .products-list,
.product-wrapper {
    width: 100%;
}

.product-layer-two li li:hover {
    margin-left: 15px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: #ad925e;
}

.product_info_page .half_box {
    width: 100%;
    float: none;
    padding-right: 0;
}

.product_info_page .half_box li.btn_blankTop {
    margin-top: 50px;
    justify-content: space-between;
    display: flex;
}

.product_info_page .half_box li.btn_blankTop input {
    width: calc(50% - 10px);
    background-image: none;
    padding: 0;
    text-align: center;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {

    .product_menu_list,
    .products-list,
    .product-wrapper {
        width: 100%;
    }
.products-list {
    grid-template-columns: repeat(2, 1fr);
}
    .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: none;
    }

    .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;
    }
    /*第二層*/
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: unset;
    background: #fff;
    box-shadow: unset;
}
}

@media screen and (max-width: 600px) {}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*內頁BANNER 設定*/
.banner {
    height: 65vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}
.banner h5 {
    width: 100%;
    display: flex;
    color: #4f4f4f;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-top: 20vh;
    margin-left: 10vh;
    padding-left: 10px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    border-left: 10px #999 solid;
}

.banner.banA {}
.banner.banB {
    display: none;
}

.banner.banC {
    background: url(https://pic03.eapple.com.tw/yutai1413195/banner03.jpg)center top;
}

.banner.banD {}

.banner.banE {
}

.banner.banF { 
    background: url(https://pic03.eapple.com.tw/yutai1413195/banner01.jpg)center top;
}

.banner.banblog {
    background: url(https://pic03.eapple.com.tw/yutai1413195/banner02.jpg)center top;

}

@media screen and (max-width: 1024px) {
    .banner h5 {
    }
}


@media screen and (max-width: 768px) {
    .banner h5 {
    color: #ffffff;
    border-left: 10px #ffffff solid;
    margin-top: 38vh;
    margin-left: 5vh;
    }
    .banner {
        padding: 65px 0;
        height: 450px;
    }
    .banner.banC {
        background: url(https://pic03.eapple.com.tw/yutai1413195/mb-banner03.jpg)center top;
    }
    .banner.banF { 
        background: url(https://pic03.eapple.com.tw/yutai1413195/mb-banner01.jpg)center top;
    }
    .banner.banblog {
        background: url(https://pic03.eapple.com.tw/yutai1413195/mb-banner02.jpg)center top;
    }
}

@media screen and (max-width: 600px) {
    .banner h5 {}
}

@media screen and (max-width: 480px) {

    .banner h5 {
        right: 23%;
        top: 100%;
    }

    .banner {
        padding: 70px 0;
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*文章設定*/
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: solid 1px #ccc;
    border-radius: 0;
    padding: 10px 35px 10px 10px;
}
.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.blog_search {
    position: relative;
    margin-bottom: 0;
    margin-right: 10px;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: unset;
    overflow: hidden;
    display: flex;
    gap: 15px;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
}

.accordion li+li .link {
    border-top: unset;
}


/*隱藏標題*/
h5.blog_le_t {
    display: none;
}
.blog_ri {
    width: 100%;
    padding: 0;
    min-height: 75vh;
}
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.subbox_item {
    width: 100%;
    padding: 0;
    border-bottom: unset;
    box-shadow: 0 0 5px 0 rgb(79 79 79 / 15%);
}
.subbox_item a {
    display: grid;
    grid-template-columns: 40vh 1fr;
    position: relative;
    grid-gap: 20px;
    background: #ffffff;
    padding: 10px;
}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 20px;
    opacity: 1;
    font-size: 16px;
    color: #ffffff;
    background: #ee4e2a;
    padding: 15px;
    border-radius: 10px;
    transition: all .6s;
}
.subbox_item a:hover:before{
    opacity: 1;
    transition: all .5s;
    background: unset;
    border: 1px solid #ee4e2a;
    color: #ee4e2a;
}
.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgb(131 131 131 / 20%);
    opacity: 0;
    border: 1px #ddd solid;
    transition: all .5s;
}


/*第二層*/
.blog_shareData {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}
/*內頁封面圖隱藏*/
.articel_mainPic img {
    display: none;
}
.news_related_list li {
    display: block;
    padding: 0px;
}
h4.blog_category_title {
    color: #333;
    font-size: 30px;
    padding: 4px 0;
    margin-bottom: 0;
    text-align: left;
}
.blog_box_edit * {
    line-height: 150%;
    text-align: left;
}
.blog_back a.article_btn_back {
    background: #ee4e2a;
}

.blog_back a.article_btn_prev {
    background: #b1b1b1;
}

.blog_back a.article_btn_next {
    background: #b1b1b1;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    letter-spacing: 3px;
    color: #6d7980;
}
.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #003029;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #003029;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}
.prod_related {
    background: #ffffff;
    padding: 25px 15px;
}

.news_related {
    background: #ffffff;
    padding: 25px 15px;
}
.news_related_list li a {
    display: block;
    padding: 4px;
    background: unset;
    height: 100%;
    text-align: justify;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {
    .subbox_item a {
        grid-template-columns: 30vh 1fr;
    }
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {
    .show_content {
        padding: 20px 10px;
    }
    .blog_le {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .blog_search {
        position: relative;
        margin-bottom: 0;
        margin-right: 0;
        width: 100%;
    }
    .blog_le .accordion {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 5px;
    }
    .accordion li .link a {
        padding: 15px 20px;
        background: #dfdfdf;
        font-size: 14px;
        letter-spacing: 3px;
    }
    .blog_subbox {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        padding: 12px;
    }
    .blog_list_ri h5 {
        font-weight: 500;
        font-size: 17px;
        color: #000;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        white-space: normal;
        overflow: hidden;
    }

    /*第二層*/
    .mobile_product_name {
        display: none;
    }
    h4.blog_category_title {
        color: #333;
        font-size: 30px;
        padding: 4px 10px;
        margin-bottom: 0;
        text-align: left;
    }
    .blog_shareData {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .blog_box_edit * {
        line-height: 150%;
        max-width: 100%;
        width: 100%;
    }

    .blog_box {
        min-height: 20vw;
        padding: 0px;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item a {
        grid-template-columns: 20vh 1fr;
    }
    .subbox_item a:before {
        bottom: 10px;
        right: 20px;
        font-size: 13px;
        color: #ffffff;
        background: #ee4e2a;
        padding: 10px;
        border-radius: 10px;
        transition: all .6s;
    }
}

@media screen and (max-width: 480px) {
    .accordion li .link a {
        padding: 10px;
    }
    .blog_le .accordion {
        display: flex;
        justify-content: space-evenly;
    }
    .blog_subbox {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        padding: 20px;
    }
    .subbox_item a {
        grid-template-columns: 1fr;
    }
    
    
    h4.blog_category_title {
        display: none;
    }
    .subbox_item a:before {
        display: none;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*相本分類全版面 ( 限制最寬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;}
*/

.show-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.show-list .show_name {
    font-size: 17px;
    color: #333;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
    text-align: center;
}

.show-list .item:hover .show_name {
    color: #c8b29c;
    letter-spacing: 9px;
}

.other_album_choice li {
    background: #9a856c;
    font-size: 15px;
    display: inline-block;
    border-radius: 0;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}
/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */
/*促銷方案*/
.promotion_title * {  color: #4c4c4c ;}
.promotion_title em {  border: 1px #4c4c4c  dashed;}
.promotion_title span { border: 1px #4c4c4c  dashed;}
.promotion_title h2 {  display: block;  font-size: 30px;}
.show_content {
    margin: auto;
    padding: 20px 10px;
}
.other_promotion li {
    font-size: 13px;
    line-height: 20px;
    color: #666;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-left: -3px;
}
.other_promotion {
    list-style: none;
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 30px;
}
.other_promotion li a {  border: none; border-top: 1px solid #e5e5e5;   }
.other_promotion li a:hover {  background: none;}
.other_promotion li a:before { border: 2px #bea77c solid; border-bottom: none;  border-right: none; border-left: none;}
.other_promotion li a:after { display: none;}

@media screen and (max-width: 768px) {
    .other_promotion li {
        font-size: 13px;
        line-height: 20px;
        color: #666;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        margin-left: -3px;
    }
}

@media screen and (max-width: 480px) {
    .other_promotion {
        list-style: none;
        display: grid;
        margin: 0 auto;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 15px;
    }
    .other_promotion li {
        font-size: 13px;
        line-height: 20px;
        color: #666;
        display: inline-block;
        vertical-align: top;
        width: 100%;
        margin-left: -3px;
    }
    .promotion_title h2 {
        font-size: 22px;
    }
    
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*表單功能*/

.contact_content {
    margin: auto;
    padding: 20px 5vw;
}
.contact_editbox {
    margin: auto;
    padding: 0;
}

.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: absolute;
    display: block;
    width: 35px;
    left: 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0px;
}
.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #444;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.contact_form li.last blockquote {
    color: #666;
    background: #ffffff;
}

.contact_form li.last cite {
    background: #003029;
    color: #fff;
}

@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        width: 100%;
        margin-left: 0;
        text-align: left;
        font-weight: bold;
        padding: 5px;
        background: rgb(130 130 130 / 15%);
    }
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 10px 0;
    }

    #to_top {
        bottom: 60px;
    }
}

@media screen and (max-width: 600px) {}
/*END*/