@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');

body {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 400;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}


::-moz-selection {
    background-color: #251b1a;
    color: #fff;
}

::selection {
    background-color: #251b1a;
    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: #251b1a;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


/* 線條 */
.swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/szuchia/bg-06.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 1;
    animation: banner-left-right cubic-bezier(.165, .84, .44, 1) 6s forwards;
}



/* 大標 */
.swiper-wrapper .swiper-slide::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/szuchia/bg-03.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: auto 100%;
    z-index: 1;
    opacity: 0;
    transform-origin: 10% 80%;
    animation: banner-down-up-2 cubic-bezier(0.73, 0.08, 0.47, 0.98) forwards 4.5s;
    animation-delay: .3s;
}

@keyframes banner-down-up-2 {
    0% {
        opacity: 0;

        transform: scale(1, 0);

    }

    70% {
        opacity: 0;
    }


    100% {
        opacity: 1;

        transform: scale(1, 1);

    }
}




/* 小字 */
.swiper-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/szuchia/bg-07.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    transform-origin: 10% 75%;
    animation: banner-down-up cubic-bezier(.165, .84, .44, 1) 2s forwards;
    animation-delay: 4.8s;
}

@keyframes banner-down-up {
    0% {
        opacity: 0;
        transform: scale(1, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}







@keyframes banner-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes banner-show-off {
    0% {
        opacity: 1;
        background-color: #fff;
    }

    50% {
        opacity: 1;
        background-color: #fff;
    }

    75% {
        opacity: 1;
        background-color: transparent;
    }

    100% {
        opacity: 0;
        background-color: transparent;
    }
}

@keyframes banner-left-right {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 40%;
    }
}

@keyframes banner-left-right-768 {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes banner-left-right-500 {
    0% {
        opacity: 0;
        width: 0;
        background-position: -500px;

    }

    100% {
        opacity: 1;
        width: 100%;
        background-position: left;

    }
}

@media screen and (min-width: 2000px) {
    .swiper-banner .swiper-slide img{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .swiper-banner .swiper-slide {
        height: 100vh;
    }

    .swiper-banner .swiper-slide img {
        height: 100%;
        object-fit: cover;
    }

    .swiper-wrapper .swiper-slide::before {
        animation: banner-left-right-768 cubic-bezier(.165, .84, .44, 1) 10s forwards;
    }

    .swiper-wrapper .swiper-slide::before {
        background-position: -120px;
    }

    .swiper-wrapper .swiper-slide::after {
        background-position: -120px;
    }

    .swiper-wrapper::before {
        background-position: -120px;

    }



}

@media screen and (max-width: 500px) {
    .swiper-banner .swiper-slide {
        height: 80vh;
    }

    .swiper-wrapper .swiper-slide::before {
        background-position: left;
        background-size: 210%;
        animation: banner-left-right-500 cubic-bezier(.165, .84, .44, 1) 4s forwards;

    }

    .swiper-wrapper .swiper-slide::after {
        background-position: left;
        background-size: 210%;
    }

    .swiper-wrapper::before {
        background-position: left;
        background-size: 210%;

    }
}



/* 底下圈圈 */


.swiper-pagination-clickable .swiper-pagination-bullet {
    position: relative;
    border-radius: 2.5px;
    height: 5px;
    width: 50px;
    z-index: 0;
}

.swiper-pagination-bullet {
    background: #ffffff73;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 0%;
    height: 5px;
    border-radius: 2.5px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    width: 100%;
    transition: all 0.3s;
}



.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1):after {
    left: auto;
    right: 0;
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


#page {}




/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #ADA17E;
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    z-index: 0;
    overflow: visible;
}

.bannerindex {
    position: static;
    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 {
    background: #fff;
}

.contact_page #content {
    background: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/

.header_area {
    padding: 0;
}

.header_area .main_header_area {
    position: fixed;
    background: #fff;
    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: 40px;
    right: 210px;
    margin-bottom: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

.header_area.sticky .me_tp_features {
    top: 20px;
    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: 83px;
    right: 3%;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    top: 57px;
    transition: all 0.5s;
}







/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;

}

.stellarnav .menu-toggle:after {
    display: none;
}

.stellarnav .menu-toggle span.bars {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 40px;
    height: 2px;
    border-radius: 6px;
    background: #251b1a;
    margin: 0 auto 6px;
    left: 0;
    transition: 0.5s;
}

.pageIndex .stellarnav.desktop .menu-toggle span.bars span {
    background: #fff;
}

.header_area.sticky .stellarnav.desktop .menu-toggle span.bars span {
    background: #251b1a;
    transition: 0.5s;
}

.header_area .stellarnav.desktop.active .menu-toggle span.bars span {
    background: #fff;
}


.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    width: 20px;
    margin: 0;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    left: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    display: none;
    opacity: 1;
    transition: all 1s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    left: 0;
    width: 40px;
    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;
    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) {
    left: 0;
    transition: all 1s;
}


.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    width: 20px;
    margin: 0;
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all 1s;
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    width: 40px;
    transition: all 0.3s;
}










/* 未開啟 */

.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-end;
    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: #00000085;
    backdrop-filter: blur(6px);
    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);
}






.nav-header {
    position: fixed;
    z-index: 123;
    top: 57px;
    left: 5%;
    opacity: 0;
}





@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.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: #fff;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin: 15px 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;
}

.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;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 12px;
    color: #fff;
    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: #43453D;
    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;
}











/* 選單線 延遲 */


.stellarnav li:nth-child(3) {
    animation-delay: 0.3s;
}

.stellarnav li:nth-child(4) {
    animation-delay: 0.4s;
}

.stellarnav li:nth-child(5) {
    animation-delay: 0.5s;
}

.stellarnav li:nth-child(6) {
    animation-delay: 0.6s;
}

.stellarnav li:nth-child(7) {
    animation-delay: 0.7s;
}

.stellarnav li:nth-child(8) {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}




/* 字 動畫 */



.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;
} */

/* 下拉 */


@media screen and (min-width: 768px) {
    .stellarnav ul ul {
        display: none !important;
    }
}







/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/





@keyframes show-logo {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes show-line {
    0% {
        right: 100%;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}




.footer_logo img {
    width: 100%;
}

.footer_logo {
    vertical-align: top;
    width: 270px;
    margin: 0;
    display: none;
}

.nav-brand {
    display: inline-block;
    width: 80px;
}

.footer_info ul {
    display: flex;
    vertical-align: top;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    flex-direction: row-reverse;
    align-items: center;
}

.nav-brand img {
    position: relative;
    top: 0;
    max-width: 100%;
    opacity: 0;
    transition: all 0.5s;
}

.pageIndex .nav-brand img {
    top: 0px;
    opacity: 1;
}





.pageIndex .nav-brand img {}

.header_area.sticky .nav-brand img {
    top: 50px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s;
}

.nav-brand::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/szuchia/logo.png);
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    opacity: 1;
    position: absolute;
    top: 0%;
    left: 0;
    transition: all 0.5s;
}

.pageIndex .nav-brand::before {
    opacity: 0;
    top: -130%;
}


.sticky .nav-brand::before {
    opacity: 1;
    top: 0;
    transition: all 0.5s;
}


@media screen and (max-width: 1024px) {
    .nav-brand {
        display: block;
        width: 100px;
    }

    .nav-header {}

    .nav-brand img {
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }

    .header_area.sticky a.nav-brand::before {
        width: 100%;
        transition: all 0.3s;
    }

    .stellarnav>ul>li>a {}

    .nav-header {
        opacity: 1;
        top: 37px;
        z-index: -5;
    }

    .stellarnav.desktop.active>ul {
        padding: 5% 1%;
    }

}











@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: 50px;
        margin: 0;
    }

    .header_area.sticky a.nav-brand::before {
        width: 100%;
    }


.header_area.sticky {
    background: #fff;
    height: 80px;
}

    .nav-header {
        z-index: 0;
        top: -13px;
        left: 5%;
        width: fit-content;
    }

    .header_area .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 20px;
    }

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 17px;
        transition: all 0.5s;
    }

    .pageIndex .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.5s;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #43453D;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #43453D;
        transition: all 0.5s;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border: none;
        max-width: 100%;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #43453D;
        color: #fff;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: -2px;
        margin: 0;
    }

    .stellarnav.mobile ul {
        background: #fff;
    }

    .stellarnav.mobile li.open {
        background: #fff;
        padding: 3px;
    }

    .stellarnav li a {
        padding: 15px 10px;
        color: #43453D;
    }

    .stellarnav li li {
        display: block;
        margin-bottom: 0;
        border: 0;
    }


    .header_area.sticky .nav-brand img {}
    .stellarnav.mobile>ul>li> {
        margin: 80px 10px;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
        color: #555;
        margin: 0;
    }

    .stellarnav.mobile>ul>li>a:hover {
        padding-left: 10px;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 0;
        margin: 30px 0px;
    }
}


@keyframes up {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/*開場NAV */
.nav-header {
    opacity: 1;
    top: 17px;
}

.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
    animation-delay: 4.8s;
}

@keyframes banner-nav-logo {
    0% {
        top: 87px;
        opacity: 0;
    }

    100% {
        top: 20px;
        opacity: 1;
    }
}


.pageIndex .stellarnav.desktop .menu-toggle {
    opacity: 0;
    animation: banner-navbar 1s forwards;
    animation-delay: 4.8s;
}

.pageIndex .sticky .stellarnav.desktop .menu-toggle {
    opacity: 1;
    top: 27px;

}


.pageIndex .stellarnav.desktop.active .menu-toggle {}




.stellarnav.desktop .menu-toggle {
    opacity: 1;
    top: 57px;
}



@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }

    100% {
        top: 27px;
        opacity: 1;
    }
}




.other_promotion li {
    background-color: transparent;
}

.other_promotion li a {
    display: block;
    border: 0;
    padding: 30px 10px;
    margin: 0;
    position: relative;
    height: 100%;
    background-color: #dddddd;
    transition: all 0.5s;
}

.other_promotion li a:hover {
    background: #747474;
    color: #fff;
    transition: all 0.5s;
}

.other_promotion li a .pmtTitle h3 {
    transition: all 0.5s;
}

.other_promotion li a:hover .pmtTitle h3 {
    color: #fff;
    transition: all 0.5s;
}




.other_promotion .pmtTime cite {
    float: left;
    font-size: 12px;
    font-style: normal;
}

.other_promotion li a:before,
.other_promotion li a::after {
    display: none;
}













/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 0;
    height: auto;
    opacity: 1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background: #333;
    z-index: 1;
}

.pageIndex .footer {
    opacity: 0;
    animation: footer-text forwards 1s;
    animation-delay: 2.6s;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
}

.copy {
    background: transparent;
    color: #fff;
    border: none;
    margin-top: 0;
    border-top: 1px #ffffff54 solid;
    padding: 10px 0;
}

.copy a {
    color: #fff;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a:hover {
    background: #02642F;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: auto;
    color: #fff;
    width: 50%;
}

.footer_info li p a {
    color: #fff;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
}

.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.footer_info {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0;
    justify-content: center;
}


.center {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
}

.footer_info li:nth-child(2) {
    margin-right: 5%;
}

.footer_info li:nth-child(2)::before {
    /* content: ""; */
    display: block;
    width: 100%;
    height: 1px;
    background-color: #454442;
}

.footer_info li p.tel:before {}

.footer_info li p.add {}

.footer_info li p.add2 {}

.footer_info li p.add:before {}

.footer_info li p.add2:before {}

.footer_info li p.add::after {
    display: block;
}

.footer_info li p.add2::after {
    display: block;
}


/* 浮動 */

.info_fix {
    width: auto;
    box-sizing: border-box;
    position: fixed;
    bottom: 70px;
    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;
    z-index: 1;
    animation-delay: 2.6s;
}

.info_fix:hover {
    width: auto;
    right: 0;
    transition: all 0.7s;
}

.info_fix_links {
    display: flex !important;
    background: #565656bf;
    width: 50px;
    padding-bottom: 0;
    border: 1px #A29080 solid;
    /* border-radius: 0px 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_links p {
    text-align: center;
    font-weight: 900;
    writing-mode: vertical-rl;
}




#to_top {
    color: #454442;
    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: #454442;
}

.info_fix_tel span::before,
.info_fix_tel2 span::before {
    background-image: url(https://pic03.eapple.com.tw/szuchia/footer-05.png );
}


@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


@media screen and (max-width: 1440px) {
    .footer_info ul {
        flex-direction: column-reverse;
    }

    .footer_info li:nth-child(2) {
        margin-right: 0%;
        margin-bottom: 20px;
    }

    .footer_info li p {
        width: auto;
        min-width: 100%;
    }

    .footer_info li:nth-child(1) {
        justify-content: center;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer_info ul {
        width: 100%;
        text-align: center;
    }

    .footer_info li:nth-child(1) {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .footer_menu {
        border-bottom: none !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

}



@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: flex;
    background: transparent;
    flex-direction: column;
}

.banner::after {
    content: "";
    display: block;
    width: fit-content;
    color: #454442;
    font-size: 16px;
    margin: 0 auto;
    font-weight: 400;
}

.banner h5 {
    color: #454442;
    font-size: 50px;
    font-family: "Montserrat", serif;
    text-align: center;
    font-weight: 200;
    letter-spacing: 12px;
    text-indent: 12px;
    margin-bottom: 6px;
}

.banner.banA::after {
    content: "日常記錄";

}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banC::after {
    content: "預約諮詢";
}

.banner.banD {}

.banner.banE::after {
    content: "作品集";
}

.banner.banblog::after {
    content: "作品欣賞";
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
    border: 1px solid #ADA17E !important;
    color: #ADA17E;
}

.products-list a:hover .more {
    background: #ADA17E;
    border-color: #ADA17E;
    color: #ffffff;
}


/*外層*/
.product-layer-two li a {
    color: #ADA17E;
    border: 1px solid #ADA17E;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {
    background: #ADA17E;
    color: #fff;
}

.product-layer-two li.active>a {
    background: #ADA17E;
    color: #fff;
    font-weight: normal;
}

/*內層*/
.lastPage {
    background: #454442;
}

.nextaction {
    background-color: #ADA17E;
}

.lastaction {
    color: #fff;
    background-color: #ADA17E;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


.blog_page .show_content {
    margin: auto;
    padding: 0;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
}



.blog_back a.article_btn_back {
    background: #454442;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
    padding: 60px 0;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
    transition: 0.3s;
}

.blog_le .accordion>li {
    transition: all 0.3s;
}

.accordion li .link a {}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}



/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 100%;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subbox_item {
    width: calc(100% / 2 - 20px);
    padding: 0px;
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }
}

/**/



/* 左邊欄位 */
h5.blog_le_t {
    display: none;
}



.blog_le {
    width: 100%;
}

.blog_search {
    width: 200px;
    position: relative;
    margin-bottom: 10px;
    margin-left: auto;
    display: none;
}





.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_le .accordion {
    border: none;
    border-radius: 0;
    display: flex;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: #181818 !important;
    transition: all 0.3s;
}

.blog_ri {
    width: 100%;
    min-height: 75vh;
    padding: 0;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #181818 !important;
    transition: all 0.3s;
}

.submenu {
    display: none;
    background: transparent;
    font-size: 14px;
}

.submenu a {
    display: block;
    position: relative;
    background: transparent;
    color: #565656;
    padding: 12px 12px 12px 25px;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    word-break: break-all;
    line-height: 1.25;
    font-family: 'Klee One';
}

.submenu a:hover {
    background: #0000000d;
    color: #565656;
}

.submenu a:before {
    display: none;
}

.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion>li:hover.open {
    background-color: transparent !important;
}



/* 右邊欄位 */

.subbox_item a:after {
    display: none;
}

.subbox_item a {
    display: inline-block;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog_list_le {
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 16 * 9);
    overflow: hidden;
    position: relative;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.subbox_item a:hover .blog_list_le::after {
    opacity: 1;
    transition: all 0.5s;
}

.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%);
}

.blog_list_ri {
    display: flex;
    vertical-align: top;
    padding: 15px 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
    opacity: 0;
    text-align: center;
    transition: all 0.5s;
    align-items: center;
}

.subbox_item .blog_list_ri::before {
    content: "";
    display: block;
    position: relative;
    width: 0%;
    height: 1px;
    background-color: #3f3f3f33;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
}



.subbox_item:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.5s;
}

.subbox_item:hover .blog_list_ri::before {
    width: 100%;
    opacity: 1;
    transition: all 0.5s;
}




.blog_list_ri h5 {
    color: #454442;
    font-size: 24px;
    font-weight: 500;
}

.subbox_item a img {
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

.subbox_item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 1s cubic-bezier(0.68, 0.55, 0.38, 0.99);
}

h4.blog_category_title {
    text-align: justify;
    color: #454442;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 1200px;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    display: none;
}

.blog_list_ri p {
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    line-height: 150%;
}

.news_related {
    background: transparent;
    padding: 25px 15px;
}



.news_related h6 {
    max-width: 1200px;
    margin: 90px auto 60px;
    text-align: center;
}

.news_related h6 span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news_related h6 span::before {
    content: 'Related Articles';
    font-size: 40px;
    color: #454442;
    font-family: "Montserrat", serif;
    letter-spacing: 12px;
    text-indent: 12px;
    text-transform: uppercase;
    font-weight: 200;
}

.news_related h6 span::after {
    content: '相關文章';
    font-size: 16px;
    color: #454442;
    font-weight: 200;
    margin-top: 10px;
}

.news_related_list li a {
    display: block;
    padding: 0;
    background: transparent;
    height: 100%;
}

.news_related_list li a p {
    font-size: 16px;
    color: #454442;
}








@media screen and (max-width: 1024px) {
    .blog_page .main_part {
        max-width: 90%;
    }

    .subbox_item {
        width: 100%;
    }
}


@media screen and (max-width: 768px) {
    .subbox_item a {
        flex-direction: column;
    }

    .blog_page .main_part {
        max-width: 75%;
    }

    .blog_list_ri {
        display: flex;
        vertical-align: top;
        padding: 20px;
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        opacity: 1;
    }

    .subbox_item a:before {
        display: none;
    }

    .blog_list_le {
        padding-bottom: 70%;
    }

    .blog_in_page .main_part {
        max-width: 85%;
    }

    .blog_page .show_content {
        max-width: 100%;
    }

    .subbox_item {
        border-bottom: 0;
    }

    .blog_page .main_part {
        max-width: 100%;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 100%;
    padding: 50px 0;
}

.show-list .item:hover .show_name {
    color: #ADA17E;
}

.show-list .show_pic {
    height: 0;
    padding-bottom: 60%;
    bottom: 0;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    transition: all 0.3s;
}

.show-list .item:hover .show_pic img {
    transform: scale(1.3);
    transition: all 2s;
}

.show-list {
    display: flex;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.show-list .show_name {
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 0;
    overflow: hidden;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    font-weight: 400;
    z-index: 3;
    transform: translate(-50%, 0);
    transition: all 0.3s;
}

.show-list .item:hover .show_name {
    color: #fff;
    opacity: 1;
    transition: all 2s;
}


.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 2;
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}











/*次分類頁面*/
.other_album_choice li {
    background: transparent;
    border-radius: 0;
}

.other_album_choice li a {
    color: #454442;
}

.other_subalbum li p {
    line-height: 220%;
    text-align: center;
}

.other_subalbum li a div {
    height: 0;
    max-height: 100%;
    padding-bottom: 58%;
    overflow: hidden;
    position: relative;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    transition: all .4s;
}

.other_subalbum li a:hover img {
    transform: scale(1.3);
    transition: all 2s;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: all .4s;
}

.album_fixed_title {
    display: none;
}

/*照片頁*/
.pic-list .show_pic {
    height: 0;
    max-height: 100%;
    padding-bottom: 66%;
}

.pic-list .show_pic img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: auto;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.show-list .item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 20px 0;
}


.subalbum-menu {
    margin: 30px 0;
    padding: 0;
}

.subalbum-menu h2 {
    display: flex;
    position: relative;
    color: #454442;
    left: 0;
    flex-direction: row-reverse;
    align-items: center;
    width: fit-content;
    font-weight: 500;
    margin-left: 1%;
}

.block {
    background: #454442;
}

.other_subalbum {
    display: flex;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
}

.other_subalbum li {
    display: inline-block;
    background: #fff;
    width: calc(100% / 2 - 2%);
    margin: 10px 1%;
    border: none !important;
}

.page strong,
.page a {
    display: inline-block;
    min-width: 29px;
    height: 29px;
    text-align: center;
    line-height: 29px;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
    margin: 0 10px;
}

.album_fixed_title {
    display: none;
}

.other_subalbum li p {
    line-height: 220%;
    text-align: center;
    color: #1a1a1a;
}

@media screen and (max-width: 768px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }

    .album_page .show_content,
    .album_class_page .show_content {
        margin: auto;
        padding: 0;
        max-width: 90%;
    }
}

/*相本分類全版面 ( 限制最寬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: 0;
    color: #454442;
}

.promotion_title {
    border-bottom: 1px #00000052 solid;
    display: flex;
    padding-bottom: 20px;
    flex-direction: column-reverse;
}

.promotion_title em {
    border: 0;
}

.promotion_title span {
    border: 0px #ccc dashed;
}















@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .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;}
*/





/*聯絡我們MAP區改滿版編輯區*/
.contact_content {
    width: 100%;
    padding: 0;
}

.contact_page .main_part {
    max-width: 100%;
    padding: 0;
}

.contact_page .path {
    display: none;
}

.contact_content .information_left {
    width: 100%;
    padding: 0;
}

.contact_content .information_right {
    width: 90%;
    margin: 80px auto;
    padding: 0 10px;
    display: block;
}

.contact_content .information_left>h4.blank_letter {
    display: none;
}

.contact_content .list_before {
    display: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.contact_content .list_before>li:not(li:last-of-type) {
    display: none;
}

.contact_content .list_before.info>li:last-of-type {
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .contact_content .information_right {
        margin: 50px auto;
    }
}

/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {
    max-width: 80%;
}


.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
}

.blank_letter {
    font-family: '"Noto Sans TC", sans-serif';
    padding-top: 0;
    font-size: 24px;
    padding: 30px 0;
    color: #454442;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.3em;
}

.blank_letter::before {
    content: "FORM";
    display: inline-block;
    font-size: 30px;
    color: #454442;
    font-family: "Noto Sans TC", sans-serif;
    margin-right: 100px;
    letter-spacing: .3em;
    font-weight: 300;
}

.blank_letter::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: #454442;
    position: absolute;
    top: 50%;
    left: 135px;
    transform: translate(0, -50%);
}

.list_before.info li {
    padding-left: 32px;
    color: #454442;
}

.contact_form li .form__label {
    color: #454442;
    width: 130px;
    margin-left: -140px;
    text-align: left;
}

.contact_le_map a {
    background: #454442;
    color: #fff;
}

.contact_form li.last cite {
    background: #454442;
    color: #fff;
    width: 220px;
}

.contact_content .information_left {
    width: 100%;
    margin-bottom: 50px;
}

.contact_content .information_right {
    width: 100%;
    padding-left: 0px;
}

.contact_le_nomap {
    transition: all .5s;
}

.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: all .5s;
}


.contact_form li input.noborder {
    border: none;
    /* border-bottom: 1px #454442 solid; */
    background: #0000000a;
    color: #454442;
    transition: all 0.3s;
}

.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #4544423d;
    padding: 20px 0;
    padding-left: 130px;
}

/* .contact_form li:nth-child(9) .form__label{
    width: 130px;
    margin-left: -100px;
}
.contact_form li:nth-child(9){
} */
.contact_form li textarea.noborder {
    background: transparent;
    border: 1px #454442 solid;
    color: #454442;
    transition: all 0.3s;
}

.contact_content form {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.form__insert input {
    margin: 0 10px;
    color: #454442;
}


.contact_content {
    margin: auto;
    padding: 0px 5%;
}

.note {
    font-size: 13px;
    text-align: right;
    letter-spacing: 0;
}

.contact_form {
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #454442;
    max-width: 80%;
}

.contact_form li:nth-last-of-type(3) .form__label {
    padding-left: 10px;
}

@media screen and (max-width: 768px) {
    .contact_form li.last cite {
        width: 160px;
    }

    .contact_content .information_right {
        max-width: 100%;
        padding: 0;
    }

    .contact_form li.last {
        display: flex;
        justify-content: center;
    }

    .banner::before {
        width: 50%;
    }

    .contact_form {
        max-width: 100%;
    }
}