@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", "Noto Sans TC", serif;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {
    background-color: #70AF57;
    color: #fff;
}

::selection {
    background-color: #70AF57;
    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #F4F6F5;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #F4F6F5;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #F4F6F5;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #70AF57;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}


#page {
    background: #ffffff;
}

#content_main {
    background-color: #ffffff;
    min-height: 200vh;
    margin-top: 0;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 大圖 */

.bannerindex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/chengciang/bg-03.svg );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    animation: circle-scale 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}


@keyframes circle-scale {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.bannerindex .swiper-banner .swiper-wrapper::after {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chengciang/bg-02.png);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: banner-bg 2.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 2.5s;
}

.bannerindex .swiper-banner .swiper-wrapper::before{
    content: "";
    background-image: url(https://pic03.eapple.com.tw/chengciang/bg-01.png);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 2s;
}


@keyframes banner-bg {
    0% {
        height: 95%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

@keyframes banner-bg-2 {
    0% {
        filter: brightness(0.1);
        opacity: 0;
    }

    100% {
        filter: brightness(1);
        opacity: 1;
    }
}


@media (max-width: 768px) {
.bannerindex .swiper-banner .swiper-wrapper::before,
.bannerindex .swiper-banner .swiper-wrapper::after {
    background-size: 150%;
}

.bannerindex .swiper-wrapper .swiper-slide::before {
    background-size: 130%;
}
}

@media (max-width: 500px) {
.bannerindex .swiper-banner .swiper-wrapper::before,
.bannerindex .swiper-banner .swiper-wrapper::after {
    background-size: 180%;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*上方選單解除滑動固定
.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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 80%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 80%;
    transition: all 0.3s;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}


.nav-header {
    position: absolute;
    max-width: 200px;
    top: 70px;
    left: 0;
    opacity: 0;
    transform: translate(0%, -50%);
    transition: all 0.5s;
    z-index: 98999999;
}

.pageIndex .nav-header {
    top: 4%;
    left: 0%;
    opacity: 0;
    transform: scale(1, 0);
}


.sticky .nav-header {
    top: 4%;
    left: 0;
    opacity: 1;
    transform: scale(1, 1);
    transition: all 0.5s;
    transition-delay: 1s;
}

.sticky .nav-header::before {
    top: 50%;
    opacity: 1;
    transition: all 0.3s;
    transition-delay: 0.5s;
}

.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    background-color: #7f2c29;
    transition: all 0.3s;
    transition-delay: none;
}

.stellarnav ul {
    margin: 0;
    padding: 0;
}


@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: transparent;
}

.header_area .main_header_area::before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: #ffffffd9;
    position: absolute;
    top: 0;
    right: 0;
    backdrop-filter: blur(5px);
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1.55);
}

.header_area.sticky .main_header_area::before {
    width: 100%;
    height: 100%;
    transition: all 1.5s cubic-bezier(0.68, 0.1, 0.265, 1);
}

.stellarnav li.has-sub>a:after {
    display: none;
}


.stellarnav {
    transform: scale(1, 0);
    opacity: 0;
    transition: all 0.5s;
}

.sticky .stellarnav {
    transform: scale(1, 1);
    opacity: 1;
    transition: all 0.5s;
    transition-delay: 1s;
}


.stellarnav>ul>li>a {
    padding: 0px 15px;
    color: #f3f3f3;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.5s;
}


.pageIndex .stellarnav>ul>li>a {
    color: #fff;
}


.sticky .stellarnav>ul>li>a {
    color: #263238;
    font-weight: 600;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    font-weight: 500;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    color: #fff;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover {
    transition: all 0.5s;
}


.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 15px 0;
    opacity: 1;
    transition: all 0.3s;
    justify-content: flex-end;
}

.header_area.sticky .navigation {
    padding: 15px 0;
    opacity: 1;
    transition: all 0.5s;
}


@media screen and(max-width: 1440px) {
    .header_area .main_header_area .container {
        max-width: 90%;
        transition: all 0.3s;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
        transition: all 0.3s;
    }

}

@media screen and (max-width: 1024px) {

    .header_area .navigation {
        padding: 0px 0;
    }

    .header_area.sticky .navigation {
        padding: 0px 0;
    }


}

@media screen and (max-width: 768px) {
    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }
}


/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #2B3047;

    color: #fff;
}


.stellarnav ul ul {
    overflow: hidden;
    background: #fffffff0;
}


.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}


.stellarnav li li a {
    padding: 10px 15px;
    display: block;
    color: #70af57;
    background-color: transparent;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    color: #fff;
    background-color: #70af57;
    transition: all 0.3s;
}

.stellarnav>ul>li>a::before {
    background: #70af5724;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(0, 1) translate(-50%, -50%);
    border-radius: 10px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s;
}

.stellarnav>ul>li>a:hover::before {
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
    transition: all 0.5s;
}

.stellarnav li li {
    border: 1px #eeeeee3b solid;
}

.me_tp_features {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100%;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    width: 200px;
    transition: all 0.5s;
}

.header_area .nav-brand img {
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    transition: all 0.3s;
}


@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
        transition: all 0.3s;
    }

}

@media screen and (max-width: 1024px) {

    .nav-header {
        position: relative;
    }

}

@media screen and (max-width: 768px) {
    .stellarnav>ul>li>a::before {
        display: none;
    }

    .header_area .navigation {
        display: block;
    }

    .nav-header {
        left: 50%;
        transform: scale(1, 0) translate(-50%, 0);
        z-index: 0;
    }

    .sticky .nav-header {
        top: -10%;
        left: 50%;
        opacity: 1;
        transform: scale(1, 1) translate(-50%, 0);
        transition: all 0.5s;
        transition-delay: 1s;
    }

    .header_area .main_header_area::before {
        backdrop-filter: none;
    }

    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav {
        transform: none;
    }

    .sticky .stellarnav {
        transform: none;
    }

    .stellarnav.mobile {
        top: 30px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #263238;
    }

    .stellarnav .menu-toggle:after {
        color: #263238;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: rgb(112 175 87 / 70%);
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        padding: 25px 43px 25px 10px;
        color: #263238;
        align-items: center;
    }

    .nav-brand {
        display: inline-block;
        width: 220px;
    }

    .header_area .nav-brand {
        width: 150px;
    }


    .header_area.sticky .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .stellarnav>ul {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: rgb(112 175 87 / 70%);
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 43px 25px 10px;
        color: #263238;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0;
        position: absolute;
        top: 20px;
    }

    .stellarnav.mobile.left>ul {
        left: 0;
        padding: 0;
        border: 0;
        background: #ffffffd9;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav li li:hover {
        background: inherit;
        border-radius: 0;
        color: inherit;
        transform: none;
        box-shadow: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .stellarnav li li:hover>a {
        color: #fff;
        transition: all 0.3s;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 43px 15px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        color: #263238;
    }

    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after { border-bottom: solid 3px #263238; }

    .stellarnav li li a {
        padding: 15px 15px;
        color: #666;
    }

    .stellarnav>ul>li>a b:nth-of-type(2) {
        color: #ccc;
        font-size: 12px;
        margin-left: 10px;
    }

    .stellarnav.mobile ul {
        background-color: transparent;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:#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-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:#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%;}
.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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿管理*/
/*首頁*/
.i_album_list li a p { background: rgb(112 175 87 / 80%) ; padding: 20px 10px;     color: #fff;}

/*主分類*/
.subalbum-menu h2 {font-size: 18px;color: #333;letter-spacing: .2rem;}
.show-list .show_pic {aspect-ratio: 4 / 3;}
.show-list .show_pic img {transform: scale(1);transition: all .5s;}
.show-list .show_name{color: #333;letter-spacing: .2rem;text-align: center;}
.show-list .item{margin-bottom: 30px;}
.show-list .item .overlay {-webkit-transform: scale(1);transform: scale(1);}
.show-list .item:hover .show_name {color: #70af57;}
.show-list .item:hover .show_pic img {transform: scale(1.05);}
.other_subalbum li a p {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);color: transparent;
transition: all .5s;}
.other_subalbum li:hover a p{color: #fff;} 
.other_album_choice li {background: #70af57;padding: 5px 20px;border-radius: 0;font-size: 13px;}
@media screen and (max-width: 768px){
/*次分類*/
.subalbum-menu{margin: 0;}
.other_subalbum li a p {color: #fff;font-size: 14px;width: 100%;text-align: center;}
}


/*首頁相簿功能*/
.module_i_album { padding:0;}
.module_i_album section {  width: 100%;  max-width: 2000px;  background: #fff;  padding: 0px 8% 150px;  background-image: url(https://pic03.eapple.com.tw/chengciang/works_bg_01.png);  
background-size: cover; background-position: center top;}

.module_i_album .title_i_box h4 {
    display: none;
}
.module_i_album .i_album_b {  margin-top: 0;}

/*查看更多按鈕*/
.animated-arrow {background: #41557B; height: 40px; line-height: 40px; width: 180px;}
.animated-arrow:hover { background: #70AF57;}
.animated-arrow b {display: block;font-weight: 400;}
.animated-arrow b i{display: none;}

@media screen and (max-width: 768px){
.module_i_album .title_i_box h4 {font-size: 35px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer_logo {
    background-image: url(https://pic03.eapple.com.tw/chengciang/logo2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 180px;
    width: 224px !important;
}
.footer_logo img { width: 100%;     display: none;}
.footer { border-top: 0px; padding: 70px 0 0;  font-size: 14px; background: #263238;}
.footer_menu { width: 100%;  display: grid; grid-template-columns: repeat(3, 1fr);}
.footer_menu a {
	border: none;
	text-align: left;
	color: #F5F7F6;
	font-weight: 500;
	padding: 10px 10px;
	transition: all .3s;
	background: NONE;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color:#70AF57;
}
.footer_menu a:hover { background: transparent;  color: #66BB6A; font-weight: bold;}
.footer_menu a:nth-child(1) { display: none;}

.footer_info ul { display: flex; justify-content: flex-end;    border-left: 1px solid #70AF57;}
.footer_info {  padding: 0;  display: grid;    grid-template-columns: 360px 1fr;    grid-gap: 20px;}
.footer_info li { padding: 0px;}
.footer_info li:before { font-size: 18px;  text-transform: uppercase; display: block;  color:#70AF57;    font-weight:bold;    margin-bottom: 18px;}
.footer_info li:nth-child(1):before { content: "Contact Info"; }
.footer_info li:nth-child(1) { width: 50%;  display: flex;  flex-flow: column;  margin-left: 70px;  padding: 0 17px;  flex-wrap: wrap;  flex-direction: row;}
.footer_info li p {  color: #fff ; line-height: 160%;  display: inline-block;  width: 100%;  font-size: 14px;}
.footer_info li p a { color: #fff;}
.footer_info li:nth-child(2):before { content: "Sitemap"; }
.footer_info li:nth-child(2) { width:50%;  margin: 0;  border-top: 0px solid #ffffff;  padding-top: 0;}


.footer_info li p.tel:before { content: '服務專線：';}
.footer_info li p.phone:before { content: '服務專線：';}
.footer_info li p.mail:before { content: '服務信箱：';}
.footer_info li p.add:before { content: '店家地址：';}
.footer_info li p.add2:before { content: '服務時間：';}


/*footer_logo*/
.footer_logo {
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s ease-in-out;
    background-position: center;
    margin-right: 0;
    width: auto;
}
.footer_logo img {  width: 80%; }
.copy { text-align: center;  padding: 10px 0;  font-size: 13px;  border-top: 0px;  margin-top: 50px;  background:#70AF57;}
.copy a,.copy p,.total_view{ color: #fff; transition: all 0.5s ease-in-out;}
.copy a:hover { color: #41557B;}
.privacyLinks a+a { border-left: 1px solid #F4F6F5;}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.box_link {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    width: 100%;
    left: 0;
    top: 60%;
    flex-direction: row;
}
.box_link a {display: none;}

.box_link a:hover { background:#7cd685;}

.box_link a.me_tp_line ,.box_link a.me_tp_call ,.box_link a.me_tp_mail { display: none;} 

a.me_tp_mail { display: none;}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (max-width: 1350px) {
.footer .center { max-width: 90%;}
}
@media screen and (max-width: 1200px) {
.footer_info {  grid-template-columns: 200px 1fr;}
.box_link { max-width: 200px;}
.footer_info li:nth-child(1) { margin-left: 15px;}
}
@media screen and (max-width: 1024px) {
.footer { padding: 32px 0 0;}
.footer .center { max-width: 100%;}
.footer_info { display: flex; flex-direction: column;}
.footer_logo { width: 100%; margin: 0 auto; text-align: center;}
.box_link { left: 40%; top: 34%; }

/*手機板footer*/
.footer_menu a { width: auto; text-align: center;}
.footer_info { padding: 25px 70px 0;}
.footer_info li p { width: calc(100% / 1);}
.footer_info li:nth-child(1) { width: 100%; text-align: justify; padding: 0;}
.footer_info li:nth-child(2) { width: 100%; text-align: left;}
.footer_info ul { width: calc(100% - 0px); margin: 10% 0 0;  border-left: 0px;}
#bottom_menu li:nth-child(1) { border-right: 1px solid #ddd;}
#bottom_menu li:nth-child(2) { border-right: 1px solid #ddd;}
#bottom_menu li:nth-child(1) {width: 100%!important; border-right: 1px solid #ddd; }
#bottom_menu li:nth-child(2) { display:none !important;}
#bottom_menu li:nth-child(3) { display:none !important;}

}
@media screen and (max-width:768px) {
    .box_link{ left: 35%;}
}
@media screen and (max-width:766px) {
.footer_info ul { width: calc(100% - 0px);  margin: 0 0; display: flex; flex-direction: column; }
.footer_info li:nth-child(1) { width: 100%;  text-align: justify;  padding:0px 0px 25px; margin-left: 0px;}
.footer_info li:nth-child(2) { margin-left: 0px; }

/*Footer/＝＝＝＝＝*/
#to_top { bottom:120px;}
.footer_info { justify-content: center;}
.footer_logo {margin: 0 0; background-position: left;}
.box_link {  left: 10px; top: 0; justify-content: flex-start;}
.swiper-banner { margin: 7px 0 0;}
}
@media screen and (max-width: 600px) {
.copy{ margin-top: 0px;}
.box_link { text-align: center;}
.footer_info { padding: 20px 25px 16px;}
.footer_info li:nth-child(2) { padding: 20px 0;}
}
@media screen and (max-width: 480px) {
.copy { margin-top: 0;}
.footer_info li:nth-child(2){ margin-left: 5px;}
.footer_info li:nth-child(1){ margin-left: 5px;}
.box_link{ left: 4px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    z-index: 1;
    transform: translate(50px, 0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.headerSticky .info_fix {
    opacity: 1;
    transform: translate(0px, 0);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #636363bf;
    width: 50px;
    padding-bottom: 0;
    border: 1px #70af57 solid;
    /* border-radius: 0px 0 0 10px; */
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}

.info_fix_links a:hover {
    background: #70af57;
}

.info_fix>span {
    display: none;
}

.info_fix_links a {
    background: transparent;
}

.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.info_fix_links a span::before {
    background-size: contain;
}



.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}

/* 隱藏 */
.info_fix_links a.info_fix_default.info_fix_mail {
    display: none;
}


/* 順序 */
.info_fix_default.info_fix_tel { order: 1;}
.info_fix_default.info_fix_phone { order: 2;}
.info_fix_default.info_fix_line { order: 3;}
.info_fix_default.info_fix_fb { order: 4;}
/* Google 放最後 */
.info_fix_default.info_fix_google {
    order: 5;
}

@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


#to_top {
    color: #70AF57;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #70AF57;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {
    display: flex;
    width: 100%;
    background-repeat: no-repeat;
    padding: 0;
    height: 390px;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    align-content: center;
    background-color: transparent;
}
.banner h5 {
    width: 40%;
    position: absolute;
    left: 30%;
    height: 30%;
    padding: 0 10px;
    top: 70%;
    display: flex;
    align-items: center;
    background: rgb(255 255 255 / 92%);
    font-weight: lighter;
    color: #70AF57;
    justify-content: center;
    font-weight: 600;
    border-radius: 70px 70px 0 0;
    animation: slide-top 1.8s 0.5s both;
}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {background-image: url(https://pic03.eapple.com.tw/chengciang/banner-1.jpg);}
.banner.banblog {}


/*動畫*/
@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}


@media screen and (max-width: 600px) {
.banner { height: 50vw;}
.banner h5 {
    width: 100%;
    position: absolute;
    left: 0%;
    height: 50%;
    padding: 0 10px;
    top: 65%;
    display: flex;
    align-items: center;
    background: rgb(250 250 250);
    font-weight: lighter;
    color: #70AF57;
    justify-content: center;
    font-weight: 600;
    border-radius: 50px 50px 0 0;
    font-size: 20px;
    padding: 40px;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




