@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #ea5c1f;  color: #fff;}
::selection{  background-color: #ea5c1f;  color: #fff;}
:root {
    --MainColor: #F5B498;
    --SubColor:#FCE6DD;
    --logocolor:#ea5c1f;
    --logocolor02:#9f9fa0;
    --SerifFont:"Noto Serif TC", serif;
    --SansFont:"Noto Sans TC", sans-serif;
    --SFontEN: "Philosopher", sans-serif;
    --ENFontRaleway: "Raleway", sans-serif;
    --TitleColor:#EA5C1F;
    --entitle:#F5B498;
    --FontColor:#4B4848;
    --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;
}


body {
    font-family: var(--SansFont);
    font-size: var(--f16);
    font-weight: 400;
    color: var(--FontColor);
}
.main_part {
    max-width: 1600px;
    padding: 80px 20px;
    position: relative;
}

.path {
    position: absolute;
    top: -4.8vw;
    padding: 0;
    left: 90px;
    letter-spacing: .08rem;
    animation: slide-top 1.5s 0.5s both;
    animation-delay: 0.1s;
    display: none;
}

/*頁碼
.page strong, .page a:hover {    background: var(--SubColor);}
.page li.activeN {    color: var(--SubColor);}
*/

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 10px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
  /* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #fdebe2; }

  /* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #F57938; }
  /* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #F05C3E; }


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: fixed;
    background: transparent;
    padding: 0;
    background: #fff;
    box-shadow: 0 0 32px #ea5c1f26;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.header_area.sticky {    background: rgb(255 255 255 / 96%);}
.main_header_area{position: relative;}
.main_header_area:before {
    content: " ";
    /*background: #ffffff;
    width: 350px;*/
    left: 0;
    width: 0;
    position: absolute;
    transition: 0.6s ease;
    border-radius: 0px 0 50px 0;
    height: 2px;
    top: 0;
    background: var(--MainColor);
    z-index: 1;
}
.sticky .main_header_area:before {    width: 100%;}

.main_header_area .container {max-width: 100%; transition: 0.6s ease;}
.sticky .main_header_area .container {
    max-width: 1600px;
    transition: 0.6s ease;
}

.navigation {
    grid-template-columns: 280px 1fr;
    padding: 15px 30px 7px 30px;
    align-items: center;
}
.nav-header {
    max-width: 270px;
    grid-row: 1 / span 1;
}

/*首頁*/
.pageIndex .header_area {
    padding: 0;
    position: fixed;
    /* background: transparent; */
    background: linear-gradient(to bottom, #fff9e7 -9%, 29%, #fff9e700 100%);
    height: auto;
    transition: 0s;
    box-shadow: none;
}
.pageIndex .header_area.sticky {
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 0 32px #ea5c1f26;
}

/*
.pageIndex .main_header_area:after {
    content: " ";
    background: #ffffff;
    width: 0;
    right: 0;
    position: absolute;
    box-shadow: none;
    transition: 0.6s ease;
    border-radius: 0px 0 0 50px;
    height: 80px;
    top: 0;
    width: 60%;
    max-width: 900px;
}

.pageIndex .sticky .main_header_area:after {
    width: 100%;
    max-width: 100%;
}*/


/*上方選單右邊設定 臉書/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}
*/
.me_tp_features {    display: none;}

/*浮動按鈕*/
.linksBtn {    display: none;}

.info_fix_links {    display: flex !important;}
.info_fix_links a {
    border-radius: 0;
    margin-bottom: 0;
    background: #e8832ad9;
}
.info_fix_links a:hover {    background: #e8832a;}
.info_fix_links a:hover i {
    -webkit-animation: heart 1.8s cubic-bezier(0.17, 0.89, 0.32, 1.49);
    animation: heart 1.8s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}


.info_fix_default.info_fix_phone, .info_fix_default.info_fix_mail {    display: none;}
.fa-instagram:before {
    content: "\f3c5";
    font-family: fontAwesome;
}
.info_fix_default.info_fix_tel {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.info_fix_default.info_fix_line  {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
a.info_fix_default.info_fix_line {    order: 4;}
a.info_fix_default.info_fix_fb {    order: 3;}
a.info_fix_default.info_fix_tel {    order: 1;}
a.info_fix_default.info_fix_ig {    order: 2;}/*map*/


/*第一層*/
.stellarnav > ul > li > a {
    transition: all 0.3s;
    padding: 0 17px 0 22px;
    letter-spacing: 1px;
    color: var(--FontColor);
    text-align: center;
}
.stellarnav > ul > li:hover > a{color: var(--MainColor);}
.stellarnav > ul > li > a:before {
    content: " ";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    background: url(https://pic03.eapple.com.tw/dawnclinic/heart.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 2px;
    top: 36%;
    /* transform: translateY(-50%); */
    transform: scale(1);
    transform-style: preserve-3d;
    opacity: .6;
}
.stellarnav > ul > li:hover > a:before{  animation: heart-rot 1.2s ease-in-out infinite;}

@keyframes rot {
    50% { transform: rotateY(.5turn); opacity: .6;}
    100% { transform: rotateY(1turn);opacity: 1; }
}

@keyframes heart-rot {
0% {
    -webkit-transform: scale(1) ; opacity: .6;
    transform: scale(1);opacity: .6;
}
30% {
    -webkit-transform: scale(1.1);
    transform:  scale(1.1);
}
50% {
    -webkit-transform: scale(1) rotateY(.5turn); opacity: 1;
    transform: scale(1) rotateY(.5turn); opacity: 1;
}
75% {
    -webkit-transform:  scale(1.1);
    transform:  scale(1.1);
}
80% {
    -webkit-transform:  scale(1);
    transform:  scale(1);
}
100% {
    -webkit-transform:  scale(1) rotateY(1turn);opacity: .6;
    transform:  scale(1) rotateY(1turn);opacity: .6;
}
}

/*下拉線條箭頭*/
.stellarnav 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(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*第二層*/
.stellarnav ul ul{
        box-shadow: 0px 10px 60px 0px #ea5c1f1c, 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.stellarnav li li {    border: none;    border-bottom: 1px #ea5c1f30 dashed;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {    padding: 12px 10px;    transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {    color: var(--TitleColor);    padding-left: 12px;}

/*下拉第二層箭頭*/
.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 {
    padding: 60px 0 0;
    /* background: #f579381a; */
    /* background: rgb(255 239 219 / 39%); */
    /* background-image: radial-gradient(#ffffff00 1px, #ffefdb 1px); */
    /* background-size: 4px 4px; */
    background: url(https://pic03.eapple.com.tw/dawnclinic/footer.svg) center bottom;
    background-size: cover;
}
.footer .center {    max-width: 1600px;}
.footer_logo {    max-width: 300px;}
.footer_info {
    grid-template-columns: 330px 1fr;
}

.footer_info ul {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    gap: 60px;
}
.footer_info li {    position: relative;}
.footer_info li p, .footer_info li p a {
    color: var(--FontColor);
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
    transition: all .3s;
}

.footer_info li p:hover a {    color: var(--logocolor);}
.footer_info li:nth-child(1):before, .footer_info li:nth-child(2):before, .box_link:before {
    content: " ";
    display: block;
    font-family: var(--ENFontRaleway);
    font-weight: bold;
    font-size: var(--f20);
    color: var(--logocolor);
    line-height: 2;
}

.footer_info li:nth-child(1):before {    content: "CONTACT";}
.footer_info li:nth-child(2):before {    content: "RELATED LINK";}
/*.box_link:before {    content: "Social Media";}*/

.footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
}
.footer_menu a {
    background: transparent;
    border: none;
    padding: 0;
    line-height: 2;
    color: var(--FontColor);
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    position: relative;
}
.footer_menu a:hover {
    background: transparent;
    color: var(--logocolor);
}
.footer_menu a:before {
    content: "♥";
    font-size: 15px;
    padding-right: 5px;
    color: var(--MainColor);
}
.footer_menu a:hover::before {    animation: light 1s ease-in-out infinite alternate; color: var(--logocolor);}
.footer_menu a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 3px;
    left: 0;
    background-color: var(--MainColor);
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    transition: all .3s;
}
.footer_menu a:hover:after {    width: 100%;}

.box_link {
    /* position: relative; */
    top: 82px;
    right: 0px;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: row;
    max-height: 100%;
    order: 1;
    left: 0;
    border: 1px solid #a09f9f5c;
    border-radius: 25px;
    align-items: center;
    background: #ffffff45;
    mix-blend-mode: luminosity;
}
.box_link a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border: none;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    color: var(--logocolor02);
    transition: all .3s;
}
.box_link a:hover {   color: var(--FontColor);}
.copy {
    margin-top: 30px;
    border: none;
    font-size: 11px;
    padding: 20px;
}

@keyframes light {
    0%,
    100% {
    filter: drop-shadow(1px 1px 11px #ae00513f);
    }
    50% {
    filter: drop-shadow(3px 3px 6px #ae0000bb);
    }
}


/*聯絡我們*/
.contact_content form {    display: flex;    justify-content: space-between;     gap: 50px;}
/*.contact_content .information_left {    width: 25%;}
.contact_content .information_right {    width: 70%;}*/
.contact_content .information_left {
    width: 350px;
}
.blank_letter {
    font-family: var(--SansFont);
    color: var(--FontColor);
    font-size: var(--f28);
    font-weight: 500;
}
.list_before.info li {
    font-size: var(--f16);
    letter-spacing: 1px;
    color: var(--FontColor);
    padding-left: 52px;
}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before {
    font-size: var(--f16);
    letter-spacing: 1px;
    color: var(--FontColor);
}

/*聯絡我們-表單*/
.contact_form li {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
    grid-gap: 0;
}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
    color: var(--FontColor);
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    margin-left: 0;
    flex-direction: row-reverse;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: var(--f16);
}
.contact_form li input.noborder {
    border: none;
    background: transparent;
    border-bottom: 1px solid var(--SubColor);
}
.contact_form li textarea.noborder {
    border: none;
    border-bottom: 1px solid var(--SubColor);
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    color: var(--FontColor);
    font-size: var(--f16);
    grid-template-columns: repeat(auto-fill, minmax(15px, 15px) minmax(140px, 1fr));
    gap: 3px 5px;
}


/*聯絡我們按鈕*/
.contact_form li.last blockquote, .contact_form li.last cite {
    margin: 0 10px;
    position: relative;
    transition: .6s all;
    padding: 6px 20px;
    border-radius: 50px;
}
.contact_form li.last cite {
    /* background: var(--MainColor); */
    background: transparent;
    border: 4px solid #00000000;
    background-clip: padding-box;
}
.contact_form li.last blockquote {
    color: var(--FontColor);
    background: #fff;
    border: 4px solid #00000000;
    background-clip: padding-box;
}
.contact_form li.last cite:hover {
    background-color: white;
    color: var(--FontColor);
}
.contact_form li.last cite:after, .contact_form li.last blockquote:after {
    transition: .5s all;
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    content: '';
    z-index: -1;
    border-radius: 50px;
    background-size: 200% 100%;
    background-position: 0% 0;
    background-image: linear-gradient(45deg, rgba(186, 61, 37, 0.45) 0%, #ba3d258f 12.5%, #f57736a8 12.5%, #e1652596 25%, #f5773699 25%, rgb(247 137 23 / 73%) 37.5%, rgb(255 167 11 / 54%) 37.5%, rgb(255 170 22 / 52%) 50%, rgb(255 123 0 / 79%) 50%, rgb(146 90 66 / 47%) 62.5%, rgb(255 201 0 / 45%) 62.5%, rgb(232 185 35 / 45%) 75%, rgb(195 98 55 / 71%) 75%, rgba(195, 98, 55, 0.45) 87.5%, rgb(236 47 0 / 34%) 87.5%, rgb(250 181 0 / 71%) 100%), linear-gradient(135deg, var(--MainColor), #FF954E);
}
.contact_form li.last cite:hover:after {
    background-position: 100% 0;
}

/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;
}

/*大圖1*/
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/dawnclinic/01cover-1b.png) no-repeat;
    display: block;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    animation-delay: .2s;
}
.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active::before {
    animation: fade-in-right 2.5s cubic-bezier(.39,.575,.565,1.000) both;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/dawnclinic/01cover-1a.png) no-repeat;
    display: block;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    animation-delay: .3s;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active::after {
    animation: fade-in-down 3s cubic-bezier(.39,.575,.565,1.000) both;
}

@keyframes heart {
0% {    -webkit-transform: scale(1);    transform: scale(1);}
30% {    -webkit-transform: scale(1.1);    transform:  scale(1.1);}
50% {    -webkit-transform: scale(1);    transform: scale(1);}
75% {    -webkit-transform:  scale(1.1);    transform:  scale(1.1);}
80% {    -webkit-transform:  scale(1);    transform:  scale(1);}
100% {    -webkit-transform:  scale(1);    transform:  scale(1);}
}


@-webkit-keyframes zoomIn {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
    }

    to {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
    }

    to {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
}
}


@keyframes fade-in-right {
    0% {    transform: translateX(-300px);  }
    100% {    transform: translateX(0);    }
}

@keyframes fade-in-down {
    0% {    transform: translateY(-300px);  }
    100% {    transform: translateY(0);    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background-position: center;
    background-size: cover;
    padding: 304px 20px 100px;
    background-repeat: no-repeat;
    overflow: hidden;
    background-image: none;
    position: relative;
    background: repeat center center #ffeee6;
    justify-content: flex-start;
}

.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/dawnclinic/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    animation-name: oxxo;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
}
@keyframes oxxo {
    0% { transform: scale(1.1); }
    100% { transform: scale(1);}
}

.banner.banC::before {    background-image: url(https://pic03.eapple.com.tw/dawnclinic/ban-c.jpg);} /*聯絡我們*/
body.blog_page.article_b .banner.banblog:before {    background-image: url(https://pic03.eapple.com.tw/dawnclinic/ban-news.jpg);} /*衛教*/

.banner:after {
    content: "DAWN CLINIC";
    position: absolute;
    right: 2vw;
    bottom: -22px;
    color: #fff;
    font-size: 7vw;
    line-height: .8;
    font-family: var(--ENFontRaleway);
    font-weight: bold;
    font-style: italic;
    mix-blend-mode: revert;
    background: linear-gradient(to top, #ffffff, #ffffffd9, #ffaf7b6e);
    background: -webkit-linear-gradient(to top, #ffffff, #ffffffd9, #ffaf7b6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: slide-top 1.5s 0.5s both;
    animation-delay: 0.3s;
}


@keyframes slide-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;}
    
}

.banner h5 {
    font-size: var(--f36);
    font-weight: bold;
    font-family: var(--SerifFont);
    color: var(--logocolor);
    letter-spacing: 5px;
    /* border-left: 5px solid #F18B00; */
    padding-left: 60px;
    line-height: 100%;
    position: relative;
    left: 160px;
    animation: slide-top 1.5s 0.5s both;
}
.banner h5:after {
    content: "";
    background: url(https://pic03.eapple.com.tw/dawnclinic/logoheart.svg) no-repeat;
    position: absolute;
    left: 0;
    width: 105px;
    height: 105px;
    background-size: contain;
    top: -37px;
    -webkit-animation: heart 4s linear infinite;
    animation: heart 4s linear infinite;
}

.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(--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) {
    .payment_form {    flex-direction: column;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*3個一排*/
.blog_subbox {    grid-template-columns: repeat(3, 1fr);    grid-gap: 40px;}
.subbox_item a {    grid-template-columns: 1fr; grid-gap: 5px; }
.subbox_item a:before, .subbox_item a:after{display: none;}
.blog_list_ri {    border-left: 3px solid #e95d1f52;    padding-left: 15px;}
.subbox_item a:hover .blog_list_ri {    border-left: 3px solid #e95d1f;}
.blog_list_ri h5 {    color: var(--FontColor);    letter-spacing: 0.05rem;}
.subbox_item a:hover h5 {    color: var(--TitleColor);}

.blog_list_ri em {    color: var(--MainColor);}
.blog_list_ri p {    color: var(--FontColor);}

.blog_list_le {    overflow: hidden;}
.blog_list_le img, .i_blog_le img  {    object-fit: cover;    transform: scale(1.001);    transition: all ease 0.4s;}
.subbox_item a:hover img, .module_i_news li a:hover img {    transform: scale(1.1);}


/*文章-側邊選單*/
h5.blog_le_t em {
    font-family: var(--SansFont);
    color: var(--FontColor);
    font-size: var(--f28);
    font-weight: 500;
}
.blog_search input[type=search] {    border-radius: 0;}
.blog_le .accordion {    border-radius: 0;    border: none;}
.accordion li+li .link {    border-top: none;}
.blog_le .accordion li {    border-bottom: 1px dashed var(--MainColor);}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--SubColor) !important;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: var(--TitleColor) !important;
    font-weight: 400;
}

/*文章內層*/
/*文章內層封面*/
.articel_mainPic img{display: none;}
h4.blog_category_title {
    color: var(--Font_color);
    font-weight: 500;
    font-size: var(--f32);
}

.blog_back a.article_btn_back {    background: #f09e78;}
.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: #fdf2e9;
    padding: 60px 25px;
}
.news_related h6 span:before {
    font-size: var(--f24);
    color: var(--TitleColor);
    font-family: 'Noto Serif TC';
    letter-spacing: 0.08rem;
}
.lastPage {    color: #fff;    background: var(--TitleColor);}


/*文章-首頁*/
.module_i_news {    padding: 100px 20px;}
.module_i_news section {    max-width: 1400px;}
.module_i_news .title_i_box h4 {
    color: var(--TitleColor);
    font-size: var(--f24);
    font-family: var(--SerifFont);
    font-weight: bold;
    position: relative;
}

.module_i_news .title_i_box h4:before {
    content: " ";
    display: block;
    font-size: var(--f48);
    color: var(--MainColor);
    font-weight: 500;
    line-height: 1;
}

.module_i_news.module_i_news01 h4:before {    content: "News";}
.module_i_news.module_i_news02 h4:before {    content: "Health Info";}

.module_i_news li a:hover h5 {    color: var(--TitleColor);}
.i_blog_ri h5 {
    color: var(--FontColor);
    letter-spacing: 0.05rem;
}

.module_i_news li a:before {    color: var(--TitleColor);}
.module_i_news li a:hover:after {    width: 100%;}
.module_i_news li a:after {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--TitleColor);
    width: 0;
}

/*文章首頁-衛教*/
.module_i_news.module_i_news02 ul {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
.module_i_news.module_i_news02 li a {
    grid-template-columns: 1fr;
    grid-gap: 5px;
}
.module_i_news.module_i_news02 li a:before{display: none;}

/*按鈕*/
.animated-arrow {
    margin: 0 10px;
    position: relative;
    transition: .6s all;
    padding: 6px 20px;
    border-radius: 50px;
    background: #ea5c1f00;
    border: 4px solid #00000000;
    background-clip: padding-box;
    height: auto;
    overflow: initial;
}
.animated-arrow:after {
    transition: .5s all;
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    content: '';
    z-index: -1;
    border-radius: 50px;
    background-size: 200% 100%;
    background-position: 0% 0;
    background-image: linear-gradient(45deg, rgba(186, 61, 37, 0.45) 0%, #ba3d258f 12.5%, #f57736a8 12.5%, #e1652596 25%, #f5773699 25%, rgb(247 137 23 / 73%) 37.5%, rgb(255 167 11 / 54%) 37.5%, rgb(255 170 22 / 52%) 50%, rgb(255 123 0 / 79%) 50%, rgb(146 90 66 / 47%) 62.5%, rgb(255 201 0 / 45%) 62.5%, rgb(232 185 35 / 45%) 75%, rgb(195 98 55 / 71%) 75%, rgba(195, 98, 55, 0.45) 87.5%, rgb(236 47 0 / 34%) 87.5%, rgb(250 181 0 / 71%) 100%), linear-gradient(135deg, var(--MainColor), #FF954E);
}
.animated-arrow:hover:after {    background-position: 100% 0;}
.animated-arrow:hover {    background-color: white;    color: var(--FontColor);}

/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.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:1600px) {
    .banner h5{left: 0;}
    .path {    top: -89px;    left: 81px;}
}

@media (max-width:1024px) {
    :root {
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }

.pageIndex .header_area {
    position: sticky;
    background: #fff;
}
.pageIndex .header_area.sticky {
    background: #fff;
}
}


@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:30px 0 70px; }
#to_top { bottom:60px;}
#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;
}
.footer_info {    grid-template-columns: 1fr;}

/*漢堡選單*/
.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 var(--MainColor);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/

/*聯絡我們*/
.contact_content form {    flex-direction: column;}

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}
}


@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;
    }
    ul.show-list, .pic-list {    grid-template-columns: 1fr;}

        /*聯絡我們表單*/
    .contact_form li {    grid-gap: 0;}
    .contact_form li .form__label {    background: transparent;}
}

@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;
    }
}


