@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 {}
*/

/* 商品下拉超過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;
}

/*會員*/
.right_member_in {
    position: fixed;
    top: 50%;
    right: 0;
    width: 30px;
    background: #fff;
    border: 1px #ccc solid;
    padding: 7px;
    text-align: center;
    z-index: 10000;
}

/*======Header區塊======*/


/*首頁Header*/
.header_area {
    position: fixed;
    padding: 0;
    width: 100%;
    background: #ffffffc4;
    backdrop-filter: saturate(93%) blur(10px);
    transition: all .3s;
}

.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
}


.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%;
    height: 15vh;
    position: relative;
    padding: 10px;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    margin-top: 0;
}

/*LOGO*/
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 115px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.nav-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border-radius: 0 0 30px;
    z-index: -1;
    transition: all 1s ease;
    opacity: 1;
    transform: scale(1);
}

.header_area.sticky .nav-header::before {
    width: 0;
    opacity: 0.7;
    transform: all 1s;
}

/*選單*/
.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    width: 200px;
    transition: all 1s ease;
    opacity: 1;
    transform: scale(1);
}
.header_area.sticky .nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    width: 80px;
}

.stellarnav ul {
    margin: 0;
    padding-bottom: 0;
    text-align: center;
    display: flex;
    justify-content: flex-end;
}

/*斜線*/
.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 1px;
    height: 34px;
    background-color: #a2ebff;
    transform: translateY(-50%) rotate(0deg);
}
.stellarnav > ul > li:nth-of-type(1):before {
    display: none;
}

.stellarnav>ul>li>a {
    padding: 0 1.5vw;
    color: #70a6c2;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    margin: 0 5px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover {
    color: #a4c198;
}

.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;
    margin-bottom: 3px;
    padding: 0px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 2px 2px 7px 1px #cfcfcf91;
    transition: 1s all;
    font-weight: 500;
}

.stellarnav li li :hover {
    background: #a4c198;
    color: #ffffff;
    transition: 0.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: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #70a4bc;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

/*==========選單購物車==========*/

.tp_links {
    display: none;
}

.me_tp_features a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 14px;
    color: #ffffff;
}

.shop_search_btn {
    background: #024e9b;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 12px;
    cursor: pointer;
    height: 100%;
}

/*=============================*/

/*首頁促銷方案*/
.news_part .title_i_box {
    margin-bottom: 30px;
    text-align: center;
    display: flex
;
    justify-content: center;
    flex-direction: column-reverse;
}
.news_part .title_i_box:after {
    content: 'News';
    font-size: 18px;
    font-weight: 900;
    color: #a8be9d;
}
.news_part .title_i_box h4 {
    font-size: 22px;
    color: #202020;
    font-weight: 500;
    letter-spacing: 4px;
}
.animated-arrow {
    border-radius: 10px;
    background: #a8be9d
}
.i_news_b * {
    transition: all .5s;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 7px;
}

@media screen and (max-width: 1200px) {
.navigation {
    grid-template-columns: 100px 1fr;
    padding: 10px;
}

}


@media screen and (max-width: 1024px) {
.navigation {
    grid-template-columns: 100px 1fr;
    padding: 10px;
}

    .nav-brand {
        position: absolute;
        width: 90px;
        top: 13px;
    }
    .nav-header::before {
    width: 130px;
    height: 130px;
}

    .stellarnav>ul>li>a {
        font-size: 13px;
        font-weight: 500;
        margin: 0px;
    }

}

@media only screen and (max-width: 768px) {
/*Header*/
    .header_area {
        position: relative;
        backdrop-filter: unset;
        background: #ffffff;
    }
    .nav-header::before{
        display: none;
    }
    .nav-brand {
        position: absolute;
        width: 80px;
        top: 8px;
    }
    .navigation{
        display: flex;
        flex-direction: row-reverse;
        height: 12vh;
    }
    .navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background-color: #5cc1d8;
    z-index: -1;
    transition: all 1s ease;
    opacity: 1;
    transform: scale(1);
}
    .nav-header{
        max-width: 90px;
    }

/*漢堡鈕選單*/
    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100%;
        display: flex;
        justify-content: center; /* 水平置中 */
        align-items: center;     /* 垂直置中 */
        text-align: center;      /* 多行文字水平置中 */
    }
.stellarnav .menu-toggle:after {display: none;}

/*外觀*/
.stellarnav .menu-toggle span.bars span {
        display: block;
        width: 50px;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s ease; /* 加入過渡效果 */
        transform-origin: center center;
    }
/*打開漢堡外觀*/
.stellarnav.active .menu-toggle .bars span:nth-child(1) {
    transform: rotate(30deg) translate(5px, 5px);
    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(-30deg) translate(5px, -5px);
    transition: transform 0.3s ease, translate 0.3s ease; /* 加入變化過渡 */
}
    

/*打開漢堡 右滑出現*/
    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
      right: -100vw;       /* 初始在右側外 */
      left: unset !important;  /* 移除原本的 left 設定 */
      font-size: 0;
      max-width: 100%;
      height: auto;
      padding: 0 15px;        
      left: -100vw;
      overflow: hidden;
      transition: all .5s ease;
    }
/*關*/
     .stellarnav.mobile.left.active > ul{
        display: block !important;
        right: 0;
        max-width: 70%;
        background: #5cc1d8;
        border-right: unset;
    }

/*內層*/
    .stellarnav.mobile.left .close-menu{
        background: unset;
        font-size: 0;
        padding: 30px;
    }
    .stellarnav .icon-close{
        display: none;
    }
    .stellarnav.mobile > ul > li {
        border-bottom: unset;
        padding: 15px;
    }
    .stellarnav > ul > li:before {
        display: none;
    }
    .stellarnav.mobile li a {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        font-size: 18px;
        color: #ffffff;
    }


/*下拉ICON*/
.stellarnav.mobile > ul > li > a.dd-toggle {
    padding: 6px;
    position: absolute;
    text-align: center;
    z-index: 999;
    top: 17px;
    right: 25px;
}
.stellarnav a.dd-toggle .icon-plus:before {
    content: '';
    display: block;
    width: 15px;
    height: 0px;
    border-bottom: solid 2px #ffffff;
    position: absolute;
    top: 50%;
    transform: rotate(90deg);
    transition: width 0.3s;
}

.stellarnav a.dd-toggle .icon-plus:after {
    content: '';
    display: block;
    width: 15px;
    height: 0px;
    top: 50%;
    border-bottom: solid 2px #ffffff;
    position: absolute;
}
/*次分類*/
.stellarnav.mobile li.open {
    background: unset;
    padding: 3px;
    transition: 1s all;
}
.stellarnav.mobile li.open li.open {
    background: #ffffff26;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.stellarnav.mobile ul {
    background: unset;
}
.stellarnav li li {
    background: unset;
    box-shadow: unset;
}
.stellarnav.mobile li li a {
    padding: 10px 50px 10px 28px;
    font-size: 15px;
    font-weight: 500;
}
.stellarnav li li :hover {
    background: unset;
}
}

@media only screen and (max-width: 570px) {


    .me_tp_features {
        text-align: center;
        display: none;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*======Footer區塊======*/
/*LOGO隱藏*/
.footer {
    padding: 30px 0 0;
    font-size: 14px;
    background: #e1eddf;
    position: relative;
    z-index: 99;
}

.footer .center {
    position: relative;
    max-width: 80%;
}

.footer_info {
    padding: 40px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    align-items: center;
    width: 70%;
    margin: auto;
}

.footer_logo {
    display: inline-block;
    vertical-align: top;
    max-width: 150px;
    margin: 0;
}

.footer_info ul {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px #ffffff solid;
    padding: 40px 0;
}

.footer_info li p {
    line-height: 175%;
    letter-spacing: 1px;
    color: #70a4bc;
    font-weight: 500;
}

.footer_info li p a {
    color: #70a4bc;
        font-weight: 500;

}

.footer_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer_menu a {
    display: inline-block;
    padding: 9px 7px;
    border: unset;
    margin: 0 5px 5px 0;
    font-size: 14px;
    line-height: 100%;
    color: #70a4bc;
    background: unset;
    text-align: right;
    transition: 1s all;
    font-weight: 500;

}

.footer_menu a:hover {
    color: #008cb3;
    background: unset;
}

.footer_menu a:nth-of-type(1) {
    display: none;
}

.copy {
    text-align: center;
    padding: 0 0 35px 0;
    font-size: 13px;
    color: #999;
    border-top: unset;
    margin-top: 15px;
}

.copy a:hover {
    color: #008cb3;
}

.box_link a {
    display: none;
}

/*浮動按鈕隱藏*/
.linksBtn {
    display: none;
}


@media screen and (max-width: 768px) {
.footer_logo {
    max-width: 100px;
}
.footer .center {
    max-width: 100%;
}
.footer_info ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px #ffffff solid;
    padding: 40px 0;
}
.footer_menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.footer_menu a {
    padding: 9px 9px 9px 0px;
}
}

@media screen and (max-width: 480px) {

}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    background: #b2d9a3;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #b2d9a3;
    color: #FFF;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車*/
.product-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: #b2d9a3;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.product-layer-two li a:hover {
    background: #f9b22b;
    color: #ffffff;
}

.products-list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.products-list .more {
    border: 1px solid #024E9B;
    color: #024E9B;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.fa-circle-plus::before {
    content: "\f055";
    color: #024e9b;
}

.product-layer-two li i.close::before {
    content: '\f056';
    color: #024e9b;
}

.products-list .item a:hover .more {
    background: #024e9b;
    border: 1px solid #024e9b;
    color: #fff;
    letter-spacing: 2px;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #024e9b;
}

.product-layer-two li li:hover>a:before {
    background: #024e9b;
}

.products-list .price b {
    color: #ff6f00;
    font-size: 16px;
    width: calc(50% - 10px);
}

/*第二層*/
.product-layer-two li.active a {
    font-weight: bold;
    border: unset;
    background: #f3f3f3;
    color: #024e9b;
}

.proImgSwiper li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 5px #f57b1d4f solid;
    background: #fff;
}

.sidebarBtn .price {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 3px solid #f57b1d4f;
    letter-spacing: 1px;
}

.sidebarBtn .sp_price {
    display: block;
    color: #f57b1d;
    font-size: 22px;
    font-weight: bold;
}

.toShare {
    border-top: 1px solid #f57b1d4f;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    padding-top: 20px;
}

.inquiry_a3 {
    background: #f57b1d;
}

.inquiry_a1 {
    background: #024e9b;
}

.inquiry_a2 {
    background: #024e9b;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    letter-spacing: 2px;
    background: #f8b32b;
}

.inquiry_a1,
.inquiry_a2,
.inquiry_a3 {
    display: block;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-weight: 900;
    margin-top: 10px;
}

/*詢價車內頁*/
.shopping-cart .cart_head {
    background: #024e9b;
    color: #fff;
}
.rewrite_simple {
    background: #024e9b url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: #ff801e 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: 30vw;
}

.product_page .products-list,
.product-wrapper {
    width: calc(100% - 270px);
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    /*display:block !important;*/
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !important;*/
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li li a {
    padding: 5px 10px;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #024e9b;
}

.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: 10px;
    height: 10px;
    background: transparent;
    left: 0;
    margin-left: -10px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: #024e9b;
}

.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_page .product_menu_list {
        width: 100%;
        order: 0;
        min-height: unset;
        display: none;
    }

    .product_menu_list>h5 {
        margin-bottom: 10px;
        position: relative;
        color: #024e9b;
        font-weight: 900;
        padding-left: 18px;
        font-size: 24px;
    }

    .proImgSwiper li {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .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;
    }

    /*第二層*/
    .sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 5px #f57b1d4f solid;
        background: #fff;
    }

}

@media screen and (max-width: 600px) {
    .products-list {
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*大圖*/
#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;
}

.swiper-banner:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}


/*第一張大圖*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before  {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(https://pic03.eapple.com.tw/pediaptc/大圖-Slogan.png);
    width: 100%;
    height: 100%;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 10;

}
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after  {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(https://pic03.eapple.com.tw/pediaptc/大圖-Slogan02.png);
    width: 100%;
    height: 100%;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 
    z-index: 10;

}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}

@media screen and (max-width: 600px) { 

    .bannerindex .swiper-slide img { display:none; }
    .bannerindex .swiper-slide::after { display:none; }
    .bannerindex .swiper-slide {height: 130vw;  width: 100% !important; }
    .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before  { display:none; }
    .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after { display:none; }
/*第一張大圖*/
    .bannerindex .swiper-slide:nth-child(1) { 
        background-image: url(https://pic03.eapple.com.tw/pediaptc/手機大圖-01.jpg); 
        background-position: top; 
        background-size:cover;
    }
/*第二張大圖*/
    .bannerindex .swiper-slide:nth-child(2) { 
        background-image: url(https://pic03.eapple.com.tw/pediaptc/手機大圖-02.jpg); 
        background-position: top; 
        background-size:cover;
    }
}



/*特效END*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 0px;
    background-size: cover;
}
.banner h5 {
    color: #ffffff;
    letter-spacing: 15px;
    margin-left: 15%;
    margin-top: 400px;
    width: 100%;
    font-weight: 500;
    text-align: left;
}
.banner.banA {    background: url(https://pic03.eapple.com.tw/pediaptc/banner-01.jpg)center top;}
.banner.banB {    display: none;}
.banner.banC {    display: none;}
.banner.banD {}
.banner.banE {}
.banner.banF {}
.banner.banblog {    background: url(https://pic03.eapple.com.tw/pediaptc/banner-02.jpg)center top;}
 
@media screen and (max-width: 1024px) {

    .banner {
        padding: 70px 0;
    }

}


@media screen and (max-width: 768px) {
    .banner {
        padding: 62px 0;
        height: 300px;
        background-size: cover !important;
    }

    .banner h5 {
        letter-spacing: 8px;
        margin-right: 55%;
        margin-top: 100px;
        width: 100%;
        font-size: 25px;
    }
}

@media screen and (max-width: 480px) {
    .banner {
        padding: 70px 0;
    }

    .banner h5 {
        color: #ffffff;
        letter-spacing: 5px;
        margin-right: 50%;
        margin-top: 100px;
        width: 100%;
        font-size: 19px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    padding: 12px;
}

.subbox_item a {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    grid-gap: 20px;
}

.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgb(0 0 0 / 49%);
    opacity: 0;
    transition: all .5s;
}

.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -4%;
    letter-spacing: 5px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #b2d9a3;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

.blog_list_ri h5 {
    font-weight: 800;
    font-size: 20px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*第二層*/
.news_related_list li {
    display: block;
    padding: 0px;
}

.blog_shareData {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

.blog_back a.article_btn_back {
    background: #008cb3;
}

.blog_back a.article_btn_prev {
    background: #b2d9a3;
}

.blog_back a.article_btn_next {
    background: #b2d9a3
}
.news_related {
    background: unset;
    padding: 60px 15px;
}
.news_related h6 span:before {
    content: '相關文章';
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 5px;
    color: #666;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #008cb3;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {
    .blog_subbox {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
        padding: 12px;
    }

    /*第二層*/
    .blog_shareData {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        margin-bottom: 20px;
    }

    .blog_box_edit * {
        line-height: 150%;
        max-width: 100%;
        width: 100%;
    }

    .blog_box {
        min-height: 20vw;
        padding: 35px;
    }
}

@media screen and (max-width: 600px) {}

@media screen and (max-width: 480px) {
    .blog_subbox {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        padding: 20px;
    }

    h4.blog_category_title {
        display: none;
    }
}

/*一排呈現
.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;}
*/

.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: 30px;
    text-align: center;
}

.show-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;
}

.show-list .item:hover .show_name {
    color: #3966a2;
}


/*第二層*/
.subalbum-menu h2 {
    font-size: 20px;
    color: #024E9B;
    display: inline-block;
    vertical-align: middle;
}

.other_album_choice li {
    background: #24333f;
    font-size: 15px;
    display: inline-block;
    border-radius: 0px;
    padding: 10px 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; } 取消連結被點擊效果
*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*促銷方案*/
.promotions_page .main_part {
    padding: 5%;
} 
.other_promotion {
    list-style: none;
    display: grid;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.other_promotion li a {  border: none; border-top: 1px solid #e5e5e5;   }
.other_promotion li a:hover {  background: none;}
.other_promotion li a:before {border: 3px #8dc44b solid;border-bottom: none;border-right: none;border-left: none;}
.other_promotion li a:after { display: none;}

@media screen and (max-width: 768px) {
    
    .promotions_page .main_part {
    padding: 60px;
}
    .other_promotion {
    grid-template-columns: 1fr;

}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*表單功能*/

/*=====隱藏=====*/

.contact_editbox {
    margin: auto;
    padding: 0;
}
.contact_content .information_left {
    width: 295px;
    display: none;
}
.contact_content {
    margin: auto;
    padding: 20px 10px;
    text-align: center;
}
.contact_form li.last cite {
    background: #70a4bc;
    color: #fff;
}
.list_before.info li {
    padding-left: 40px;
}
.list_before li {
    margin: 7px 0;
    position: relative;
    line-height: 1.5;
}
.contact_le_map {
    display: none;
}

h4.blank_letter:before {
    content: '線上諮詢';
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #a3c09c;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.red {
    color: #f57b1d;
}
.blank_letter {
    font-size: 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;
}

@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: #b2d9a352;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.path p,
.path p a {
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #666;
    display: none;
}

@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) {}