@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Herr+Von+Muellerhoff&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Tenor+Sans&display=swap');

/*網站全域設定/＝＝＝＝＝*/
/*
    #efb248 /*網站主要色系
    #000000 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #232323;  color: #fff;}
::selection{  background-color: #232323;  color: #fff;}
:root {
    --MainColor: #efb248;
    --SubColor:#000000;
    --SubColor02:#bba68b;
    --SFontEN: "Source Sans 3", serif;
    --SFontENT: "Bungee", serif;
    --f95: 95px;
    --f70: 70px;
    --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;
}

&::-webkit-scrollbar {
    background: #eee;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #eee;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: var(--MainColor);
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

#content{
    background: url(https://pic03.eapple.com.tw/aumygod/107-94-4.png) #ffffff;
    background-size: 300px 30px;
}

.path{display: none;}
.main_part {    padding: 70px 20px; max-width: 1400px;}

/*
關於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;}
*/
.header_area {
    /* position: absolute; */
    width: 100%;
    background: #000000;
    padding: 0;
    position: relative;
}
.header_area.sticky {
    background: rgb(0 0 0 / 90%);
    background: linear-gradient(105deg, rgb(0 0 1), #0101018a);
    position: fixed;
}

.main_header_area .container {
    max-width: 95%;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    /* opacity: 0; */
    transform-origin: 100% 50%;
    animation: action-header 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@keyframes action-header {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}
.navigation {
    /* grid-template-columns: 1fr; */
    display: flex;
    flex-direction: column;
}
.header_area.sticky .navigation {    padding: 20px 10px 7px 190px;}

.nav-header {
    max-width: 160px;
    position: absolute;
    z-index: 123;
    /* order: 2; */
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.header_area.sticky .nav-header {
    position: absolute;
    left: 5%;
    padding: 0;
    max-width: 80px;
}

/*logo*/
.header_area .nav-brand {
    display: block;
    position: relative;
    padding: 0;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    background: #000000;
}
.header_area.sticky .nav-brand {    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);}

.stellarnav {
    /* order: 1; */
    /* width: fit-content; */
    width: 100%;
    padding: 5px 20px 10px;
}
.stellarnav ul {
    /* display: flex; */
    /* justify-content: flex-end; */
    text-align: center;
}
.header_area.sticky .stellarnav ul {
    text-align: right;
}

/*第一層*/
.stellarnav > ul > li > a {
    color: var(--MainColor);
    opacity: 1;
    transition: all 0.5s;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0px 15px;
}
.stellarnav > ul > li:hover > a {    transition: all 0.5s;}

.stellarnav > ul > li:hover > a:before {    opacity: 1 }
.stellarnav > ul > li > a:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 91%;
    aspect-ratio: 1;
    width: 15.5px;
    background: radial-gradient(circle farthest-side, transparent 0 20%, #9b730f 20% 45%, transparent 45% 100%);
    opacity: 0;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.stellarnav > ul > li {
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.stellarnav > ul > li:before, .stellarnav > ul > li:after {
    content: "";
    display: block;
    position: absolute;
    /* height: 100%; */
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 67%;
    aspect-ratio: 1;
    width: 15px;
    background: radial-gradient(circle farthest-side, transparent 0 20%, #9b730f 20% 45%, transparent 45% 100%);
    opacity: 0;
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}
.stellarnav > ul > li:hover:before {
    -webkit-transform: translateX(-115%);
    transform: translateX(-115%);
    opacity: 1;
}
.stellarnav > ul > li:hover:after {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
    opacity: 1;
}

/*第二層*/
.stellarnav ul ul {
    background: var(--MainColor);
    border-radius: 8px;
}
.stellarnav li li {    border: none;}
.stellarnav li a {
    color: #000;
    font-size: 15px;
    padding: 10px;
}
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 10px;    transition: all 0.3s;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{padding-left:15px; background: #000;color: var(--MainColor);}


.stellarnav li.has-sub > a:after {
    top: 35%;
    right: 1px;
    height: 9px;
    width: 8px;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--MainColor) var(--MainColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* 商品下拉超過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個--結束 */


/*上方選單右邊設定 臉書/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 {
    width: fit-content;
    display: none;
    align-items: center;
    /* margin: 0; */
    order: 3;
    /* display: flex; */
}

.tp_links a {
    font-size: 16px;
    color: var(--MainColor);
    margin: 3px;
    opacity: .8;
}

.tp_links a:hover{opacity: 1;} 
.me_tp_features a.tp_btn_cart {    margin-right: 20px;}

/*footer*/
.footer {
    background: #000000;
    padding-top: 60px;
    /* background: url(https://pic03.eapple.com.tw/rideodie/tone.png), #000000; */
}

.footer .center {
    max-width: 1500px;
}

.footer_info {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.footer_logo {
    max-width: 100%;
    text-align: center;
    z-index: 1;
}

.footer_info ul {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
}
.footer_info li p, .footer_info li p a {    color: var(--MainColor);}
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.footer_info li:nth-child(2) {    z-index: 2;}

.footer_info li p.fax:before {    content: 'Monday to Sunday：';}
.footer_info li p.line {    order: 3;}
.footer_info li p.tel {    order: 2;}
.footer_info li p.fax {    order: 1;}
.footer_info li p.mail {    order: 4;}
.footer_info li p.add {    order: 5;}

.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.footer_menu a {
    background: transparent;
    border: none;
    color: var(--MainColor);
    border-bottom: 1px solid rgba(100, 100, 100, .3);
    position: relative;
    padding: 8px;
}
.footer_menu a:hover {
    background: transparent;
    color:var(--MainColor);
    opacity: .6;
}

.footer_menu a:first-child {    display: none;}

.footer_menu a:before {
    content: "";
    width: 0%;
    height: 1px;
    background: rgba(100, 100, 100, .3);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
    transition-timing-function: ease-in-out;
}
.footer_menu a:hover:before {
    width: 100%;
    background: var(--MainColor);
}

.box_link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    bottom: 0;
    position: relative;
    right: 0;
}
.box_link a {
    height: 40px;
    border-radius: 56px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #7165652e;
    border: none;
    margin: 5px;
    backdrop-filter: blur(4px);
    transition: all .5s;
}

.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab,
.fa-sharp-solid,
.fa-classic,
.fa {
    color: #ccc;
    font-size: 15px;
}

.fa-phone-volume::before {    font-size: 17px;}

.box_link a:hover i {    color: #000;}
.box_link a:hover {    background: var(--MainColor);}
.copy {
    /* background: #00000070; */
    border: none;
    padding: 30px 20px;
    font-size: 12px;
    margin-top: 40px;
    background: var(--MainColor);
    color: #000;
}
.copy a {    color: #000;}

#to_top {
    background: var(--MainColor);
    -webkit-animation: topmoveTop 3000ms infinite;
    animation: topmoveTop 3000ms infinite;
    bottom: 50px;
}
@keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}
@-webkit-keyframes topmoveTop {from{transform:translateY(20px);}55%{transform:translateY(0px);}60%{transform:translateY(10px);}70%{transform:translateY(0px);}to{transform:translateY(20px);}}


/*浮動按鈕*/
.info_fix {    right: 30px;}

.linksBtn {
    width: 70px;
    height: 70px;
    background: #bba68be8;
    transition: all .5s;
    position: relative;
}
.linksBtn:before {
    position: absolute;
    content: "";
    background-image: url(https://pic03.eapple.com.tw/aumygod/fri-r.svg);
    background-repeat: no-repeat;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
    background-position: center center;
    animation: 50s linear 0s infinite normal none running rotate;
    width: 95px;
    height: 95px;
    background-size: contain;
    /*left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;*/
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) ;
        transform: rotate(0deg) ;
    }
    100% { 
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg) ;
    }
}
.info_fix:hover>.linksBtn {    background: #bba68b;}
.info_fix>span:hover {
    transform: rotate(45deg);
    transition: .3s;
    background: var(--MainColor);
}
.fa-lightbulb::before {
    content: "+";
    color: #000;
    font-size: 23px;
}
.info_fix:hover>.linksBtn i:before{color: #000;}

.info_fix_links a {    background: #000000cc;}
.info_fix_links a:hover {    background: #efb248ad;}

.info_fix_links a i {  color: var(--MainColor); }
.info_fix_links a:hover i {     color: #000;}

a.info_fix_default.info_fix_line, a.info_fix_default.info_fix_tel, a.info_fix_default.info_fix_mail {
    display: none;
}



/*聯絡我們*/
.contact_content .information_left {
    width: 100%;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
}
.blank_letter {
    grid-column: span 2;
    margin-bottom: 20px;
    color: var(--SubColor);
    position: relative;
    font-size: var(--f24);
}

h4.blank_letter:before {
    display: block;
    color: var(--MainColor);
    font-family: "Herr Von Muellerhoff", serif;
    font-size: 4vw;
    font-weight: normal;
    line-height: .4;
    font-size: var(--f70);
}
h4.blank_letter.i:before {    content: "Get in touch";}
h4.blank_letter.f:before {    content: "Consultation";}
.contact_content .information_right {
    width: 100%;
    margin-top: 60px;
    padding: 10px;
}

.list_before {    margin: 0;}

.list_before.info li {
    padding-left: 0;
    color: var(--SubColor);
    font-weight: bold;
}
.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 {
    width: fit-content;
    display: inline-block;
    position: relative;
    padding-right: 13px;
    color: #444;
}

.info_FAX:before {    content: "Monday to Sunday";}


.contact_form li.last blockquote, .contact_form li.last cite {
    position: relative;
    text-align: center;
    display: block;
    border: 2px solid var(--MainColor);
    margin-top: 3em;
    font-weight: bold;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.contact_form li.last cite {    background: var(--MainColor);}
.contact_form li.last cite i {    color: #fff;}

.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {    border-color: #000;    color: #fff;}

.contact_form li.last blockquote:before, .contact_form li.last cite:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.contact_form li.last blockquote:hover:before, .contact_form li.last cite:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: url(https://pic03.eapple.com.tw/aumygod/107-94-4.png) #ffffff;
    background-size: 300px 30px;
}

.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;}
}

/*大圖1*/
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/aumygod/01cover-1ban.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    opacity: 1;
}
.swiper-slide.swiper-slide-active:nth-child(1):before { 
    -webkit-animation: slider2 2s ease-in-out forwards;
    animation: slider2 2s ease-in-out forwards;
}

@keyframes slider2 {
    0% {
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
    }
    99% {
        z-index: 10;
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        z-index: 5;
    }
}

@keyframes bgin{
    0%{opacity: 0; transform: translateX(100px);}
    100%{opacity: 1;
        transform:scale(1) translateX(0);
        background-size: cover;}
}

/*大圖2*/
.swiper-slide:nth-child(2):before {
    content: 'Welcome and Enjoy AU MY GOD';
    display: block;
    clear: both;
    transition: all 0.3s ease-in-out;
    position: absolute;
    pointer-events: none;
    font-family: var(--SFontEN);
    font-size: 12VW;
    text-transform: uppercase;
    font-weight: bold;
    color: #dfdfdf;
    top: calc(50% - 102px);
    width: 100%;
    transform: translate(0, -50%);
    z-index: 0;
    white-space: nowrap;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    animation-name: text-loop;
    animation-duration: 36s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}
@keyframes text-loop {
    0% {        transform: translate3d(0, 0, 0)    }
    100% {        transform: translate3d(-50%, 0, 0)    }
}

.swiper-slide.swiper-slide:nth-child(2):after {
    background: #fff;
    content: ' ';
    display: block;
    clear: both;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    bottom: 0;
    background: url(https://pic03.eapple.com.tw/aumygod/02cover-2ban.jpg);
    animation: bgScroll 30s linear infinite;
}
@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    height: 80vw;
    max-height: 450px;
    position: relative;
    background-image: linear-gradient(178deg, #00000000 20%, rgb(0 0 0 / 52%) 65%), url(https://pic03.eapple.com.tw/aumygod/ban.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
}
.services_page .banner {
    background:  linear-gradient(178deg, #00000000 20%, rgb(0 0 0 / 52%) 65%), url(https://pic03.eapple.com.tw/aumygod/01about-2bg.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
}
.banner.banC {
    background-image: linear-gradient(178deg, #00000000 20%, rgb(0 0 0 / 52%) 65%), url(https://pic03.eapple.com.tw/aumygod/S__5210172.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
}

body.blog_page.article_a.bodyDesktop .banner, body.blog_in_page.article_a.bodyDesktop .banner {
    background-image: linear-gradient(178deg, #00000000 20%, rgb(0 0 0 / 52%) 65%), url(https://pic03.eapple.com.tw/aumygod/ban-bloga.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
}


/*
.banner:before {
    content: " ";
    background: radial-gradient(circle at 0% -11px, transparent 0, transparent 17px, #ffffff 18px, #ffffff);
    position: absolute;
    left: 0;
    height: 10px;
    width: 100%;
    top: 98%;
    background-size: 12px;
}*/
.banner:before {
    content: " ";
    position: absolute;
    top: 98.5%;
    left: 0;
    background: radial-gradient(#ffffff, #ffffff 6px, #ffffff00 6px, #ffffff00) -33px 0px;
    background-size: 14px 14px;
    height: 10px;
    width: 100%;
}

.banner h5 {
    color: #fff;
    position: relative;
    font-size: var(--f22);
    letter-spacing: 1px;
}

.banner h5:before {
    content: "Welcome";
    display: block;
    color: var(--MainColor);
    font-size: 5vw;
    font-family: "Herr Von Muellerhoff", serif;
    font-weight: normal;
    line-height: 1.1;
    font-size: var(--f95);
}
.banner:after {
    content: "AU MY GOD";
    display: block;
    font-family: var(--SFontENT);
    font-size: var(--f42);
    color: #fff;
    position: absolute;
    top: 48%;
    letter-spacing: 0.2em;
}

.services_page .banner h5:before {    content: "Discover";}
.services_page .banner:after {    content: "The Menu";}

body.blog_page.article_a.bodyDesktop .banner.banblog h5::before, body.blog_in_page.article_a.bodyDesktop  .banner.banblog h5::before {    content: "Event";}
body.blog_page.article_a.bodyDesktop .banner:after, body.blog_in_page.article_a.bodyDesktop .banner:after {    content: "Highlights";}

body.blog_page.article_b.bodyDesktop .banner.banblog h5::before, body.blog_in_page.article_b.bodyDesktop .banner.banblog h5::before { content: "Latest";}
body.blog_page.article_b.bodyDesktop .banner:after, body.blog_in_page.article_b.bodyDesktop .banner:after { content: "News";}
.banner.banF h5:before {    content: "Peripheral";}
.banner.banF:after {    content: "Products";}

.banner.banC h5:before {    content: "Find us";}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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;}

.product_info_page .main_part {
    width: 100%;
    max-width: 1200px;
}

.products-list .name {
    color: var(--SubColor);
    text-align: center;
    font-weight: 600;
    font-size: var(--f16);
}

.product-layer-two > li {
    border-bottom: 1px dotted #efb248;
    padding-bottom: 0;
}
.product-layer-two li a:hover {
    background: var(--MainColor);
    color: #fff;
}
.product-layer-two li.active a {
    font-weight: bold;
    border: none;
    background: var(--MainColor);
    color: #fff;
}
.product-layer-two li a {
    border: none;
    color: var(--SubColor);
    background: transparent;
    padding: 10px 15px;
}

/*顏色*/
.products-list .more {    border: 1px solid var(--MainColor);    color: var(--MainColor);}
.products-list .item a:hover .more {    background: var(--MainColor);}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
.pd_tabInner_contain {    line-height: 180%;}
.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: var(--MainColor);
}
.pd_tabTitle li {    border-bottom: 1px solid var(--MainColor);}
.pd_tabTitle li.activeTab a {
    color: var(--SubColor);
    font-size: var(--f18);
    font-weight: 600;
}


/*按鈕顏色*/
.products-list .price b {    color: var(--SubColor);}
.inquiry_a1{background: var(--SubColor);}
.inquiry_a2 {    background: var(--MainColor);}
.inquiry_a3{background: var(--MainColor);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: var(--MainColor);    background-color: #f2f2f2;}
.nextaction {    background-color: var(--MainColor);}
.lastPage {    background: var(--MainColor);}

/*商品側邊規格*/
.sidebarBtn {    border: none;}
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: var(--SubColor);}
.sidebarBtn .price {    border-bottom: 2px solid #efb248;}
.mobile_product_name{font-size: 24px;}

/*相關推薦*/
.prod_related {
    background: #eee;
    padding: 100px 20px 60px;
    position: relative;
}

.prod_related:before {
    content: " ";
    position: absolute;
    top: -1%;
    left: 0;
    background: radial-gradient(#eeeeee, #eeeeee 6px, #ffffff00 6px, #ffffff00) -33px 0px;
    background-size: 14px 14px;
    height: 10px;
    width: 100%;
}
.prod_related h6 span:after {
    content: "相關推薦";
    font-size: var(--f24);
    color: var(--SubColor);
}
.prod_related h6 span:before {
    content: "Recommend";
    display: block;
    color: var(--MainColor);
    font-family: "Herr Von Muellerhoff", serif;
    font-weight: normal;
    line-height: .5;
    font-size: var(--f70);
}
.related_list li a {
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2em;
}


@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) {
}

/*相簿修改*/
.pic-list .show_pic {  aspect-ratio: auto; }
.other_album { display:none; }

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_subbox {    grid-template-columns: repeat(3, 1fr);}
.subbox_item a {
    grid-template-columns: 1fr;
    grid-gap: 5px 20px;
    overflow: hidden;
}
.subbox_item a:hover {    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 2em;}

.subbox_item a:after{display: none;}
.subbox_item a:before {    color: var(--MainColor);}
.subbox_item a:before {
    background-color: #efb248d9;
    position: absolute;
    top: 85%;
    transform: translate(0, 0);
    transition: transform .2s;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    bottom: 0;
    color: #fff;
    right: -5%;
    border: none;
    z-index: 0;
    opacity: 1;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px;
    font-size: inherit;
}
.subbox_item a:hover:before {    transform: translate(120%, 0) skew(-15deg);}


.blog_list_le {    overflow: hidden;    position: relative;}
.blog_list_ri {    padding: 10px 10px 16px;}
.subbox_item a:hover .blog_list_le:after {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    opacity: 1;
    -webkit-transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
    -moz-transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
    -o-transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
    transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
}
.subbox_item a:hover .blog_list_le:before {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    opacity: 1;
    -webkit-transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
    -moz-transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
    -o-transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
    transition: all 0.4s ease, width 0.6s 0s ease, height 0.6s 0.2s ease;
}
.blog_list_le:after {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid var(--MainColor);
    border-left: 0;
    border-top: 0;
    position: absolute;
    bottom: 5px;
    right: 5px;
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.blog_list_le:before {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid var(--MainColor);
    border-right: 0;
    border-bottom: 0;
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog_list_ri p {    min-height: 80px;}
.blog_list_ri h5 {    font-weight: bold;}


/*文章-側邊*/
h5.blog_le_t em {
    color: var(--SubColor);
    position: relative;
    font-size: var(--f24);
}
.blog_search input[type=search] {    border-radius: 0;}
.blog_le .accordion {
    border-radius: 0;
    border: none;
    border-bottom: 1px #ccc solid;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--MainColor) !important;
}


/*文章內層*/
.articel_mainPic img {    display: none;} /*文章封面圖*/
.blog_back a.article_btn_back {    background: var(--MainColor);}
.news_tags a {    margin-right: 2px;    color: #555;}
.blog_box_edit * {    line-height: 180%;}

/*文章-相關推薦*/
.news_related {
    background: #eee;
    padding: 100px 20px 80px;
    position: relative;
}
.news_related:before {
    content: " ";
    position: absolute;
    top: -2%;
    left: 0;
    background: radial-gradient(#eeeeee, #eeeeee 6px, #ffffff00 6px, #ffffff00) -33px 0px;
    background-size: 14px 14px;
    height: 10px;
    width: 100%;
}
.news_related h6 span:after {
    content: "相關文章";
    font-size: var(--f24);
    color: var(--SubColor);
}
.news_related h6 span:before {
    content: "Recommend";
    display: block;
    color: var(--MainColor);
    font-family: "Herr Von Muellerhoff", serif;
    font-weight: normal;
    line-height: .5;
    font-size: var(--f70);
}

.lastPage {    color: #fff;    background: var(--MainColor);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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 (max-width:1024px) {
    :root {
        --f95: 80px;
        --f70: 60px;
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }

    .swiper-slide:nth-child(2):before {        top: 35%;    }

    .main_header_area .container {        max-width: 100%;    }

    .header_area.sticky {        background: #000;    }
    .navigation {        display: flex ;    flex-direction: column;    }
    .header_area.sticky .navigation {        padding: 0;    }
    .nav-header {    max-width: 100%;}
    .header_area.sticky .nav-header {        position: relative;    }

.stellarnav {    padding: 0;}
.header_area.sticky .stellarnav ul {    text-align: center;}

/*banner*/
.banner {   max-height: 350px;}
.banner h5:before {    line-height: 1.2;}
.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; background: var(--MainColor); }
.footer.with_shopping_mode { padding:30px 0 50px; }
#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;
}
#bottom_menu li a, #bottom_menu li a i {    color: #000;}

.nav-header {    max-width: 120px;    left: 0;    transform: none;}
.header_area.sticky .nav-header {    left: 0;}

.main_header_area .container {    animation: none;}
.header_area.sticky .stellarnav ul {
    border: none;
    background: #000000e3;
}

.stellarnav .menu-toggle span.bars span {    background: var(--MainColor);}
.stellarnav .menu-toggle:after {    color: var(--MainColor);}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--MainColor);
    color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #fff;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    border: none;
    background: #000000d9;
}
.stellarnav.mobile > ul > li {    border-bottom: 1px #efb24847 solid;}
.stellarnav.mobile li a {    border-bottom: none;}
.stellarnav > ul > li > a {    color: var(--MainColor);}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 2px #ffffff;
}
.stellarnav.mobile li.open {    background: var(--MainColor);}
.stellarnav > ul > li:hover > a {    color: #000;    font-weight: bold;    opacity: 1;}
.stellarnav li li > a {    color: var(--MainColor);}
.stellarnav > ul > li > a:before, .stellarnav > ul > li:before, .stellarnav > ul > li:after{display: none;}


.footer_info ul {
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.footer_menu {    grid-template-columns: 1fr 1fr 1fr;}
.box_link {    justify-content: center;    order: 3;}


/*banner*/
.banner {   max-height: 300px; background-attachment: initial;} 
.banner h5 {    line-height: 1.6;}
.banner h5:before {    line-height: .9;}
}


@media (max-width:600px) {
    :root {
        --f95: 70px;
        --f70: 50px;
        --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;
    }
    .stellarnav {
        padding: 10px;
    }

    .footer_menu {    grid-template-columns: 1fr 1fr;}
    .banner {        max-height: 250px;    }
    .banner h5:before {        line-height: 1;    }

    .blog_subbox {        grid-template-columns: 1fr;    }
    .subbox_item a:before {
        top: 89%;
        width: 71px;
        height: 71px;
        font-size: 14px;
        right: -2%;
    }
    .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;
    }
}


