@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*反白顏色*/
::-moz-selection {
    background-color: #F7B515;
    color: #fff;
}

::selection {
    background-color: #F7B515;
    color: #fff;
}

body {
    overflow-x: hidden;
}

/* 捲軸寬度及高度 */
&::-webkit-scrollbar {
    background: #762A2D;
    width: 5px;

}

/* 捲軸兩側頂端的按鈕 */
&::-webkit-scrollbar-button {
    display: none;
}

/* 滑桿顏色 */
&::-webkit-scrollbar-thumb {
    background-color: #F7B515;
    border-radius: 2px;
    transition: all 0.3s;
}

&::-webkit-scrollbar-thumb:hover {
    background-color: #a15d03;
    transition: all 0.3s;
}

/* 軌道背景底色 */
&::-webkit-scrollbar-track {
    background-color: #762A2D;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 大圖 */
.bannerindex .swiper-wrapper .swiper-slide {
    background-color: #FFF8EF;
}

/* 大標 */
.bannerindex .swiper-wrapper .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/0981563336/bg-03.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: 1;
    opacity: 0;
    animation: title-scale 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.2s;
}

@keyframes title-scale {
    0% {
        transform: scale(1, 0);
        opacity: 0;
    }

    100% {
        transform: scale(1, );
        opacity: 1;
    }
}








/* 背景大字 */
.bannerindex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 150px;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/0981563336/bg-01.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: 1;
    opacity: 0;
}

.bannerindex .swiper-wrapper .swiper-slide-active.swiper-slide::before {
    animation: circle-scale 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}


@keyframes circle-scale {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



@media screen and (max-width: 600px) {
    .bannerindex .swiper-wrapper .swiper-slide::before {
        width: 300px;
        height: 300px;
    }

    .bannerindex .swiper-wrapper .swiper-slide:nth-of-type(1):before {
        left: 40%;
    }

    /* 2 */
    .bannerindex .swiper-wrapper .swiper-slide:nth-of-type(2):before {
        top: 14%;
        left: 45%;
    }

}


/* 蛋餅 */
.bannerindex .swiper-banner .swiper-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/0981563336/bg-04.png);
    width: 100%;
    max-width: 100%;
    height: 101%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    opacity: 0;
    animation: action-bottom 2.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 2.5s;
}


@keyframes action-bottom {
    0% {
        top: 1000px;
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        top: 0;
        transform: scale(1.);
        opacity: 1;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 選單設定 */
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 100%;
    transition: all 0.3s;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    display: none;
}

.nav-header {
    z-index: 98999999;
    max-width: 110px;
    opacity: 0;
    transition: all 0.5s;
}

.sticky .nav-header {
    opacity: 1;
    transition: all 0.5s;
}



.header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #F7B515;
    border-radius: 0 0 50% 50%;
    box-shadow: 1px 1px 2px #00000014;
    transform: translate(0, -110%);
    transition: all 0.5s;
}

.header_area.sticky::before {
    transform: translate(0);
    transition: all 0.5s;

}


.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    background-color: #f0d9aa;
    transition: all 0.3s;
}





@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: transparent;
    transition: all 0.5s;
}

.sticky .main_header_area {
    transition: all 0.5s;
}

.stellarnav li.has-sub>a:after {
    display: none;
}





.stellarnav>ul>li>a {
    padding: 0 30px;
    color: #a15d03;
    text-transform: uppercase;
    position: relative;
    display: flex;
    font-size: 16px;
    line-height: 50px;
    height: fit-content;
    margin: 0;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    overflow: visible;
    flex-direction: column;
    font-weight: bold;
    font-family: "Noto Sans TC", sans-serif;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 30px;
}

.pageIndex .stellarnav>ul>li>a {}


.sticky .stellarnav>ul>li>a {
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    line-height: 20px;
    height: fit-content;
    font-weight: 500;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-of-type(1) {
    font-size: 16px;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    color: #ababab;
    margin-top: 3px;
    font-size: 12px;
    transition: all 0.5s;
}

.stellarnav>ul>li:hover>a {
    color: #762A2D;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
}

.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 30px 0 30px;
    opacity: 1;
    transition: all 0.3s;
    justify-content: center;
    overflow: visible;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header_area.sticky .navigation {
    padding: 10px 0 10px;
    opacity: 1;
    transition: all 0.5s;
}


.stellarnav ul {
    margin: 0;
    text-align: center;
}


/* hover動畫 */
.stellarnav > ul > li:before, .stellarnav > ul > li:after {
    content: "";
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    transition: all .5s;
}
.stellarnav > ul > li:after {    background: #fbda8a;}
.stellarnav > ul > li:before {    background: #ffd369;}

.stellarnav > ul > li:hover:after {    animation: ro-run 1.4s 0.5s linear infinite reverse;}
.stellarnav > ul > li:hover:before {
    -webkit-animation: ro-run 1.4s 0.5s linear infinite;
    animation: ro-run 1.4s 0.5s linear infinite;
}
.stellarnav > ul > li:hover:before, .stellarnav > ul > li:hover:after {    opacity: 1;    top: 80%; transition: all .5s; }


@keyframes ro-run {
    0% {
        translate: 0 0;
    }
    25% {
        translate: 7px 0;
    }
    50% {
        translate: 0 0;
    }
    75% {
        translate: -7px 0;
    }
    100% {
        translate: 0 0;
    }
}
@-webkit-keyframes ro-run {
    0% {
        translate: 0 0;
    }
    25% {
        translate: 7px 0;
    }
    50% {
        translate: 0 0;
    }
    75% {
        translate: -7px 0;
    }
    100% {
        translate: 0 0;
    }
}





/* 延遲出現特效 */


.stellarnav>ul>li {
    opacity: 0;
    transform: translate(0, -50px);
    transition: all 0.5s cubic-bezier(0.71, 0.11, 0.12, 0.92);
}

.sticky .stellarnav>ul>li {
    opacity: 1;
    transform: translate(0, 0px);
    transition: all 0.5s cubic-bezier(0.71, 0.11, 0.12, 0.92);
}

.sticky .stellarnav>ul>li:nth-of-type(1),
.sticky .stellarnav>ul>li:nth-of-type(6) {
    transition-delay: 0.1s;
}

.sticky .stellarnav>ul>li:nth-of-type(2),
.sticky .stellarnav>ul>li:nth-of-type(5) {
    transition-delay: .2s;
}

.sticky .stellarnav>ul>li:nth-of-type(3),
.sticky .stellarnav>ul>li:nth-of-type(4) {
    transition-delay: .3s;
}













@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 30px 0;
    }

    .header_area.sticky .navigation {
        padding: 20px 0;
    }

    .pageIndex .header_area .main_header_area::before {
        top: 0;
    }
}

@media screen and (max-width: 768px) {
    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }
}









/*下拉*/
.stellarnav ul ul {}

.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #2B3047;
    ;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}


.stellarnav li li a {
    padding: 10px 15px;
    display: block;
    color: #000;
    background-color: transparent;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    color: #fff;
    background-color: #ffc648;
    transition: all 0.3s;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100%;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    transition: all 0.5s;
}

.header_area .nav-brand img {
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    transition: all 0.3s;
}


@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

}

@media screen and (max-width: 1024px) {
    .header_area {
        position: relative;
        top: 0;
    }

    .header_area .main_header_area::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

}

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav.mobile {
        top: 9px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #00a297;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        color: #666;
        text-shadow: none;
        padding: 15px 10px;
    }

    .nav-brand {
        display: inline-block;
        width: 220px;
    }

    .header_area .nav-brand {
        width: 150px;
    }

    .header_area .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .stellarnav>ul {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #00a297;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 43px 25px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0;
        position: absolute;
        top: 20px;
    }

    .stellarnav.mobile.left>ul {
        left: 0;
        padding: 0;
        border: 0;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav li li:hover {
        background: inherit;
        border-radius: 0;
        color: inherit;
        transform: none;
        box-shadow: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .stellarnav li li:hover>a {
        color: inherit;
        transition: all 0.3s;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 43px 15px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav li li a {
        padding: 15px 15px;
        color: #666;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {background: #F7B515;}
footer * {font-family: "Noto Sans TC", sans-serif;}
footer {
    padding: 80px 0 0 !important;
}
.footer .center {
    max-width: 1200px;
    padding: 0 2%;
}
.footer_logo {
    max-width: 230px;
}
.box_link {
    display: none;
}
.footer_info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0;
}
.footer_info ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 900px;
    font-family: "Onest", sans-serif, "Noto Sans TC", sans-serif;
}
.footer_info li {
    padding: 25px 10px 10px;
}
.footer_info li::before {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer_info li:nth-child(1):before {
    content: 'CONTACT US';
}
.footer_info li:nth-child(2):before {
    content: 'LINK';
}

/* 聯絡資訊 */
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
}
.footer_info li p.tel:before {
    content: '門市電話';
}
.footer_info li p.tel2:before {
    content: '加盟專線';
}
.footer_info li p.phone:before {
    content: '手機';
}
.footer_info li p.taxid:before {
    content: '統編';
}
.footer_info li p.add:before {
    content: '地址';
}
.footer_info li p.add2:before {
    content: '營業時間';
}
.footer_info li p.mail , .footer_info li p.line , .footer_info li p.phone{
    display: none;
}
.footer_info li p {
    font-weight: 500;
    margin-bottom: 10px;
}
.footer_info li p a {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}
.footer_info li p:before {
    display: block;
    color: #ffffff;
}



/* footer選單 */
.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    column-gap: 25px;
}
.footer_menu a {
    font-family: "Onest", sans-serif, "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    background: transparent;
    border: 0;
    padding: 8px 11px 8px 0;
}
.copy, 
.copy a {
    color: #f7b515;
}
.privacyLinks a+a {
    border-left: 1px solid #f7b515;
}
.copy {
    background: #762A2D; 
    margin-top: 70px;
    border-top: none;
}

/* hover */
.box_link a,
.box_link a:hover,
.footer_menu a,
.footer_menu a:hover,
.copy a,
.copy a:hover {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_menu a:hover {
    background: transparent;
    color: #762A2D;
}
.copy a:hover {
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 20px 0 0 !important;
    }
    .footer_info {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 450px) {
    .footer .center {
        padding: 0 8%;
    }
    .footer_info ul {
        justify-content: flex-start;
    }
    .footer_info li {
        padding: 10px;
    }
    .footer_info li+li {
        margin-top: 0;
    }
    .footer_info li::before {
        margin-bottom: 10px;
    }
    .footer_menu {
        row-gap: 0px;
        column-gap: 10px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 浮動 */

.info_fix {
    width: fit-content;
    display: flex;
    bottom: 20px;
    right: 20px;
    animation: show-nav-2 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    flex-direction: row;
    transform-origin: 100% 50%;
}

@keyframes show-nav-2 {
    0% {
        transform: scale(0, 1);
        opacity: 0;
    }

    100% {
        transform: scale(1, 1);

        opacity: 1;
    }
}


.info_fix_links {
    display: flex !important;
    position: absolute;
    right: -40px;
    padding: 10px;
    background: linear-gradient(45deg, #762A2D 0%, #903438 100%);
    border-radius: 24px;
    width: fit-content;
    flex-direction: row;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.linksBtn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    z-index: 9999999;
    background: #762A2D;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.linksBtn:hover,
.info_fix:hover>.linksBtn {
    background: #fff;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.info_fix:has(.linksBtn:hover) .info_fix_links {
    animation: footer-text 1s ease-out forwards 0.15s;
    right: -10px;
    opacity: 1;
    padding-right: 60px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.info_fix_links:hover {
    right: -10px;
    opacity: 1;
    padding-right: 60px;
}

.fa-lightbulb::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/0981563336/icon-19.png);
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fa-xmark::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/0981563336/icon-20.png);
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/* .info_fix_links:hover {
    right: -10px;
    opacity: 1;
    padding-right: 50px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
} */

@keyframes footer-text {
    0% {
        transform: scale(1, 1);
    }

    10% {
        transform: scale(1.1, 0.9);
    }

    30% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.05, 0.95);
    }

    100% {
        transform: scale(1, 1);
    }

}


.info_fix_links a.info_fix_default.info_fix_mail {
    display: none;
}

.info_fix_links a {
    background: transparent;
    overflow: visible;
    margin: 0;
    margin: 0 10px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.info_fix_links a:hover {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    color: #F7B515;
}

.info_fix_default.info_fix_fb:hover {
    color: #F7B515;
}

.info_fix_default.info_fix_line:hover {
    color: #F7B515;
}

.info_fix_default.info_fix_phone:hover {
    color: #F7B515;
}

.info_fix_links a.info_fix_default {
    position: relative;
}

.info_fix_tel {
  display: none !important;
}

.fa-facebook-f:before {
    content: "\f3c0";
}

.info_fix_default::before {
    content: "";
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    width: fit-content;
    text-transform: uppercase;
    color: #762A2D;
    padding: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    text-align: right;
    white-space: nowrap;
}

.info_fix_default:hover:before {
    transform: translate(-50%, -20px);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.info_fix_default.info_fix_fb::before {
    content: "加盟LINE";
    background-color: #F7B515;
    border-radius: 5px;
}

.info_fix_default.info_fix_phone::before {
    content: "手機";
    background-color: #F7B515;
    border-radius: 5px;
}

.info_fix_default.info_fix_line::before {
    content: "門市LINE";
    background-color: #F7B515;
    border-radius: 5px;
}


/*順序*/
.info_fix_links a.info_fix_default.info_fix_fb {order: 3;}
.info_fix_links a.info_fix_default.info_fix_line {order: 2;}
.info_fix_links a.info_fix_default.info_fix_phone {order: 1;}

.pageIndex .header_area .stellarnav .menu-toggle,
.pageIndex .stellarnav .call-btn-mobile,
.pageIndex .stellarnav .location-btn-mobile,
.pageIndex .info_fix {
    opacity: 0;
    animation-delay: 4.7s;
}


@media screen and (max-width: 768px) {
    .info_fix {
        width: 100%;
        bottom: 0;
        right: 0;
    }

    .linksBtn {
        display: none;
    }

    .info_fix_links {
        width: 100%;
        border-radius: 0;
        background: linear-gradient(45deg, #FF8C00 0%, #FFB500 100%);

    }

    .info_fix_links {
        right: 0;
        bottom: 0px;
        padding: 5px;
        opacity: 1;
        transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    }

    .info_fix_links a {
        width: calc(100% / 4 - 20px);
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




