@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Quicksand:wght@400;500;600;700&display=swap');

body {
    overflow-x: hidden;
    font-family: "Noto Sans TC", 微軟正黑體, arial, sans-serif;
    font-weight: 400;
}

/*
關於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 {}
*/

.main_header_area .container {
    max-width: 1500px;
    margin: auto;
}


@media screen and (max-width: 1440px) {
.main_header_area .container {
    max-width: 1300px;
   }
}

@media screen and (max-width: 1300px) {
.main_header_area .container {
    max-width: 1024px;
   }
}

#content {
    background-image: url(https://pic03.eapple.com.tw/hanhonpurify/bg-03.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*開場動畫/＝＝＝＝＝*/
.bannerindex::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(0px);
    z-index: 1000000000000010000000;
    animation: action-bg 3.2s cubic-bezier(0.80, 0.08, 0.11, 0.5) forwards;
    pointer-events: none;
}
.swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 2.5s cubic-bezier(0.80, 0.08, 0.11, 0.59) forwards ;
}

@keyframes action-bg {
    0%{
        backdrop-filter: grayscale(1)  blur(10px);
    }
    100%{
        backdrop-filter: grayscale(0)  blur(0px);
    }
}


@keyframes action-banner {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 大圖 */

/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}



.swiper-fade .swiper-slide {
    background-color: #000;
}



.pageIndex .swiper-banner .swiper-slide img {
    filter: grayscale(0.5);
    transition: all 0.5s cubic-bezier(0.68, 0.1, 0.265, 1);
}


.pageIndex .swiper-banner .swiper-slide.swiper-slide-active img {
    filter: grayscale(0);
    transition: all 1s cubic-bezier(0.68, 0.1, 0.265, 1);
}




.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 999;
    pointer-events: none;
    background: url(https://pic03.eapple.com.tw/hanhonpurify/bg-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 999;
    pointer-events: none;
    background: url(https://pic03.eapple.com.tw/hanhonpurify/bg-04.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1* 0.43);
}



.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before { animation: fade-in-elegant  2.5s ease-in-out both;}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before  {animation: slide-fade-in 3s 0.3s both;}

/*上升特效*/
  @keyframes slide-top {
  0% {-webkit-transform: translateY(100%);  /* 一開始的位置 在Y-100(最下方)*/
            transform: translateY(100%);
            opacity:0;/*透明度0*/}
  100% {-webkit-transform: translateY(0);/* 跑到最後終止的位置 在Y-0(最上方)*/
            transform: translateY(0);
            opacity:1;/*透明度顯示*/}
  }

  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}

@keyframes slide-fade-in {
    0% {
        opacity: 0;
        transform: translateX(-20px); /* 從左側滑入 */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/hanhonpurify/bg-05.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    transform-origin: 10% 50%;
    animation: left-right 2s forwards;

}

.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/hanhonpurify/bg-05.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    transform-origin: 10% 50%;
}



@keyframes left-right {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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個--結束 */

.nav-header {
    max-width: 100px;
}

.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0px auto;
    width: 150px;
    padding: 5px 0 0;
}

.nav-brand img {
    max-width: 100%;
}

.pageIndex .nav-brand img {
    max-width: 100%;
}

.sticky .nav-brand img {
    max-width: 100%;
}

.header_area {
    padding: 10px 0;
    background: none;
    position: fixed;
}

.header_area.sticky {
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 6%);
}

.pageIndex .main_header_area {
    height: 0px;
    transition: all 1s;
}

.header_area.sticky .main_header_area {
    height: 78px;
    transition: all 1s;
}

body.pageIndex .header_area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15vw;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff00 100%);
    mix-blend-mode: color-burn;
    transition: all 0.3s ease-in-out;
    opacity: 0.33;
}

/*●●●●●●●●●●●●●●●●●●●●●●●●   HEADER區塊   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

.stellarnav li {
    font-size: 17px;
}

.stellarnav li a {
    color: #000;
    padding: 10px 10px;
}

.stellarnav>ul>li {
    padding: 5px;
}

.stellarnav ul {
    margin: 0;
    padding: 12px 0;
    text-align: right;
}

.stellarnav>ul>li>a {
    line-height: 24px;
    height: 24px;
    padding: 0 17px 0 0;
    margin: 10px 5px;
    position: relative;
    letter-spacing: 1.5px;
    color: #333333;
    transition: all 0.1s;
}

.pageIndex .stellarnav>ul>li>a {
    color: #333333;
}



.sticky .stellarnav>ul>li>a {
    color: #333333;
}


.stellarnav>ul>li:nth-of-type(5)>a {
    border-right: none;
}

.stellarnav>ul>li>a b {
    font-weight: 400;
}

.header_area .stellarnav>ul>li>a:hover {
    text-shadow: none;
    color: #2A5E74;
}

.header_area.sticky .stellarnav>ul>li>a:hover {
    color: #2A5E74;
}

.stellarnav li li a {
    transition: all 0.2s ease-in-out;
}

.stellarnav > ul > li:after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 30px;
    width: 16px;
    height: 1px;
    background-color: #2A5E74;
    transform: rotate(289deg);
}

/*下拉分類滑過前*/
.stellarnav li li a:hover {
    background: #2A5E74;
    color: #ffffff;
}

/*下拉分類滑過後*/

/*選單下拉三角槓槓*/
.stellarnav li.has-sub>a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 40%;
    right: 2px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #555 #555 transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.stellarnav li.has-sub>a:hover:after {
    border-color: #dfd7c9;
}



/*下拉分類橫向箭頭*/
.stellarnav li li.has-sub>a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #cccccc #cccccc transparent;
    -webkit-transform: rotate(253deg);
    transform: rotate(-45deg);
}


@media screen and (max-width: 768px) {
    .stellarnav > ul > li:after {
        display: none;
    }
}


/*-------------------------------------------------*/

/*第二層*/
.stellarnav li li {
    border: none !important;
}

.stellarnav li li>a,
.stellarnav li li.has-sub>a {
    color: #333333;
    padding: 10px 15px;
    transition: all 0.3s;
    letter-spacing: 1.5px;
    border-left: 1px solid transparent;
    font-size: 14px;
    background: #ffffff;
    box-shadow: 4px 5px 23px rgb(0 0 0 / 10%);
}

/*下拉背景*/
.stellarnav li li:hover>a,
.stellarnav li li.has-sub:hover>a {
    padding-left: 20px;
    border-left: 4px solid #258684;
}

.stellarnav>ul>li>ul {
    left: 50%;
    transform: translateX(-42%);
}

.stellarnav ul ul {
    width: 160px;
    border: 0 solid transparent;
    padding: 0px 0;
}

/*下拉分類寬度/外框*/
.stellarnav li li {
    border: none;
}

.stellarnav li li+li {
    border-top: 1px solid #eeeeee;
}

.stellarnav li.drop-left ul ul {
    right: 100%;
}

.stellarnav ul ul ul {
    left: 100%;
}








/*-------------------*/
/*下拉次分類(箭頭)*/
.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav li li.has-sub>a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #cccccc #cccccc transparent;
    -webkit-transform: rotate(253deg);
    transform: rotate(45deg);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.navigation {
    grid-template-columns: 150px 1fr;
}

.me_tp_features {
    display: none;
}

@media screen and (max-width: 1750px) {


    .nav-brand img {
        max-width: 100%;
    }
}

@media screen and (max-width: 1250px) {
    .stellarnav>ul>li {
        padding: 1px 0;
    }
    .stellarnav > ul > li:after {
        bottom: 26px;
    }
}

@media screen and (max-width: 1024px) {

    .header_area.sticky .main_header_area{    height: 68px;}

    .navigation {
        justify-content: center;
        width: 100%;
        position: relative;
        padding: 0 20px;
        display: grid;
        grid-gap: 0 20px;
    }
    
    .nav-brand{    width: 80px; }

    .nav-header {
        padding-left: 0px;
    }

    .stellarnav>ul>li>a {
        margin: 10px 1px;
    }
    .navigation {
    grid-template-columns: 80px 1fr;
    }
}


@media screen and (max-width: 768px) {
    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: auto;
        width: auto;
        display: inline-block;
        left: 10px;
    }

    .navigation {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    

    .nav-header {
    max-width: 100px;
    }

    .nav-brand {
        width: 100px;
    }

    .header_area.sticky .stellarnav .menu-toggle:after{
        color: #777;
    }

    .stellarnav .menu-toggle {
        padding: 12px;
    }

    .stellarnav>ul>li>ul {
        left: auto;
        transform: none;
    }
    .stellarnav ul{
        padding: 0px 0;
    }
}

@media screen and (max-width: 600px) {
    .nav-header {
        max-width: 60px;
    }
    .header_area.sticky .main_header_area {
    height: 50px;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*浮動按鈕*/
.linksBtn {
    width: 50px;
    height: 50px;
    background: #258684;
}
.info_fix:hover>.linksBtn {
    background: #258684;
    box-shadow: 0 0 0 18px transparent;
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
}
.info_fix_links a {    background: #25868496;}
.info_fix_links a:hover {    background: #258684;}

/*隱藏*/
.info_fix_links a.info_fix_default.info_fix_phone {
    display: none;
}
.info_fix_links a.info_fix_default.info_fix_mail {
    display: none;
}

/*順序*/
a.info_fix_line {
    order: 1;
}
a.info_fix_tel {
    order: 2;
}
a.info_fix_fb {
    order: 3;
}


@keyframes pulse {
    from {
    box-shadow: 0 0 0 0 rgba(167, 252, 250, 0.459);
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:#258684;}
.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:#258684;}

.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) {
.products-list { grid-template-columns: 1fr;}
.main_part{padding: 50px 30px 10px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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 {
    background-image: url(https://pic03.eapple.com.tw/hanhonpurify/ban.jpg);
    height: 40vw;
    background-size: cover;
    background-position: center bottom;
    max-height: 430px;
    min-height: 240px;
    padding: 0 200px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    position: relative;
    animation: fade-in-right 1.5s cubic-bezier(.39,.575,.565,1.000) both;
}


@keyframes fade-in-right{0%{transform:translateX(-50px);opacity:0}100%{transform:translateX(0);opacity:1}}



.banner h5 {
    font-size: 16px;
    color: #2a5e74;
    
}



.banner h5::before {
    content: "";
    display: block;
    font-size: 80px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    
}




.banner.banA h5::before {
    content: "NEWS";
}

.banner.banB {
    display: none;
}

.banner.banC h5::before {
    content: "CONTACT";
}
.banner.banD {}

.banner.banE h5::before {
   content:  "Case";
}

.banner.banF h5::before {
    content: "PRODUCTS";
}

.banner.banblog h5::before {
    content: "NEWS";
}


.path {
    display: none;
}


@media screen and (max-width: 1440px) {
.banner {    padding: 0 76px;}
}

@media screen and (max-width: 1300px) {
.banner {    padding: 0 142px;}
}

@media screen and (max-width: 1024px) {
.banner {    padding: 0 26px;}
}

@media screen and (max-width: 768px) {
.banner{text-align: center;  justify-content: center;}

.banner h5 {    color: #fff;}

.banner h5::before {font-size: 40px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他頁面*/
.path p {
    display: none;
}
.services_page .edit {
    margin: auto;
    padding: 0px 0;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 首頁文章 */

.module_i_news {
    background: #ffffff;
    padding: 50px 20px;
    background: url(https://pic03.eapple.com.tw/hanhonpurify/bg.jpg) 0% 0% / cover no-repeat;
}

.module_i_news li a:after {
    display: none;
}

.module_i_news li a:before {
    color: #2A5E74;
}


.i_blog_ri h5 {
    color: #2A5E74;
}

.i_blog_ri em {
    color: #666666;
}


.module_i_news .title_i_box h4 {
    font-size: 36px;
    color: #2a5e74;
    font-weight: 500;
    border-bottom: 1px #2a5e74 solid;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 100px;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.module_i_news li {
    display: flex;
    flex-wrap: wrap;
     position: relative;
    text-align: left;
    background: #fff;
    border: 1pt solid #FFF;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 4%);
    border-radius: 15px;
    padding: 20px;
}

.module_i_news li a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.module_i_news_list a:hover .i_blog_le img {
    transform: translate(0%, 0%) scale(1.05);
    filter: none;
    transition: all .6s;
}


/*首頁+聯絡按鈕*/
.animated-arrow {
    background: transparent;
    color: #2A5E74;
    border-bottom: 1px #2A5E74 solid;
}


@media screen and (max-width: 768px) {
    .module_i_news .title_i_box h4 {
        padding: 10px 40px;
    }
    .module_i_news li {
        border-bottom: 1px #2A5E74 solid;
    }
}


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

.blog_back a.article_btn_prev {
    background: #2A5E74;
}

.blog_back a.article_btn_back {
    background: #258684;
}

.blog_back a.article_btn_next {
    background: #2A5E74;
}

.lastPage {
    background: #258684;
}


.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #258684 !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
    transition: 0.3s;
}

.blog_le .accordion>li {
    border-bottom: 1px #3f3f3f33 solid;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.accordion li+li .link {
    border-top: none;
}

.subbox_item a:before {
}

/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 80%;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subbox_item {
    width: calc(100%/ 3 - 14px);
    padding: 5px;
}

.page strong, .page a:hover {
    background: #2A5E74;
    color: #fff;
}


@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}

/**/


/* 左邊欄位 */



.blog_box {
    min-height: 20vw;
    padding: 7px;
    display: flex;
    flex-wrap: wrap;
}

.blog_le {
    margin-right: 3%;
    width: 20%;
}

.blog_ri {
    width: 77%;
}

.blog_back {
    width: 100%;
}



.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_le .accordion {
    border: none;
    border-radius: 0;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #fff !important;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #565656 !important;
}

.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog_list_le {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.subbox_item a:hover .blog_list_le::after {
    opacity: 1;
    transition: all 0.5s;
}

.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri {
    display: flex;
    vertical-align: top;
    padding: 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.blog_list_ri p {
    margin-top: 30px;
}

.subbox_item::after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #258684;
    margin: 10px 0;
}

.blog_list_ri h5 {
    color: #2A5E74;
    font-size: 20px;
    font-weight: 500;
}

.subbox_item a img {
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

.subbox_item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    color: #494949;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 80%;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    bottom: 0;
}







@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 90%;
        padding: 0;
    }
    .subbox_item {
        width: 48%;
    }

}


@media screen and (max-width: 768px) {
    .subbox_item a {
        flex-direction: column;
    }
    .blog_box {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .blog_page .main_part {
        max-width: 75%;
    }
    h4.blog_category_title {
        text-align: justify;
        color: #494949;
        display: none;
    }
    .blog_ri {
        width: 80%;
    }
    .blog_le {
        margin-right: 0;
        width: 80%;
        margin: 20px auto;
    }

    .blog_list_ri {
        display: flex;
        vertical-align: top;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .subbox_item a:before {
        display: none;
    }

    .blog_list_le {
        padding-bottom: 100%;
    }

    .blog_in_page .main_part {
        max-width: 100%;
    }

    .blog_page .show_content {
        max-width: 100%;
    }

    .subbox_item {
        width: 100%;
        border-bottom: 0;
    }

    .blog_page .main_part {
        max-width: 100%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 購物車 */

/*購物車側選單*/

.product-layer-two li a {
    padding: 10px 16px;
    color: #fff;
    background: #2a5e74;
    position: relative;
    border: 1px #fff solid;
  }
  
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    padding-bottom: 5px;
}

  .product-layer-two > li > a:after {
    content: '';
    width: 0%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 22px;
    right: 155px;
    transition: all 0.6s ;
  }
  
  .product-layer-two > li > a:hover:after {
    width: 30%;
    right: 10px;
  }
  
  .product-layer-two li.active a {
    border: none;
    font-weight: 400;
  }
  
  .product-layer-two li i {
    top: 4px;
    color: #FAF7EF;
    transition: 0.3s;
  }
  
  .product-layer-two li i:hover {
    filter: drop-shadow(2px 2px 3px #4f5a47);
    transform: rotate(45deg);
    color: #FFF;
    transition: 0.3s;
  }
  
  .product-layer-two li.active li a {
    font-weight: 400;
    letter-spacing: 2px;
    color: #444;
    background: transparent;
  }
  
  .product-layer-two li li a {
    padding: 5px 10px;
    color: #444;
    transition: all 0.4s;
  }
  
  .product-layer-two > li 
  { width:100%; max-width:100%; padding:0; text-align:left; padding-bottom: 5px; border-bottom: none;}
  
  
  
  /*商品外觀*/
  
  .products-list .price b {
    color: #2A5E74;
    letter-spacing: 1px;
    font-weight: 400;
  }
  .products-list .name {
    font-size: 16px;
    color: #3F3F3F;
    letter-spacing: 1px;
    font-weight: 400;
    border-bottom: 1pt solid #3F3F3F;
    height: 60px;
  
  }
  
  .products-list .item a {
    padding-bottom: 34px;
    position: relative;
  }
  
    .products-list .pic img {
      border-radius: 5px;
  }
  
  .products-list .pic:before {
    content: "READ MORE";
    letter-spacing: 2px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    line-height: 161%;
    background: #2A5E74;
    opacity: 1;
    transition: all 0.3s;
    font-size: 14px;
    width: 100%;
    color: #FAF7EF;
  }
  
  .products-list .pic img {
    border-radius: 5px;
    transition: all 0.6s;
  }
  
  .products-list a:hover .pic:before {
    opacity: 0;
  }
  
  .products-list a:hover .pic img {
    transform: translate(0%, 0%) scale(1.1);
    filter: none;
    transition: all 0.6s;
  }

  .products-list .price .sp_price {
    color: #e54c4c;
  }
  .products-list .more {
    border: 1px solid #2A5E74;
    color: #2A5E74;
  }

  .products-list .item a:hover .more {
    background: #2A5E74;
  }

  .toShare {
      border-top: 1px solid #2a5e74;
  }

  
  /*商品內頁側邊單*/
  .sidebarBtn {
    border: none;
    background: #ffffff;
  }
  .product_info li .txt_box {
    color: #949394;
  }
  .sidebarBtn .price span {
    color: #949394;
    font-weight: 500;
    border-radius: 50px;
    text-align: justify;
    font-size: 17px;
    margin: 8px 0px;
}
  
  .sidebarBtn h2 {
    color: #2a5e74;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 500;
  }
  
  .sidebarBtn .price {
    color: #444;
      font-size: 18px;
      font-weight: 400;
    border-bottom: 1px solid #fff;
  }
  
  .radio-inline__label{
    color: #cacaca;
  }

  .radio-inline__input:checked + .radio-inline__label {
    color: #FAF7EF;
  }
  
  .inquiry_a1 {
    background: #258684;
  }

  .inquiry_a2 {
    background: #2a5e74;
}

  .inquiry_a3 {
    background: #949394;
  }
  
  .product_info li span {
    color: #949394;
  }

  .inquiry_a1:hover {
    letter-spacing: 2px;
    background: #1c6361;
  }

  .inquiry_a2:hover {
    letter-spacing: 2px;
    background: #214b5d;
  }

  .inquiry_a3:hover {
    letter-spacing: 2px;
    background: #949394;
  }

  
  /*商品資訊*/

  .pd_tabTitle li.activeTab::after {
    background: #2a5e74;
}


  /*商品推薦*/
  
  .prod_related {
    background: #fff;
    padding: 25px 15px;
  }
  
  .related_list li a {
    background: #f5f5f5;
    height: 100%;
    padding: 11px;
    border-radius: 10px;
    transition: all 0.5s;
  }
  
  .related_list li a:hover {
    box-shadow: 3px 3px 3px #afafaf45;
    transform: translate(0%, 0%) scale(1.1);
    transition: all 0.5s;
  }
  
  
  .prod_related h6 span:before {
    font-size: 21px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 5px;
  }
  
  .prod_related h6 {
    margin: 0px auto 48px;
    background: #2A5E74;
    text-align: center;
    padding: 8px 0px;
  }
  
  .related_list li a p {
    padding-top: 10px;
  }
  
  .lastPage {
    color: #fff;
    background: #2A5E74;
    padding: 10px 20px;
    margin: 55px auto 40px;
    text-align: center;
    transition: all 0.3s;
  }
  
  .lastPage:hover{
   background:#214b5d;
   transition: all 0.3s;
  
  } 

  .path p, .path p a {
    display: none;
  }

  /*購物車下單*/

  .shopping-cart .cell.product_name p {
    color: #fff;
  }
  .shopping-cart .cell {
    color: #fff;
  }

  .total_amount li {
    color: #fff;
  }

  .rewrite_simple {
    background: #626262 url(../images/simple_left.png) 10% center no-repeat;
  }

  .send_simple {
    background: #949394 url(../images/simple_right.png) 88% center no-repeat;
  }

  .form label {
    color: #fff;
  }

  .formbox_form li .form__label {
    color: #fff;
  }

  .form label.Bigcheck {
    color: #fff;
  }

  .declaration {
    background: #4d4d4d;
  }


  /*訂單成立*/

  .order_list_tab td {
    color: #949394;
    border-top: none;
  }

  .order_list_tab td:nth-child(1){
    color: #545454;
  }

  .order_list_head p {
    color: #949394;
    border-bottom: 2px #fff solid;
  }

  .order_list_pro tr:first-child {
    background: #333333;
  }

  .order_list_pro tr:first-child td {
    color: #fff;
  }
  
  .order_list_pro td {
    color: #fff;
  }

  .last_box_money p, .last_box_money em{
    color: #fff;
  }


@media screen and (max-width: 768px) {
    .product_page .product_menu_list>h5 {
        display: block;
        font-size: 20px;
        font-weight: 400;
        padding-left: 7px;
    }
    a.pd_menu_toggle i {
        color: #444;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相本分類全版面 ( 限制最寬2000px  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.show-list .item:hover .show_name{
    color: #e14d4b;
}

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .item a .show_pic {
    transition: all .8s;
}
.overlay {
  background: transparent;
  left: 0;
  top: 0;
  opacity: 1;
  transform: scale(0);
  z-index: 1;
  transition: all 0.3s;
}

.overlay:hover {
  background: linear-gradient(0deg, #2a5e748f, #2a5e7400);
  opacity: 1;
  animation: tracking-in-expand-fwd .5s cubic-bezier(.215,.61,.355,1.000) both;
}

.overlay:hover:after {
  content: 'MORE +';
  width: 30%;
  position: absolute;
  bottom: 4%;
  right: -4%;
  height: 11%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}


@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
            transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}


/* .show-list .item a:hover .show_pic {filter: grayscale(0);} */
.show-list .show_pic {
    aspect-ratio: 37 / 25;
}
.show-list .item a .show_pic img {
    transform: scale(1);
    transition: all .8s;
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.05);
    /* opacity: 0.8; */
}

.album_page .banner {
    position: relative;
    background: transparent;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    display: flex;
    padding: 0;
    min-height: fit-content;
}
.album_page .banner h5 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
    font-family: var(--SFont);
    width: fit-content;
    padding: 50px 0 0;
}


/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/
.album_page .show_content, .album_info_page .show_content{ 
    width: 100%;    
    text-align: center;
}

/* 主分類相簿名 */
.subalbum-menu h2 {
    color: #101010;
    font-size: 24px;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
}
/*大分類頁*/
.album_class_page .show_content, .album_info_page .show_content {width: 100%;}
.album_descrip { display: none;}

.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}

.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

ul.show-list, .other_subalbum, ul.pic-list {
    gap: 20px;
    border-top: 1pt solid #258684;
    padding-top: 40px;
}

.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
/* 次分類相簿名 */
.other_subalbum li a p {
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .1em;
    color: #3F3F3F;
    width: 100%;
    text-align: center;
}

.other_subalbum li a p:hover {
    color: #258684;
}


/*相本內頁-.album_info_page*/
.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流*/
.album_info_page .pic-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    /* row-gap: clamp(20px, 4%, 50px);
    column-gap: clamp(20px, 4%, 50px); */
    grid-gap: 10px;
}
.album_info_page .pic-list .item { width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: 4 / 4;
}
.pic-list .item h6 {
    padding: 0;
}



@media (max-width: 1440px){
.album_info_page .pic-list{ 
    -moz-column-count:3; 
    -webkit-column-count:3;  
    column-count:3;
}
}
@media screen and (max-width: 1280px){
    /* .album_page .show-list .item{width: 49%;}
    .album_info_page .pic-list .item {width: 49%;}	 */
    .show-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 980px){
    .main_part {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .show-list {
        grid-template-columns: 1fr ;
    }
}

@media screen and (max-width: 600px){
    .album_class_page .show_content{width: 100%;}
    .album_page .show-list .item{width: 100%;}	
    .album_page .show-list .item{margin:auto;}
    .show-list .item{margin:auto;}
    .show-list {gap: 20px;}
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_editbox {padding: 0;}
.contact_content {max-width: 1400px;padding: 20px 10px 50px;}
.contact_content > form {display: flex;justify-content: space-between;}
.contact_content .information_left {width: 30%;}
.contact_le_nomap { height:350px;}
.contact_content .information_right {width: 65%;padding-left: 20px;}
.list_before.info li {padding-left: 80px;}
.list_before.info li::before {width: 45px;letter-spacing: 5px;font-size: 15px;font-weight: normal;}
.note { order: 2; font-size: 14px;letter-spacing: 1px; margin-left: 20px;}
.contact_form {display: flex;flex-wrap: wrap;justify-content: space-between;}
.contact_form li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0px 20px 0px;
    margin: 0;
    padding-left: 0;
    border-bottom: unset;
    flex-direction: row;}
.contact_form li .form__label {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
    flex-direction: row-reverse;}
.contact_form li .form__insert {display: flex; align-items: center;width: 100%;line-height: 100%;}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    border: unset;
    border-bottom: 1px solid #ccc;
    background: unset;}
.noborder { padding: 10px 5px;}
.form select {
    width: 100%;    
    padding: 10px 5px;
    border: 1px #ddd solid;
    margin-right: 0; 
    margin-bottom: 0;    
    color: #258684;}
.form select option {color: #258684;}
.captcha {width: 100%;}
input[type="checkbox"], input[type="radio"] {     margin: 0 5px 0 10px;}
.contact_form li.last { 
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;}
.contact_form li.last blockquote {
    border-radius: 30px;
    border: 1px #ddd solid;
    color: #258684;
    margin-right: 20px;
    width: 50%;}
.contact_form li.last cite {
    border-radius: 30px;
    background: #258684;
    border: 1px #258684 solid;
    width: 50%;}

/*隱藏*/
.list_before.info li.info_PHONE {
    display: none;
}
.list_before.info li.info_LINE {
    display: none;
}
.list_before.info li.info_TAXID {
    display: none;
}
.list_before.info li.info_MAIL {
    display: none;
}
.list_before.info li.info_ADD {
    display: none;
}

@media screen and (max-width: 768px) {
.contact_form {justify-content: center;}
.contact_content > form {    flex-direction: column;}
.contact_content .information_left, .contact_content .information_right {width: 100%;padding: 0;}
.contact_form li {width: 100%;}
.list_before.info {margin-top: 30px;}
.contact_le_nomap {height: auto;}
}

@media screen and (max-width: 600px) {  
.contact_form li .form__label {background: transparent;  width: 20%;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*FOOTER*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
.footer{  background: #2A5E74; padding: 80px 0 0;    /*background: #5a8596;*/ }
.footer_logo { /*filter: contrast(0) brightness(100);*/     
    background: url(https://pic03.eapple.com.tw/hanhonpurify/f-logo.png) no-repeat center;
    height: 98px;
    max-width: 136px;
    width: 100%;}
.footer_logo img {
    display: none;
}
.footer .center{max-width: 1400px;width: 90%;margin: 0 auto;}
.footer_info {padding-right: 0px;display: flex;justify-content: space-between;}
.footer_info ul{order: 2;width: 100px;}
.footer_info li{padding: 0;}
.footer_info li:nth-child(1){display: none;}
.footer_menu a {background: #fff;background: transparent;border: none;display: block;color: #fff;
    margin: 0;padding: 0;line-height: 200%;text-align: right;position: relative;text-transform: uppercase;}
.footer_menu a:first-child{display: none;}
    .footer_menu a:before{content: "";width: 0;height: 1px;background: #258684;transition: all .5s;
    position: absolute;bottom: 0;right: 0;}
    .footer_menu a:hover{background: transparent;color: #258684;}
    .footer_menu a:hover:before{width: 100%;}
    .box_link {right: inherit;left: 0;top: inherit;bottom:0;flex-direction: row;text-align: center;
        width: 120px; display: none;}
    .box_link a {border: none;padding: 0;width: 26px;height: 26px;background-size: contain !important;
        margin: 0 5px;transition: all .5s;}
    .box_link a.me_tp_line {background: url(https://pic03.eapple.com.tw/chirdesign/f_line.svg) no-repeat;}
    .box_link a.me_tp_fb {background: url(https://pic03.eapple.com.tw/chirdesign/f_fb.svg) no-repeat;}
    .box_link a.me_tp_ig {background: url(https://pic03.eapple.com.tw/chirdesign/f_ig.svg) no-repeat;}
    .box_link a.me_tp_call{display: none;}
    .box_link a.me_tp_mail{display: none;}
    .box_link a.me_tp_redbook{display: none;}
    .box_link a:hover {transform: translateY(-5px);transition: all .5s}
    .box_link a i{display: none;}
    .copy {border-top: none;text-align: right;max-width: 1400px;margin: 0 auto;padding: 50px 0;color: #258684;
        font-size: 10px;width: 90%;}
    .copy a {
        color: #258684;
    }


@media screen and (max-width: 1024px){
	.footer_info {flex-direction: column;align-items: center;grid-gap: 30px;}
	.footer_info ul{width: 100%;}
	.footer_menu {width: 100%;text-align: center;margin: 20px 0 0;}
	.footer_menu a {display: inline-block;margin: 0 10px;}
	.box_link{position: relative;}
	.copy{text-align: center;}
}
@media screen and (max-width: 768px){
	.footer_info {grid-template-columns: 1fr;padding: 0;}
	.footer_info li+li{margin-top: 0;}
	.box_link {left: 0;}	

}
@media screen and (max-width: 600px){
	.footer .center {max-width: 350px;}
	.footer_info ul {flex-direction: column;}
	.footer_info li+li{margin-top: 50px;}
	.footer_logo > a{width: 100px;height: 100px;}
	.footer_menu {display: grid;grid-template-columns: 1fr 1fr 1fr;}
	.footer_menu a {text-align: center;font-size: 12px;}
	.copy{text-align: center;}
	.total_view {display: inline;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相本分類全版面 ( 限制最寬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: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




