@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap');

body{
    font-family: "Noto Sans TC", sans-serif;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection{
    background-color: #FE8113;
    color: #fff;
  }
  ::selection{
    background-color: #FE8113;
    color: #fff;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #fff;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #fff;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #fff;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #FE8113;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
    }
  
  /* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
  
  /* 頁面的麵包屑 首頁/頁面名稱/ */
  .path { display:none;}
  
  /*首頁+聯絡按鈕*/
  .animated-arrow { background:#BB9F87 ;}
  .swiper-pagination {
      left: 50%;
      margin-left: 0;
      transform: translate(-50%, 0);
      display: none;
  }
  
  .swiper-wrapper .swiper-slide.swiper-slide:before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      background-image: url(https://pic03.eapple.com.tw/quickright/inbg.png);
      width: 100%;
      max-width: 100%;
      height: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 1000;
      opacity: 0;
      animation: banner-banner-show 1s forwards;
      animation-delay: 2.6s;
  }


@keyframes banner-banner-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}






/* 開場動畫 */


.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/quickright/logo-00.png);
    width: 526px;
    height: 245px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    pointer-events: none;
    animation: banner-logo 3s forwards;
}
.bannerindex::after{
    content: "";
    display: block;
    background: #ffffff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 100;
    animation: banner-bg 3s forwards;

}


.swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 1s forwards;
    animation-delay: 2.6s;
}





.swiper-banner::after{
    content: "";
    display: block;
    height: 0px;
    background-color: transparent;
    pointer-events: none;
    position: fixed;
    bottom: 240px;
    z-index: 500;
    opacity: 0;
    border: #FE8113 1.5px solid;
    animation: banner-line-brown 3s forwards;
}








@keyframes banner-logo{
    0%{
        opacity: 0;
        filter: blur(0);
    }
    25%{
        opacity: 1;
        filter: blur(0);
    }
    50%{
        filter: blur(0);
        opacity: 1;
    }
    80%{
        filter: blur(0);
        opacity: 1;
    }
    100%{
        filter: blur(10);
        opacity: 0;

    }
}
@keyframes banner-bg{
    0%{

    }
    50%{
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes banner-img {
    0%{
        transform: scale(1.4);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes banner-line-white{
    0%{
        width: 420px;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown{
    0%{
        width: 0;
        right: auto;
        left: 0;
        opacity: 1;
    }
    50%{
        width: 100%;
        right: auto;
        left: 0;
        opacity: 1;
    }
    51%{
        width: 100%;
        right: 0;
        left: auto;
        opacity: 1;
    }
    100%{
        width: 0;
        right: 0;
        left: auto;
        opacity: 0;
    }
}



@media screen and (max-width: 768px) {
    .bannerindex::before{
        width: 300px;
    }    
}

  
  
/*首頁+聯絡按鈕*/
.animated-arrow { background:#c1b09c ;}
.swiper-pagination {    left: 50%;    margin-left: 0;    transform: translate(-50% , 0);}


/*預設解除背景輪播*/
#content_main { 
    margin:0;
    background: transparent;
    z-index: 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;}
}




#content {
    width: 100%;
    min-height: 80vh;
    background: #fafbf6;
    background-position: top center;
    background-size: 100% auto;
}



/* @media screen and (max-width: 768px) {
    .bannerindex { position:relative; height:0;}
    .swiper-banner { position:relative; margin:0; height:114vh;}
}


@media screen and (max-width: 768px) {
    .bannerindex {
        padding-bottom: 123vw;
        background-size: cover;
    }
    .swiper-wrapper .swiper-slide:nth-child(1)::after {
        display: none;
    }
    .swiper-wrapper .swiper-slide:nth-child(2)::after {
        display: none;
    }
    .swiper-slide img { 
        display: none;
    }
    .swiper-wrapper .swiper-slide:nth-child(1){
        background-image: url(https://pic03.eapple.com.tw/quickright/bg-36.jpg);
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .swiper-wrapper .swiper-slide:nth-child(2){
        background-image: url(https://pic03.eapple.com.tw/quickright/bg-37.jpg);
        background-position: top;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .swiper-wrapper .swiper-slide:nth-child(1)::before {
        display: none;
    }
    .swiper-wrapper .swiper-slide.swiper-slide:before{
        display: none;
    }
    
} */


/* @media screen and (max-width: 500px) {
    .swiper-wrapper .swiper-slide:nth-child(1){
        background-size: contain;
    }
    .swiper-wrapper .swiper-slide:nth-child(2){
        background-size: contain;
    }
    
} */


/* = == 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/






.header_area{background: #ffffff00;}
.header_area .main_header_area {
    position: fixed;
    background: #ffffff00;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    /* height: 0px; */
    transition: all 0.5s;
}




.header_area .me_tp_features {
    display: block;
    position: fixed;
    top: 30px;
    right: 6%;
    margin-bottom: 0;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header_area.sticky .me_tp_features {
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 27px;
    right: 1%;
    transition: all 0.5s;
    pointer-events: all;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 27px;
    transition: all 0.5s;
}







/* 漢堡 */

.stellarnav .menu-toggle{
    text-align: center;

}
.stellarnav .menu-toggle:after{
    content: "";
    display: block;
    font-size: 12px;
    text-align: center;
    color: #43453D;
    font-family: "Klee One", 'Noto Serif TC';
}




.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 26px;
    height: 2px;
    border-radius: 6px;
    background: #43453D;
    margin: 0 auto 6px;
    left: 0;
    transition: 0.5s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 1;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */


.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    left: 0;
    transform: rotate(45deg);
    transition: all 1s;
}
.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}
.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    transform: rotate(315deg);
    left: 0;
    top: -16px;
    transition: all 1s;
}



.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-55deg);
    transition: all 1s;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
}










/* 未開啟 */

.stellarnav.desktop > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav.desktop{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}
.stellarnav.desktop::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 1s;
}


/* 開啟 */
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    pointer-events: all;
    width: 30%;
    height: 100%;
    background: transparent;
    padding: 5% 5%;
    padding-top: 130px;
    border-radius: 0 0 0 30px;
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 590px;
    background-color: #fff;
    border-radius: 0 0 0 40px;
    animation: nav-left 0.5s forwards;
}
.stellarnav.desktop.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}
.stellarnav.desktop.active::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0000001a;
    border-radius: 0;
    backdrop-filter: blur(5px);
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{
        left: 590px;
    }
    100%{
        left: 0;
    }
    
}






@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}




/* BAR */


/* 購物籃 */
.tp_links{
    display: none;
}
.box_search input[type=text] {
    display: none;
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(20% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #3F3F3F solid;
    border-radius: 0;
    transition: all 0.3s;
}
.box_search input[type=text]:hover {
    color: #3F3F3F;
    transition: all 0.3s;
}
.box_search input[type=text]:focus {
    color: #3F3F3F;
    transition: all 0.3s;
}
.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}
.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}
.me_tp_features a {
    margin: 0 0;
}
.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}
.me_tp_features a:hover i{color:#FE8113;}
.me_tp_features a.tp_btn_cart span {
    display: none;
}
.me_tp_features a.tp_btn_notice span{
    display: none;
}










/* 選項 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 20px;
    color: #43453D;
    display: flex;
    position: relative;
    font-family: 'Noto Sans TC';
    font-size: 17px;
    line-height: 20px;
    height: auto;
    margin: 0px 5px;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: row;
    flex-wrap: nowrap;
}
.stellarnav > ul > li > a:hover {
    padding-left: 25px;
    transition: all 0.3s;
    color: #FE8113;
}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav > ul > li > a b {
    display: inline;
    line-height: 15px;
    height: 20px;
}
.stellarnav > ul > li > a b:nth-child(1) {margin-right: 20px;font-weight: 500;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 14px;
    color: #43453D;
    word-break: keep-all;
}
.stellarnav li {
    opacity: 1;
    width: 100%;
}
.stellarnav li::before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    margin: 25px 0;
    background-color: #45413d21;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    color: #FE8113;
}











/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {
    display: none;
}
.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}
.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}
.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}
.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}
.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}
.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
    
}




/* 字 動畫 */



.stellarnav > ul > li{
    opacity: 0;
    animation: up 1.5s forwards;
    animation-delay: 0.2s;
}


/* .stellarnav > ul > li:nth-child(2) {
    animation: up 1s forwards;
    animation-delay: 0.5s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: up 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: up 1s forwards;
    animation-delay: 1.5s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: up 1s forwards;
    animation-delay: 2s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: up 1s forwards;
    animation-delay: 2.5s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: up 1s forwards;
    animation-delay: 3s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: up 1s forwards;
    animation-delay: 3.5s;
} */

/* 下拉 */
.stellarnav ul ul {
    display: none  !important;
    top: auto;
    width: 160px;
    position: relative;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #fff;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/





@keyframes show-logo {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes show-line {
    0%{
        right: 100%;
        opacity: 0;
    }
    100%{
        right: 0;
        opacity: 1;
    }
}






.nav-header {
    position: fixed;
    z-index: 123;
    top: 57px;
    left: 4%;
    opacity: 0;
}



.footer_logo img {    width: 100%;    margin-top:;}
.footer_logo {
    vertical-align: top;
    width: 250px;
    margin: 0;
}
.nav-brand {
    display: inline-block;
    width: 200px;
}
.footer_info ul {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 310px);
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .nav-brand {
    }
    .nav-header {
    }
    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }
    .header_area.sticky a.nav-brand::before {  
        width: 20%;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s;
    }
    .stellarnav > ul > li > a {
        margin: 0 15px;
    }
    .stellarnav.desktop.active > ul {
        width: 40%;
    }
    
}











@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%;}
.nav-brand {
    display: inline-block;
    width: 130px;
}
.header_area.sticky a.nav-brand::before {
    width: 160%;
}
.header_area a.nav-brand::before{
    display: none;
}
.header_area.sticky a.nav-brand::before{
    display: none;
}
.nav-header {
    z-index: 0;
    top: -13px;
}
.footer_logo {
    display: block;
    margin: 0 auto;
}
.stellarnav li::before{
    display: none;
}
.stellarnav.mobile > ul > li > a {
    padding: 20px 10px;
}
.stellarnav > ul > li > a:hover {
    padding-left: 10px;
}
.stellarnav.mobile.left > ul {
    border: 0;
}
.stellarnav ul .has-sub.open ul{
    display: block !important;
    background: transparent;
}
.stellarnav.mobile li a {
    border-bottom: 0;
    padding: 10px 20px 10px 20px;
    color: #43453D;
}
.stellarnav li li {
    border: 0;
}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #FE8113;
}
}


@keyframes up {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}




/*開場NAV */
.nav-header {
    opacity: 1;
    top: 37px;
}
.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 2.6s;
}

@keyframes banner-nav-logo {
    0%{
        top: 87px;
        opacity: 0;
    }
    100%{
        top: 27px;
        opacity: 1;
    }
}


.pageIndex .stellarnav.desktop .menu-toggle,.pageIndex .header_area .me_tp_features{
    opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 2.6s;
}
.stellarnav.desktop .menu-toggle,.header_area .me_tp_features{
    opacity: 1;
    top: 57px;
}



@keyframes banner-navbar {
    0%{
        top: 97px;
        opacity: 0;
    }
    100%{
        top: 27px;
        opacity: 1;
    }
}
















/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer{
    border-top: none !important;
    padding: 50px 0 0;
    z-index: 10;
    height: auto;
    z-index: 0;
    opacity: 1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background: #161616;
}
.pageIndex .footer{
    opacity: 0;
    animation: footer-text forwards 1s;
    animation-delay: 2.6s;
}
.footer_info li {
    padding: 20px;
}

.footer_menu {border-bottom: none !important;height: 42px;}
.copy {
    background: transparent;
    color: #43453D;
    border: none;
    margin-top: 30px;
}
.copy a{    color: #43453D;}
.footer_menu a {    transition: all 0.3s;}
.box_link{
    display: none;
}
.footer_info li p {color: #ffffff;}
.footer_info li p a{
    color: #ffffff;
}
.footer_menu a {
    display: inline-block;
    padding: 10px 16px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    border-radius: 4px;
    color: #ffffff;
    background: #2a2a2a;
    /* border-bottom: 1px #000 solid; */
}
.footer_menu a:hover {
    background: #FE8113;
    color: #000;
    box-shadow: 0 0 8px #FE8113;
    padding: 12px 18px;
}

.footer_info {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

p.mail{
    display: none;
}

.info_fix_links a.info_fix_default.info_fix_mail{
    display: none;
}




/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 110px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    transition: all 0.7s;
    animation: footer-text forwards 1s;
    animation-delay: 2.6s;
}
.info_fix:hover{
    width: auto;
    right: 0;
    transition: all 0.7s;
}
.info_fix_links {
    display: flex !important;
    background: #565656e8;
    width: 50px;
    padding-bottom: 0;
    border: 1px #FE8113 solid;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    justify-content: flex-end;
    flex-direction: column;
}
.info_fix>span{
    display: none;
}
.info_fix_links a {
    background: transparent;
}
.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 0;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
}
.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}
.info_fix_links a span::before {
    background-size: contain;
}




.info_fix_default.info_fix_google{
    color: #fff;
    background-color: #FF8C31;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 140px;
    align-items: center;
}
.info_fix_default.info_fix_google:hover{
    background-color: #D87775;
}
.info_fix_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}




#to_top {
    color: #fff;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i{
    transform: translate(0,-5px);
    transition: all 0.7s;
}

#to_top i:before, #to_top i:after {
    background: #fff;
}



@keyframes footer-text {
    0%{
        opacity: 0;
        z-index: 0;
    }
    100%{
        opacity: 1;
        z-index: 1;
    }
    
}




@media screen and (max-width: 768px) {
    .footer_info ul {
        width: 100%;
        text-align: center;
    }
    .info_fix {
    }
    .footer_menu a {
        width: 39%;
        margin: 10px;
    }
}



@media screen and (max-width: 768px) {
    
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: #fafbf6;
    width: 100%;
    padding: 0;
    height: 0;
    padding-bottom: 30%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner::before {
    content: "";
    display: block;
    width: 500px;
    height: 140px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner h5 {
    display: none;
}
.banner.banA::before {
    background-image: url(https://pic03.eapple.com.tw/quickright/banner-04.png );
}
.banner.banB {
    display: none;
}
.banner.banC::before{
    background-image: url(https://pic03.eapple.com.tw/quickright/banner-07.png );
}
.banner.banD {}
.banner.banE::before{
    background-image: url(https://pic03.eapple.com.tw/quickright/banner-05.png );
}
.banner.banF h5::before{
}
.banner.banblog::before{
    background-image: url(https://pic03.eapple.com.tw/quickright/banner-06.png );

}



@keyframes banner-line {
    0%{
        width: 0;
        opacity: 0;
    }
    75%{
        width: 300px;
        opacity: .5;
    }
    100%{
        width: 300px;
        opacity: 1;

    }
}

@keyframes banner-text {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding-bottom: 50%;
    }
    
}

@media screen and (max-width: 500px) {
    .banner::before {
        width: 250px;
        height: 100px;
        top: 80%;
    }
    .banner {
        padding-bottom: 70%;
    }
    
}



/* 分頁 */
.other_select_page .promotion_title{
    display: none;
}
.other_select_page .other_promotion{
    display: none;
}

/*其他分頁*/
/*其他分頁*/
.promotion_title h2 {
    display: block;
    border-bottom: none;
    text-align: left;
    font-size: 33px;
    color: #FE8113;
}
.promotion_title {
    padding: 13px 0;
    display: block;
}
.promotion_title span {
    border: none;
}
.promotion_title em {
    border: none;
    padding: 2px 7px;
    margin: 0 2px 2px 0;
}
.edit * {
    word-break: break-all;
    color: #6D6D6D;
}

/* 底下分類 */
.other_promotion li {
    font-size: 13px;
    line-height: 20px;
    color: #666;
    display: inline-block;
    vertical-align: top;
    width: 33%;
    margin: 2%;
}
.other_promotion li a {
    display: block;
    border: none;
    padding: 30px 20px;
    width: 100%;
    margin: 0;
    position: relative;
    background: transparent;
    transition: all 0.3s;
}
.other_promotion li a:hover {
    background: #0000000d;
    transition: all 0.3s;
}
.other_promotion li a:before{
    display: none;
}
.other_promotion li a:after{
    display: none;
}
.other_promotion .pmtTime span {
    float: left;
    font-size: 13px;
    margin-left: 0;
}

.promotion_title h2 span{
    display: none;
}
.promotion_title * {
    vertical-align: middle;
    color: #6D6D6D;
}

.pmtTitle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #C5C5C5;
    flex-direction: column;
}
.other_promotion .pmtTitle h3 {
    font-size: 17px;
    color: #43453d;
    margin: 10px 0 0 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    font-weight: bold;
}




@media screen and (max-width: 768px) {
    .other_promotion li {
        width: 45%;
    }
    
}
@media screen and (max-width: 768px) {
    .other_promotion li {
        width: 45%;
    }
    
}










/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 0;
    padding: 150px 0;
}





/* 選單 */
.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    width: 10%;
    margin-right: 10%;
}
.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: fit-content;
    text-align: left;
    border-left: 1px solid #43453d;
    transition: all 0.5s;
}
.product-layer-two li::before {
    content: "";
    display: inline-block;
    background-color: #FE8113;
    width: 1px;
    height: 0;
    position: absolute;
    left: 0;
    bottom:  0;
    transition: all 0.5s;
}
.product-layer-two li:hover:before {
    bottom:  inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;
}
.product-layer-two li a {
    color: #43453d;
    border: 0;
    padding: 15px 20px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
}
.product-layer-two li:hover > a { 
    background: transparent;    
    color: #FE8113;
    padding-left: 30px;
}
.show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.page {
    color: #43453d;
    width: 100%;
}
.product-layer-two li.active > a {
    background: transparent;
    color: #FE8113;
    border: 0;
    border-left: 2px #FE8113 solid;
    font-weight: normal;
}

/* 內容 */
.products-list .more {
    border: 1px solid #43453d !important;
    color: #43453d;
    width: 90%;
    margin: 0 auto;
}
.products-list .item a:hover .more {    background: #FE8113;    border-color: #43453d;	color: #ffffff;}
.products-list {
    width: 80%;
    padding: 20px 20px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: none;
}
.products-list .item {
    width: 32%;
    display: inline-block;
    vertical-align: top;
    padding: 2%;
    margin: 0.05%;
    background: #070707;
    border-radius: 0;
    transition: all 0.5s;
}
.products-list .item:hover {
    background: #0c0c0c;
    transform: scale(1.05);
    transition: all 0.5s;

}

.products-list .item a img {    
    transition: all 0.5s;

}
.products-list .item a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #43453d;
    height: auto;
    padding: 5%;
}
.products-list .name::before {
    content: "";
    text-align: center;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #43453d;
    margin: 10px 0;
}
.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}
.products-list .item a:hover .pic{
    transition: all 0.5s;
}





/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 50px 0px;
}
.lastPage {    background: #c1b09c;}
.nextaction {    background-color: #c1b09c;}
.lastaction {    color: #fff;    background-color: #c1b09c;}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}
.product_pic #bx-pager a {
    border: none;
}
.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 10%;
    margin-right: 10%;
    position: absolute;
    left: 100px;
}
.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebarBtn {
    padding: 5% 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}
.sidebarBtn h2 {
    color: #FE8113;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    font-size: 24px;
}
.sidebarBtn * {
    color: #43453d;
}
.product_info li span {
    color: #43453d;
}
#bx-pager h6{
    display: none;
}
ul.prod li h3.prod-thumb {
    background: transparent;
    color: #FE8113;
    padding: 0;
    text-align: left;
}
ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FE8113;
    margin: 10px 0;
}
ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}
ul.prod li .prod-panel {
    color: #43453d;
    text-align: left;
}
ul.prod li {
    margin-bottom: 40px;
    color: #43453d;
}
.toShare {
    border-top: 1px solid #FE8113;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}
ul.prod li span{
    color: #43453d;
}
.qaform .breakF {
    border: 1px #43453d solid;
    background: #00000061;
    color: #fff;
}
.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}
.productBtn{
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #43453d solid !important;
    color: #43453d;
    transition: all 0.5s;
}
.productBtn:hover{
    background-color: #00000071;
    transition: all 0.5s;
}

/*  */

.prod_related {
    background: #0000001c;
    padding: 25px 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #FE8113;
}
.related_list li a {
    display: block;
    padding: 5%;
    background: #070707;
}
.related_list li a p {
    font-size: 15px;
    color: #43453d;
    margin: 10px 0;
}
.related_list li{
    transition: all 0.5s;
}
.related_list li:hover{
    transform: scale(1.05);
    transition: all 0.5s;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_main_header_area_back {    background: #02642F;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: transparent !important;}
.share_page .edit {text-align: justify;line-height: 180%;margin: 80px 0;}
.subbox_item a:before , .subbox_item a:after {    transition: 0.3s;}
.blog_le .accordion > li {
    width: 100%;
    position: relative;
    text-align: center;
    transition: all 0.3s;
}
.blog_box_edit {
    line-height: 180%;
    text-align: justify;
    word-break: break-word;
}
h4.blog_category_title {    
    text-align: justify;
    color: #fff;
    display: none;
}
.link a {    width: 100%;    display: block;    padding: 15px 10px;}
.accordion li .link {    padding: 0;}
.blog_page .main_part {
    width: 100%;
    max-width: 60%;
    margin: auto;
    padding: 0px;
}
.clearfix:before, .clearfix:after {
    display: none;
}




/* 選單 */
.blog_ri {
    width: 100%;
    padding: 0;
    min-height: 75vh;
}
.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: column;
}
.blog_le {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    /* padding: 0; */
}
h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #FE8113;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}
.blog_search {
    width: 90%;
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
}
.blog_search form{
    width: 20%;
    position: relative;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: none;
    overflow: visible;
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    border-top: 1px #43453d solid;
}

.accordion li .link a {
    font-size: 16px;
    color: #43453d;
    font-weight: 400;
    padding: 5px 10px;
    transition: all 0.3s;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: #FE8113 !important;
    transition: all 0.3s;
}
.accordion li::before{
    content: "";
    display: block;
    background-color: #FE8113;
    height: 2px;
    width: 0%;
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s;
}
.accordion li:hover:before,.blog_le .accordion > li.on_this_category::before {
    width: 95%;
    transition: all 0.5s;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #565656 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}
.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}
.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}
.blog_search input[type=search]:focus {
    color: #ccc;
}








/* 內容 */
.subbox_item a:after {
    display: none;
}

.subbox_item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 50px 0;
    background-color: #FE8113;
}


.subbox_item a:before {
    z-index: 19;
    bottom: 30px;
    right: 30px;
    color: #43453d;
}
.blog_list_le {
    width: 40%;
    height: 0;
    padding-bottom: 40%;
    overflow: hidden;
    position: relative;
}
.i_blog_le img, .blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.blog_list_ri {
    display: inline-block;
    vertical-align: top;
    padding: 3px;
    width: 53%;
}

.blog_list_ri h5 {
    font-weight: bold;
    font-size: 30px;
    color: #43453d;
    margin-bottom: 10px;
}
.blog_list_ri em {
    display: none;
}
.blog_list_ri p {
    font-size: 16px;
    color: #545454;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 30px;
}






/*文章分享變1排3個*/
.blog_page .main_part {    max-width: 80%;}
.blog_subbox {    display: flex;    flex-wrap: wrap;    justify-content: flex-start;}
.subbox_item {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
@media screen and (max-width: 600px) {.subbox_item {    width: 100%;}}
/**/


@media screen and (max-width: 768px) {
    .blog_list_ri h5 {
        font-size: 20px;
    }
    .blog_list_le {
        width: 42%;
        height: 0;
        padding-bottom: 40%;
        overflow: hidden;
        position: relative;
    }
    .blog_search form {
        width: 40%;
    }
    .blog_list_ri p {
        font-size: 14px;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part , .album_class_page .main_part , .album_info_page .main_part {    max-width: 1400px;}
.show-list .item:hover .show_name {color: #FE8113;}
.show-list .show_pic {    height: 30vh;    max-height: 290px;    padding-bottom: 0;}
.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 30vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    border-radius: 50px;
    transition: all 0.3s;
}

.show-list a:hover .show_pic img{
    transform: scale(1.1);
    transition: all 0.3s;
}
/*次分類頁面*/
.other_album_choice li {    background: #c1b09c;}
.other_subalbum li p {
    line-height: 220%;
    color: #43453d;
}
.other_subalbum li a div {
    height: 80vh;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}
.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    border-radius: 20px;
}
.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50% , -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    border-radius: 20px;
}
.other_subalbum li a:hover div:after {    transform: translate(-50% , -50%) scale(1);    opacity: 1;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part{
    max-width: 80%;
    padding: 50px 0;
}
.show-list .show_pic {
    height: 80vh;
    max-height: 590px;
    padding-bottom: 0;
    overflow: hidden;
    border-radius: 50px;
}
.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}
.show_content {
    margin: auto;
}
.album_page .main_part{
}

.album_page .main_part .show-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.show-list .item {
    width: 33.1%;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
}


.album_fixed_title {
    display: none;
}


/*  */
.show-list a .show_name {
    font-size: 20px;
    color: #43453d;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 0;
    display: block;
    height: auto;
    opacity: 1;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
}
.show-list .item:hover .show_name {
    color: #FE8113;
}
.subalbum-menu h2 {
    color: #c1b09c;
}
.show-list .item .overlay {
    display: none;
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}

.show-list .item:hover .overlay {
    display: none;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    width: 100%;
    height: 100%;
}





@media screen and (max-width: 768px) {
    .show-list .item {
        width: 100%;
    }
    
}
/*  */


@media screen and (max-width: 600px) {
/*照片頁*/
.pic-list .item {    width: 96%;    margin: 10px 2%;}
}


.edit, .show_content {
    width: 100%;
    padding: 0;
    margin: auto;
}
.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}
.pic-list .item {
    width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}

.pic-list .show_pic {
    height: auto;
    padding: 0;
}
.pic-list .item img {
    max-width: 100%;
}

.other_subalbum li {
    display: inline-block;
    background: transparent;
    width: calc(100% / 3 - 5%);
    margin: 10px 2%;
    border: none !important;
    color: #fff;
}


@media screen and (max-width: 768px) {
    .other_subalbum li {
        width: calc(100% / 2 - 3%);
        margin: 1%;
    }
    .other_subalbum li a img {
        border-radius: 0;
    }
    .other_subalbum li a div {
        height: 50vh;
        max-height: 300px;
    }
}

@media screen and (max-width: 500px) {
    .other_subalbum li a div {
        height: 50vh;
        max-height: 200px;
    }
    
}

/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {border-bottom: 2px solid #FE8113;padding: 10px 0;}
.promotion_title {}



@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
.nav-menu {    margin: 0;}
.nav-menu>li:not(.tp_links) {    padding-right: 0;}
.nav-dropdown>li {    text-align: left;}
.nav-dropdown>li>a {    width: calc(100% - 45px);}

/*手機版LOGO設定*/
.footer_logo { margin-left: unset; margin: auto; text-align: center; }

}

@media screen and (max-width: 600px) {

/*手機板大圖*/
/*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}




.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    padding-bottom: 200px;
    background-image: url(https://pic03.eapple.com.tw/quickright/bg-05.png);
    background-repeat: no-repeat;
}
.contact_content {
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 60%;
}
.list_before.info li {
    padding-left: 0;
    color: #43453d;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 25px 0;
}
.contact_form li .form__label {
    color: #43453d;
    margin-left: 0;
    width: auto;
    padding: 10px 0;
}

.blank_letter {
    padding-top: 30px;
    font-size: 24px;
    color: #43453d;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.contact_content form {
    display: flex;
    justify-content: space-between;
}
.contact_content .information_left {
    width: 35%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}
.contact_content .information_right {
    width: 50%;
    padding-left: 30px;
    padding: 0;
}

.contact_le_map {
    display: none;
}

.blank_letter.i {
}

.list_before {
    margin-top: 0;
    margin-bottom: 0px;
}

.contact_form li {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.contact_form li input.noborder {
    border: 1px #43453d solid;
    background: transparent;
}
.contact_form li textarea.noborder {
    border: 1px #43453d solid;
    background: transparent;
}
.contact_form li:nth-last-of-type(2){
    width: 20%;
}

.contact_form li.last{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.contact_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.contact_form li.last blockquote {
    color: #43453d;
    background: transparent;
    transition: all 0.5s;
}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: initial;
    color: #43453d;
    transition: all 0.5s;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 3px 10px;
    text-align: center;
    border: 1px #FE8113 solid;
    width: 140px;
    background: transparent;
}
.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {
    background: #0000000d;
}
.contact_form li.last blockquote{
    margin-right: 10px;
}
.contact_form li.last cite {
    background: transparent;
    color: #43453d;
}

.list_before.info li::before{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    position: relative;
    margin-right: 20px;
}


@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .contact_content .information_left {
        width: 100%;
    }
    .list_before.info {
        margin-right: 0;
    }
    .contact_content .information_right {
        width: 100%;
    }
}