@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
.stellarnav>ul>li:nth-of-type(-n+2),
.footer_menu a:nth-of-type(-n+3) {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定*/

.navigation {
    display: flex;
    align-items: center;
}

.nav-header {
    max-width: 160px;
    padding: 12px 0;
}

.nav-brand,
.nav-brand img {
    display: block;
}

.header_area,
.header_area.sticky {
    background: #FFF;
    box-shadow: 0 0 20px rgba(0 0 0 / 6%);
    padding: 0;
}

.main_header_area .container {
    max-width: 1600px;
    padding: 0 2%;
}

.stellarnav ul {
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.stellarnav>ul>li:nth-of-type(n+4):after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: -3px;
    top: calc(50% + 1px);
    background: #ddd;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
    min-width: 90px;
    padding: 0 2px;
    color: #444;
    letter-spacing: .5px;
    display: block;
    font-weight: 500;
    margin: 0 4px;
    text-transform: none;
    transition: all ease 0.3s;
}

.stellarnav>ul>li>a b {
    font-weight: bold;
}

.stellarnav>ul>li:nth-of-type(3)>a {
    margin-right: -12px;
}

.stellarnav>ul>li>a:hover,
.stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
    color: #0e46aa;
}

.me_tp_features {
    display: none;
}

/*次分類*/
.stellarnav ul ul ul {
    left: 100%;
    right: auto;
}

.stellarnav li.drop-left ul ul {
    left: auto;
    right: 100%;
}

.stellarnav>ul>li.drop-left>ul,
.stellarnav>ul>li>ul {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.stellarnav li li.has-sub>a,
.stellarnav li li>a,
.stellarnav ul ul ul>li a {
    padding: 8px 12px;
    font-size: 15px;
}

.stellarnav li li a,
.stellarnav li li.has-sub>a,
.stellarnav.mobile li li.has-sub a {
    color: #666;
    transition: all 0.3s;
}

.stellarnav>ul>li>ul>li>a,
.stellarnav li li.has-sub>a,
.stellarnav ul ul ul>li a {
    border-left: 0px solid #0e46aa;
    transition: 100ms;
}

.stellarnav>ul>li>ul>li:hover>a,
.stellarnav ul ul ul>li:hover a {
    border-left: 4px solid #0e46aa;
}

.stellarnav li li a:hover,
.stellarnav li li.has-sub:hover>a,
.stellarnav.mobile li li.has-sub a:hover {
    color: #0e46aa;
}


/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}

.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: #efefef;
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}

.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    right: 5px;
}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}

/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.product_menu_list {
    position: relative;
    width: 240px;
    letter-spacing: 1px;
    /* border-right: 1px solid #ccc;*/
    min-height: 30vw;
}

.products-list,
.product-wrapper {
    width: calc(100% - 290px);
}

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: 12px 15px;
    margin-left: 15px;
}

.product-layer-two li.active li a {
    color: #444;
    font-weight: 500;
}

.product-layer-two li li:hover>a,
.product-layer-two li li.active:hover a {
    background: #fff;
    color: #000;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    background: #FFCB00;
    border: 3px solid #FFCB00;
    margin-bottom: 20px;
}

.product-layer-two>li ul>li+li {
    margin-top: -2px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: transparent;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #FFCB00;
}

.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;
}

.sidebarBtn {
    border: none;
    padding: 0 0 0 20px;
    width: 49%;
}

.product_info_page .path {
    padding: 0 0 20px;
}

.proImgSwiper li {
    align-items: flex-start;
}

.product-layer-two li li.active a,
.product-layer-two li li a {
    background: none;
    font-weight: 500;
    color: #444;
}

.pd_tabTitle li::after {
    content: none;
}

.pd_tabTitle li {
    border: none;
}

.pd_tabTitle li.activeTab a {
    background: #0e46aa;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0;
    text-align: left;
    padding: 11px 20px;
    line-height: 1;
}

.pd_tabInner_contain {
    padding-top: 0;
}

#prod_thumbSwiper {
    display: none;
}

.product_pic {
    padding-left: 0;
}

.product_main {
    padding: 0;
    width: 50%;
}

.mobile_product_name {
    display: block;
    background: #0e46aa;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0;
    text-align: left;
    padding: 11px 20px;
    line-height: 1;
    position: absolute;
    width: 100%;
    top: 0;
}

.product-wrapper {
    padding-top: 64px;
}

.prod_tabs {
    margin-top: 20px;
}

.proImgSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@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;
        gap: 20px;
    }

    .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 .item a {
    padding-bottom: 0;
}

.products-list .pic {
    height: auto;
    transition: 0.5s;
}

.products-list .pic img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-layer-two li.active a {
    border: none;
    color: #fff;
}

.product-layer-two>li:hover>a,
.product-layer-two>li:hover>i,
.product-layer-two>li.active>i {
    color: #fff;
}

.product-layer-two>li>i {
    transition: ease .3s;
}

.product-layer-two li a {
    background: transparent;
    color: #000;
    border: none;
    transition: ease .3s;
}

.product-layer-two>li>a {
    font-weight: bold;
}

.products-list .more {
    position: static;
    transform: none;
    border-color: #0e46aa;
    color: #0e46aa;
    border-radius: 34px;
}

.products-list .item a:hover .more {
    background: #0e46aa;
}

.products-list .price {
    display: none;
}

.products-list .name {
    margin: 10px 0 12px;
}

.products-list .item a:hover .pic {
    border-radius: 60px;
    overflow: hidden;
}

.prod_related h6 span:before,
.news_related h6 span:before {
    color: #444;
}

.lastPage {
    background: #0e46aa;
}

.prod_related,
.news_related {
    background: #f1f6fa;
    padding: 60px 0;
}

.related_list {
    max-width: 1420px;
    width: 90%;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



#content_main {
    margin: 0;
}

#content_main,
#content {
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.main_part {
    width: 90%;
    max-width: 1420px;
    padding: 50px 0;
}

.blog_page .main_part,
.blog_in_page .main_part {
    max-width: 1200px;
}

.promotions_page .edit {
    color: #444;
    font-size: 16px;
    line-height: 1.65;
}

.show_content {
    padding: 0;
}

.path {
    padding: 0 0 20px;
}

/*預設解除背景輪播*/
.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 {
    width: 100%;
    height: auto;
    min-height: 150px;
    aspect-ratio: 5 / 1;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(https://pic03.eapple.com.tw/habitz/banner.jpg) center / cover no-repeat;
    filter: grayscale(1) contrast(0.4) brightness(0.6);
}

.banF[data-banner="product_list_1358"],
.banF[data-banner="product_list_1359"],
.banF[data-banner="product_list_1360"] {
    aspect-ratio: 2 / 1;
}

.banF[data-banner="product_list_1358"]:before {
    background: url(https://pic03.eapple.com.tw/habitz/banner2.jpg) center / cover no-repeat;
    filter: none;
}

.banF[data-banner="product_list_1359"]:before {
    background: url(https://pic03.eapple.com.tw/habitz/banner1.jpg) center / cover no-repeat;
    filter: none;
}

.banF[data-banner="product_list_1360"]:before {
    background: url(https://pic03.eapple.com.tw/habitz/banner3.jpg) center / cover no-repeat;
    filter: none;
}

.banF[data-banner="product_list_1358"]>h5,
.banF[data-banner="product_list_1359"]>h5,
.banF[data-banner="product_list_1360"]>h5 {
    display: none;
}

.banner h5 {
    font-size: 42px;
    letter-spacing: 4px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner h5:after {
    content: '';
    font-family: 'Paytone One', serif;
    font-size: 28px;
    display: block;
    letter-spacing: 1px;
}

.banA h5:after {
    content: 'Introduction';
}

.banblog h5:after {
    content: 'Info';
}

.promotions_page .banA h5:after {
    content: 'Latest News';
}

.banC h5:before {
    content: '聯繫資料';
}

.banC h5:after {
    content: 'Contact';
}

.banF h5:after {
    content: 'Product';
}

.banE h5:after {
    content: 'Album';
}

.services_page .banner h5:after {
    content: 'Exclusive';
}

.other_select_page .promotion_title,
.other_select_page .other_promotion,
.other_select_page ul.page {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章*/
.blog_box {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

h4.blog_category_title {
    display: none;
}

.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 40px;
}

.blog_le,
.blog_ri {
    margin-bottom: 1vw;
}

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

.subbox_item {
    width: 100%;
    margin: 0;
    border-bottom: none;
}

.subbox_item a {
    display: flex;
    flex-flow: row wrap;
    grid-gap: 0;
}

.blog_list_le {
    width: 290px;
    padding: 0;
    height: auto;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 1.2s ease;
}

.subbox_item a:hover .blog_list_le img {
    transform: scale(1.1);
    transition: all .6s ease;
}

.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    padding: 24px 0 24px 42px;
    width: calc(100% - 305px);
    position: relative;
}

.blog_list_ri h5 {
    font-weight: bold;
    color: #0e46aa;
    -webkit-line-clamp: 2;
    font-size: 22px;
}

.blog_list_ri em {
    display: none;
}

.blog_list_ri p {
    line-height: 175%;
    margin: 16px 0;
    text-align: justify;
    color: #999;
}

.blog_list_ri:after {
    content: '＋ 繼續閱讀';
    letter-spacing: .5px;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #0e46aa !important;
}

.submenu {
    background: #f1f6fa;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #3071bf;
}

/*內頁*/
.blog_in_page h4.blog_category_title {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    padding: 0 0 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 24px;
    color: #3071bf;
    font-weight: 600;
}

.blog_in_page .blog_ri {
    padding-top: 36px;
}

.blog_box_edit * {
    line-height: 165%;
}

.blog_box_edit {
    font-size: 16px;
    color: #444;
}

.blog_back {
    width: 100%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    transition: all .3s ease;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: transparent;
    color: #0e46aa;
    border: 1px solid #0e46aa;
}

.blog_back a:hover {
    background: #0e46aa !important;
    color: #fff;
}

.news_related_list {
    width: 90%;
}

.news_related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 10px;
}

/*首頁文章*/
.module_i_news {
    background: #f1f6fa;
    padding: 80px 5% 100px;
}

.module_i_news section {
    max-width: 1330px;
}

.module_i_news_list {
    padding: 0;
}

.module_i_news .title_i_box:after {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 25 / 7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(https://pic03.eapple.com.tw/habitz/index_ti.svg) center / cover no-repeat;
}

.module_i_news .title_i_box {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 25 / 7;
    margin: 0 auto 40px;
}

.module_i_news .title_i_box h6,
.module_i_news .title_i_box h4 {
    display: none;
}

.module_i_news ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.module_i_news li {
    width: 100%;
    margin: 0;
    border-bottom: none;
    transition: .5s ease;
}

.module_i_news li a {
    display: flex;
    flex-flow: column wrap;
    gap: 0;
    position: relative;
}

.i_blog_le {
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.i_blog_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 1s ease;
}

.module_i_news li a:hover .i_blog_le img {
    transform: scale(1.1);
}

.i_blog_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 15px 0;
    position: relative;
    justify-content: center;
}

.i_blog_ri h5 {
    font-weight: 500;
    color: #072d65;
    font-size: 24px;
}

.i_blog_ri em {
    display: none;
}

.i_blog_ri p {
    line-height: 155%;
    padding: 10px 0 0;
    margin: 8px 0 22px;
    -webkit-line-clamp: 2;
    text-align: justify;
    font-size: 16px;
    border-top: 1px solid #bbb;
    height: auto;
}

.module_i_news li a:before,
.module_i_news li a:after {
    content: none;
}

.module_i_news li a:after {
    content: '▶查看全文';
    color: #3172c0;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    top: auto;
    background: none;
    border: none;
    left: 0;
    opacity: 1;
}

.i_blog_b a.animated-arrow {
    margin-top: 40px;
    background: #3172c0;
    box-shadow: 8px 8px 0 #184296;
    border-radius: 60px;
    height: 100%;
    line-height: 60px;
    width: 220px;
    font-size: 20px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*表單*/
.contact_page #content {
    background: #f1f6fa;
}

.contact_content .information_left {
    display: none;
}

.contact_content .information_right {
    width: 100%;
    padding: 0;
}

.contact_content {
    padding: 80px 0;
    max-width: 1420px;
    width: 90%;
}

.blank_letter {
    font-family: 'Noto sans tc';
    padding-top: 0;
    font-size: 30px;
}

.contact_form {
    color: #444;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 0;
}

.contact_form li:not(:nth-last-of-type(3)) {
    width: calc(50% - 10px);
}

.contact_form li.last {
    margin-top: auto;
    margin-bottom: 0;
    font-weight: 500;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: white;
    padding: 8px;
    border: none;
    color: #444;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.contact_form li {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0;
    border-bottom: none;
    grid-gap: 8px;
}

.contact_form li .form__label {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    text-align: left;
    max-width: 100%;
    letter-spacing: .5px;
    font-weight: normal;
    padding: 0;
    background: none;
}

.star {
    order: 1;
    height: 18px;
}

.contact_form li .form__insert {
    line-height: 165%;
}

.contact_form li.last blockquote {
    color: white;
    border-color: #3071bf;
    background: #3071bf;
}

.contact_form li.last cite {
    background: #f7d44b;
    border-color: #f7d44b;
    color: #444;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相簿*/
.show-list .item:hover .show_name {
    color: #0e46aa;
}

.show-list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}

.show-list .show_name {
    margin: 10px 0;
    -webkit-line-clamp: 1;
    height: auto;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}

/*次*/
.subalbum-menu {
    margin: 0;
    padding: 0;
}

.subalbum-menu h2 {
    color: #444;
}

.other_album_choice li {
    background: #0e46aa;
}

.album_fixed_title {
    color: #444;
}

.pic-list .item h6 {
    color: #444;
    padding: 6px;
}

.pic-list {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 24px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer_info li p.tel {
    order: 1;
}

.footer {
    padding: 40px 0 0;
    background: #FFF;
    box-shadow: 0 0 20px rgba(0 0 0 / 6%);
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.footer_info li p.add2:before {
    content: none;
}

.footer_info li p.add2 {
    position: absolute;
    left: 0;
    top: 0;
    max-width: calc(100% - 590px);
    text-align: justify;
}

.footer_info li p {
    letter-spacing: 0;
}

.box_link {
    display: none;
}

.footer_info li:nth-child(1) {
    position: relative;
    padding: 0;
    padding-left: calc(100% - 500px);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 20px;
}

.footer_info {
    grid-template-columns: 200px 1fr;
    padding: 0;
}

.footer .center {
    max-width: 1600px;
    padding: 0 2%;
    position: static;
}

.footer_info ul {
    letter-spacing: 0;
}

.footer_info li:nth-child(2) {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    padding: 0 2% 32px;
    width: 100%;
    max-width: 1600px;
    clip-path: inset(0 50% 0 0);
}

.copy {
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
    text-align: right;
    max-width: 1600px;
    margin: 30px auto 0;
    padding: 20px 2% 40px;
}

.footer_logo {
    max-width: 160px;
}

.copy a:hover {
    color: #1378bb;
}

.footer_menu a {
    background: none;
    border: none;
    padding-bottom: 7px;
}

.footer_menu a:hover {
    background: #fad74c;
    color: #222;
}



@media screen and (max-width: 1690px) {
    .footer .center {
        padding: 0 6%;
    }

    .copy,
    .footer_info li:nth-child(2) {
        padding-left: 6%;
        padding-right: 6%;
    }

    .copy {
        margin-top: 54px;
    }
}


@media screen and (max-width: 1463px) {
    .copy {
        margin-top: 78px;
    }
}

@media screen and (max-width: 1365px) {
    .footer_info li:nth-child(1) {
        position: static;
        padding-left: 0;
        display: flex;
        flex-flow: column wrap;
    }

    .copy {
        margin-top: 30px;
    }

    .footer_info li p.add2 {
        position: static;
        max-width: fit-content;
        order: -1;
        margin-bottom: 15px;
    }

    .swiper-pagination {
        display: none;
    }

    .show-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .pic-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .i_blog_ri p {
        font-size: 14px;
    }

    .i_blog_ri h5 {
        font-size: 20px;
    }

    .main_header_area .container {
        padding: 0;
    }

    .i_blog_ri {
        padding: 10px 0 20px;
    }

    .module_i_news li a:after {
        bottom: 8px;
    }

    .module_i_news .title_i_box:after {
        max-width: 250px;
        aspect-ratio: 25 / 14;
        background: url(https://pic03.eapple.com.tw/habitz/index_timo.svg) center / cover no-repeat;
    }

    .i_blog_b a.animated-arrow {
        line-height: 47px;
        width: 160px;
        height: 50px;
        font-size: 18px;
    }

    .banner:before {
        background-position-x: 76%;
    }

    .banner h5 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .banner h5:after {
        font-size: 20px;
    }
}

@media screen and (max-width: 980px) {
    .footer_info {
        grid-template-columns: 1fr;
    }

    .copy {
        margin-top: 15px;
        padding: 60px 6% 40px;
        text-align: left;
    }

    .footer_info li:nth-child(2) {
        bottom: 35px;
        clip-path: none;
        margin-left: -7px;
    }

    .subbox_item a {
        flex-direction: column;
    }

    .blog_list_ri,
    .blog_list_le {
        width: 100%;
    }

    .blog_list_ri {
        padding: 15px 0 36px;
    }

    .blog_list_ri p {
        margin: 10px 0;
    }

    .blog_list_ri:after {
        bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .footer.with_shopping_mode {
        padding-bottom: 40px;
    }

    #to_top {
        bottom: 74px;
    }

    #bottom_menu li:not(:first-of-type) {
        display: none;
    }

    .nav-header {
        max-width: 110px;
    }

    .footer_logo {
        max-width: 140px;
    }

    .footer_info {
        grid-gap: 15px;
    }

    .footer_info li:nth-child(2) {
        bottom: 95px;
    }

    .stellarnav .menu-toggle {
        padding: 10px;
    }

    .module_i_news {
        padding: 60px 20px 80px;
    }

    .promotion_title h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .main_part {
        padding: 40px 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after,
    .stellarnav a.dd-toggle .icon-plus:before {
        border-color: #444;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a {
        height: auto;
        line-height: 150%;
        margin: 0 8px;
        padding: 10px 44px 10px 10px;
        min-width: auto;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #3172c0;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        border-right: none;
        box-shadow: 0 0 10px rgba(0 0 0 / 12%);
    }

    .stellarnav.mobile li.open {
        background: #E3F0F8;
    }

    .stellarnav.mobile li.open li.open {
        background: #F1F6FA;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close:before {
        border-color: #fff;
    }

    .stellarnav a {
        color: #fff;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        padding: 12px 6px 0;
    }

    .stellarnav.mobile li li a.dd-toggle {
        margin-right: 5px;
    }

    .stellarnav.mobile li.open li.open a.dd-toggle {
        padding: 12px 0 0 0;
    }

    .stellarnav.mobile li li.has-sub a:not(.dd-toggle),
    .stellarnav li li>a:not(.dd-toggle) {
        padding: 10px 43px 10px 16px;
    }

    .stellarnav.mobile li li.has-sub li a:not(.dd-toggle),
    .stellarnav li li li>a:not(.dd-toggle) {
        padding-left: 19px;
    }

    .stellarnav>ul>li.open>a,
    .stellarnav>ul>li.has-sub.open>a:not(.dd-toggle) {
        color: #0e46aa;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .pic-list {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
    }

    .show-list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    .show-list .show_name {
        margin: 6px 0;
    }

    .product_menu_list>h5 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .product-layer-two>li {
        margin-bottom: 5px;
    }

    .product_menu_list {
        margin-bottom: 10px;
    }

    .blog_le {
        margin-bottom: 30px;
    }

    .blog_ri {
        padding: 0;
    }

    .blog_list_ri p {
        font-size: 14px;
    }

    .blog_list_ri h5 {
        font-size: 20px;
    }

    .blog_in_page .blog_ri {
        padding-top: 0;
    }

    .lastPage {
        margin: 40px auto 0;
    }

    .contact_form li:not(:nth-last-of-type(3)) {
        width: 100%;
    }

    .contact_form li.last {
        justify-content: flex-start;
    }

    .product_info_page .product_menu_list {
        display: none;
    }

    .sidebarBtn,
    .product_main {
        padding: 0;
        width: 100%;
    }

    .module_i_news ul {
        grid-template-columns: 1fr;
    }

    .contact_form li.last {
        grid-gap: 10px
    }

    .contact_form li.last blockquote,
    .contact_form li.last cite {
        width: 100%;
        max-width: calc(50% - 5px);
    }
}

@media screen and (max-width: 505px) {
    .copy {
        padding-top: 100px;
    }

    .show-list {
        grid-template-columns: 1fr;
    }

    .pic-list {
        grid-template-columns: repeat(2, 1fr);
    }
}