@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #00AE90;  color: #fff;}
::selection{  background-color: #00AE90;  color: #fff;}
:root {
    --MainColor: #1EB3AE;
    --SubColor:#00AE90;
    --SubColor02:#7EC16A;
    --SFont:"Noto Sans TC", sans-serif;
    --SFontEN: "Playfair Display", serif;
    --TitleFont:"Noto Serif TC", serif;
    --FontColor:#222;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
    --pd10:10px; --pd20:20px; --pd30:30px; --pd40:40px; --pd50:50px; --pd80:80px; --pd100:100px; --pd150:150px;
}

.path{display: none;}
body{font-family: var(--SFont); color: var(--FontColor); font-weight: 400;}
.main_part {    padding: var(--pd80) var(--pd40);}

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 10px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #eee; }
/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #23ccc6; }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #23ccc6; }


/*
關於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;}
*/
.pageIndex .header_area {
    position: fixed;
    background: transparent;
    box-shadow: none;
}
.header_area {    padding: 0 10px;}
.header_area, .header_area.sticky {
    background: #ffffff;
    box-shadow: 0 0 32px rgba(9, 53, 94, 0.17);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.main_header_area .container {    max-width: 100%;}
.navigation {    grid-template-columns: 170px 1fr;}

/*上方選單右邊設定 臉書/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}
*/
.tp_links{display: none;}
.me_tp_features {    display: none;}

/*浮動按鈕*/
.info_fix_links {    display: flex !important; align-items: flex-end;}
a.info_fix_default.info_fix_mail, .linksBtn {    display: none;}
.info_fix {    right: 0;    justify-content: flex-end; bottom: 80px; }
.info_fix_links a {    background: #30a39eb0;    border-radius: 0;}
.info_fix_links a:hover {    background: var(--MainColor);}


#to_top {
    width: 50px;
    height: 50px;
    bottom: 38px;
    right: 0;
    left: unset;
    font-weight: 400;
    color: var(--FontColor);
    border-radius: 0;
    border: 2px solid var(--MainColor);
}
#to_top i.top {    height: 15px;}

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/*第一層*/
.stellarnav > ul > li {    line-height: 14px;}
.stellarnav > ul > li > a {
    transition: all 0.3s;
    color: var(--FontColor);
    padding: 11px 18px;
    letter-spacing: .5px;
    height: auto;
    line-height: 45px;
    margin: 0;
}
.stellarnav > ul > li:hover > a{color: #fff;}

.stellarnav > ul > li:hover > a:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: all 0.5s;
}
.stellarnav > ul > li > a:before {
    content: "";
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: -1;
    background-color: var(--MainColor);
    transition: all 0.5s;
}

/*下拉線條箭頭*/
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 43%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.stellarnav li.has-sub>a:hover:after { border-color: transparent #fff #fff transparent;}

/*第二層*/
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 7px 5px;
    transition: all 0.3s;
    padding: 15px 22px;
    border-top: 1px solid #b0d3e4;
    color: var(--FontColor);
    transition: all 0.5s;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: #fff;
    padding-left: 14px;
    background: var(--MainColor);
}

/*下拉第二層箭頭*/
.stellarnav li li.has-sub > a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--MainCOlor) var(--MainCOlor) transparent;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

/* 商品下拉超過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個--結束 */




/*footer*/
.footer {
    /* background: var(--SubColor02); */
    padding-top: 50px;
    color: #fff;
    background: var(--SubColor);
    background-image: radial-gradient(transparent 1px, #1eb3af69 1px);
    background-size: 4px 4px;
}
.footer_logo {    display: none;}
.box_link {    display: none;}
.footer_info {    grid-template-columns: 1fr; padding-right: 0;}
.footer_info ul {
    display: flex;
    justify-content: space-between;
}
.footer_info li:nth-child(2) {
    width: 100%;
    max-width: 300px;
}
.footer_info li p, .footer_info li p a {
    color: #fff;
    font-weight: bold;
}
.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
}
.footer_menu a {
    /* background: transparent; */
    border: none;
    background: linear-gradient(#2fe3de 0 100%) left / 0 no-repeat;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    transition: background-size 0.45s 0.04s;
    position: relative;
    padding: 2px 10px;
}
.footer_menu a:hover {
    background: transparent;
    color: #fff;
    opacity: .5;
    background-size: 100%;
}
.footer_menu a:first-child {    display: none;}
.footer_menu a:before {
    position: absolute;
    content: "";
    top: 0;
    left: -.5rem;
    width: 0.25rem;
    height: 100%;
    background: #2fe3de;
    transition: 0.6s;
}
.footer_menu a:hover:before {
    left: calc(50% + 1rem);
    opacity: 1;
}
.footer_menu a:after {
    position: absolute;
    content: attr(data-text);
    z-index: -1;
    color: #fff;
}
.copy {
    background: #fff;
    border-top: 1px solid var(--SubColor);
    padding: 18px;
    font-size: 12px;
}

/*聯絡我們*/
.contact_form li.last cite {    background: #d3af79;}


/*按鈕*/
.animated-arrow {
    background: transparent;
    border-radius: 25px;
    border: 2px solid #00ae9000;
}
.animated-arrow:hover {
    background: #ffffff;
    color: var(--FontColor);
    border: 2px solid var(--SubColor);
}
.animated-arrow:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #1EB3AE 0%, #14a19c 43%);
    transition: all .2s ease-in;
}
.animated-arrow:hover:after {    opacity: 1;}

/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {
    width: 100%;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}



/*大圖*/
.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; position: absolute;  z-index: 999; pointer-events: none;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:before {
    background-image: url(https://pic03.eapple.com.tw/maclinic/01cover-1ban2.png);
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
    top: 0;
    right: -4%;
    width: 55vw;
    height: 50vw;
    transform-style: preserve-3d;
    animation: rot 22s ease-in-out infinite,  light 1s ease-in-out infinite alternate;
    background-position: center;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/maclinic/01cover-1ban.png) no-repeat;
    display: block;
    right: 0;
    animation: hand 1s ease-in-out infinite alternate;
    top: 0;
    background-position: center;
    background-size: cover;
}

/*大圖2*/
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide::before {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/maclinic/01cover-2ban2.png) no-repeat;
    display: block;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    animation-delay: .3s;
}

.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active::before {  animation:fade-in-right 2.5s cubic-bezier(.39,.575,.565,1.000) both
}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide:after {
    background: url(https://pic03.eapple.com.tw/maclinic/02cover-2ban.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(42% / 1* 1.2);
    z-index: 998;

}
.pageIndex .bannerindex .swiper-slide:nth-child(2).swiper-slide-active:after {       animation: wave-reveal 5s 0.5s both;   }


@keyframes light {
    0%,
    100% {
    filter: drop-shadow(1px 1px 11px #ae00513f);
    }
    50% {
    filter: drop-shadow(3px 3px 6px #ae0000bb);
    }
}

@keyframes hand {
0% {
    transform: translateY(-10px);
}
100% {
    transform: translateY(0px);
}
}

@keyframes rot {
    50% { transform: rotateY(.5turn); opacity: .6;}
    100% { transform: rotateY(1turn);opacity: 1; }
}

@keyframes slowspin {
0% {
    transform: rotateX(-33.5deg) rotateY(45deg);
}
40%, 100% {
    transform: rotateX(-33.5deg) rotateY(315deg);
}
}


@keyframes wave-reveal {
    0% {        clip-path: inset(0 100% 0 0);        opacity: .3;    }
    100% {        clip-path: inset(0 0 0 0);        opacity: 1;    }
}


@keyframes fade-in-right {
    0% {    transform: translateX(-300px);  }
    100% {    transform: translateX(0);    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: url(https://pic03.eapple.com.tw/maclinic/ban.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: var(--pd80) var(--pd40);
    height: 40vh;
}
.banner h5 {
    color: #fff;
    font-family: var(--TitleFont);
    letter-spacing: 11px;
    font-weight: 500;
    font-size: var(--f42);
    text-shadow: 0 0 5px #00AE90, 0 0 16px #00ae90cc, 0 0 32px #00ae9059;
}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {    padding: 60px 20px;}
.news_part .title_i_box h4 {
    color: var(--FontColor);
    font-size: var(--f24);
    font-weight: 500;
}
.news_list ul li p {
    font-size: var(--f18);
    color: var(--FontColor);
}
.news_list ul li p:after {
    color: var(--FontColor);
    text-transform: uppercase;
}
.news_list ul li a:hover p {    color: var(--SubColor02);}
.news_list ul li a:hover {    background: transparent;}

.promotion_title {    display: flex;    align-items: center;}
.promotion_title em, .promotion_title span {
    border: none;
    color: var(--FontColor);
    font-size: var(--f16);
    margin: 0;
}
.promotion_title h2 {
    font-size: var(--f28);
    color: var(--SubColor);
    font-family: var(--TitleFont);
    font-weight: bold;
}


.promotions_page div#content {    position: relative; overflow: hidden;}
.promotions_page div#content::before {
    content: " ";
    position: absolute;
    width: 840px;
    height: 800px;
    background: #99eef1;
    border-radius: 100%;
    right: -12%;
    top: 1%;
    opacity: .15;
    -webkit-animation: 20s linear infinite rotation;
    animation: 20s linear infinite rotation;
    -webkit-animation: 10s ease-in-out infinite alternate fly2;
    animation: 10s ease-in-out infinite alternate fly2;
    filter: blur(.8rem);
    z-index: -1;
}
.promotions_page div#content:after {
    content: " ";
    position: absolute;
    width: 800px;
    height: 800px;
    background: #00ae90a8;
    border-radius: 100%;
    left: -22%;
    bottom: 0%;
    opacity: .3;
    -webkit-animation: 20s linear infinite rotation;
    animation: 20s linear infinite rotation;
    -webkit-animation: 10s ease-in-out infinite alternate fly2;
    animation: 10s ease-in-out infinite alternate fly2;
    z-index: -1;
    filter: blur(5rem);
}
.promotions_page .main_part {    position: relative;}
.promotions_page .main_part:before {
    content: " ";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 19px solid #a3ddf2;
    border-radius: 100%;
    right: 8%;
    top: 1%;
    opacity: .4;
    -webkit-animation: 10s ease-in-out infinite alternate fly1;
    animation: 10s ease-in-out infinite alternate fly1;
    z-index: -1;
}
.promotions_page .main_part:after {
    content: " ";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 19px solid #a3ddf2;
    border-radius: 100%;
    left: -5%;
    top: 5%;
    opacity: .2;
    -webkit-animation: 10s ease-in-out infinite alternate fly2;
    animation: 10s ease-in-out infinite alternate fly2;
    z-index: -1;
}
    @keyframes fly1 {
        0% {
            transform: translate(0%, 0%)
        }

        50% {
            transform: translate(10%, 15%)
        }

        100% {
            transform: translate(-15%, -10%)
        }
    }

    @keyframes fly2 {
        0% {
            transform: translate(0%, 0%)
        }

        50% {
            transform: translate(-10%, -15%)
        }

        100% {
            transform: translate(15%, 10%)
        }
    }

/*
.news_part .title_i_box h4 {
    color: var(--TitleColor);
    font-weight: bold;
}
.news_part .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: var(--SFontEN);
}
.news_list ul li p {
    color: var(--FontColor);
}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;}

/*顏色*/
.products-list .more {    border: 1px solid #ADA17E;    color: #ADA17E;}
.products-list .item a:hover .more {    background: #ADA17E;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {    background-color: #ADA17E;}
.lastPage {    background: #ADA17E;}

/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}
/*相關推薦*/
.prod_related h6 span:before{font-size: 28px;}



@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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*3個一排*/
.blog_subbox {    grid-template-columns: repeat(3, 1fr);} 

.subbox_item a {
    grid-template-columns: 1fr;
    box-shadow: 5px 5px 20px rgb(0 0 0 / 4%);
}
.subbox_item a:after {
    background: #7ec16a70;
    border: 1px solid var(--SubColor02);
}
.subbox_item a:before {
    top: 50%;
    left: 50%;
    width: 150px;
    text-align: center;
    background: var(--SubColor02);
    font-size: 18px;
    color: #fff;
    padding: 10px 5px;
    transform: translate(-50%, -50%);
    height: 45px;
}
.blog_list_ri {    padding: 7px 15px;}
.blog_list_ri h5 {    -webkit-line-clamp: 2;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--SubColor) !important;
}


/*文章內層*/
.articel_mainPic img{display: none;}/*文章內層封面*/
h4.blog_category_title {
    font-size: var(--f28);
    font-weight: 700;
    line-height: 1.2;
    color: var(--SubColor);
    font-family: var(--TitleFont);
}

.blog_back a.article_btn_back {    background: var(--SubColor);}
.blog_back a.article_btn_prev {    background: var(--MainColor);}
.blog_back a.article_btn_next {    background: var(--MainColor);}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    background: #f3f3f3;
    padding:60px 20px;
}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--MainColor);
}
.lastPage {    background: var(--SubColor02);}

/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}*/

/*相本分類全版面 ( 限制最寬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;}
*/

.pic-list .item a img {
    transition: .4s ease;
}
.pic-list .item a:hover img {
    transform: scale(1.05);
    transition: .4s ease;
    filter: grayscale(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 (max-width:1024px) {
    :root {
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
        --pd100:90px; --pd150:130px;
    }
    .pageIndex .header_area {    position: sticky;}
    .blog_subbox {    grid-template-columns: repeat(2, 1fr);}
}


@media screen and (max-width: 768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }

/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode { padding:50px 0; }
#to_top { bottom:60px;}
#bottom_menu {        background: var(--SubColor);    }
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
    display: block;
    float: left;
}
#bottom_menu li a {    color: #fff;}

/*漢堡選單*/
.stellarnav.mobile {        top: 12px;}
.stellarnav .menu-toggle:after {    color: var(--MainColor);}
.stellarnav .menu-toggle span.bars span {    background: var(--MainColor);}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    border: none;
}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--SubColor);
    color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {
    border-bottom: solid 2px #ffffff;
}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 2px #20e9c7;
}

.stellarnav.mobile li.open {    background: var(--MainColor);}

}


@media (max-width:600px) {
    :root {
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
        --pd10:8px; --pd20:15px; --pd30:22px; --pd40:34px; --pd50:38px; --pd80:60px; --pd100:60px; --pd110:90px; --pd120:100px; --pd150:100px;
    }
    .footer_info {    padding: 0 30px;}
    .footer_info ul {    flex-direction: column;}
    .footer_info li:nth-child(2) {    padding-left: 13px;}
    .banner {    height: 28vh;}

    .promotion_title {    align-items: flex-start;    flex-direction: column;}
    .blog_subbox {    grid-template-columns: 1fr;}
}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
        --pd30:20px; --pd40:30px; --pd50:35px; --pd80:40px; --pd100:50px; --pd110:60px; --pd120:70px; --pd150:70px;
    }
}


