@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&display=swap');




* {
    font-family: "Cormorant Infant", "Noto Serif TC", serif;
    letter-spacing: 1px;
}

body {
    background: #f6f5f1;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/
.pageIndex .swiper-slide {
    position: relative;
}

/*因為偽元素，所以要加的*/
.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}

.pageIndex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/alanhuang/a01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 45%;
    left: 0%;
    width: 43%;
    height: 25% !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}


/*第二張大圖的偽元素*/


.pageIndex .swiper-slide:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/alanhuang/a02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 27%;
    left: -1%;
    width: 55%;
    height: 63% !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: slide-top 2s 0.3s both;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: slide-left 2s 0.3s both;
}

/*文字出現特效*/
@keyframes slide-left {
    0% {
        -webkit-transform: translateX(-5%);
        /* 一開始的位置 在X-100(最下方)*/
        transform: translateX(-5%);
        opacity: 0;
        /*透明度0*/
    }

    100% {
        -webkit-transform: translateX(0);
        /* 跑到最後終止的位置 在X-0(最上方)*/
        transform: translateX(0);
        opacity: 1;
        /*透明度顯示*/
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-20%);
        /* 一開始的位置 在Y-100(最下方)*/
        transform: translateY(-20%);
        opacity: 0;
        /*透明度0*/
    }

    100% {
        -webkit-transform: translateY(0);
        /* 跑到最後終止的位置 在Y-0(最上方)*/
        transform: translateY(0);
        opacity: 1;
        /*透明度顯示*/
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}

::-moz-selection {
    background-color: #BB9F87;
    color: #fff;
}

::selection {
    background-color: #BB9F87;
    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: #181818;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
    margin: 20px 0;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #3b3b3b;
}

.swiper-pagination {
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: #f6f5f1;
}

.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;
    }

    .swiper-slide img {}

    .swiper-container-android .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .swiper-slide:nth-child(1) {
        background-image: url(https://pic03.eapple.com.tw/alanhuang/phone01.jpg);
        background-position: center;
        width: 100%;
        height: 90vw;
        background-size: cover;
    }

    .swiper-slide:nth-child(2) {
        background-image: url(https://pic03.eapple.com.tw/alanhuang/phone02.jpg);
        background-position: center;
        width: 100%;
        height: 90vw;
        background-size: cover;
    }

    .swiper-banner .swiper-slide img {
        display: none;
    }
}






/* 底下圈圈 */


.swiper-pagination-clickable .swiper-pagination-bullet {
    position: relative;
    border-radius: 0;
    height: 5px;
    width: 50px;
    z-index: 0;
    margin: 0;
}

.swiper-pagination-bullet {
    background: #ffffffad;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    z-index: 1;
    border-radius: 2.5px;
    transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-of-type(1) {
    border-radius: 2.5px 0 0 2.5px;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-last-child(1) {
    border-radius: 0 2.5px 2.5px 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
    opacity: 1;
    height: 5px;
    transition: all 0.3s;
}



@media screen and (max-width: 768px) {
    .bannerindex::after {
        width: 20%;
    }

    .bannerindex::after {
        filter: brightness(0);
    }
}


@media screen and (max-width: 500px) {
    .bannerindex::after {
        width: 30%;
    }

    .swiper-slide img {}
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
body.pageIndex .header_area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3vw;
    background: linear-gradient(180deg, #4e4425 0%, #22233600 100%);
    mix-blend-mode: color-burn;
    transition: all 0.3s ease-in-out;
    opacity: 0.33;
}



/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 100%;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #3b3b3b;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #3b3b3b;
}

.nav-dropdown>li {
    text-align: center;
}

/*LOGO設定*/

@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%;
    }
}







/* 選單攔 */
.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
}

.header_area .main_header_area {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    position: relative;
}

.header_area.sticky .main_header_area {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    height: 50px;
}





/* LOGO */

.nav-header {
    position: relative;
    padding: 20px;
    height: 150px;
}

.sticky .nav-header {
    height: 130px;
}

.nav-brand {
    position: relative;
    width: 100px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .nav-brand {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: nav-logo-3 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
}

.sticky .nav-brand {
    width: 80px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.nav-brand img {
    max-width: 100%;
}

.pageIndex .nav-brand img {
    max-width: 100%;
}

.sticky .nav-brand img {
    max-width: 100%;
}

.nav-header::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    border-radius: 0 0 20px 0;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .nav-header::before {
    content: "";
    width: 0%;
    animation: nav-logo 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.6s;
}




.nav-header::after {
    content: "";
    display: block;
    border: 1px solid;
    border-color: transparent #494949 #494949 transparent;
    position: absolute;
    top: 0%;
    right: 0%;
    border-radius: 0 0 20px 0;
    width: 100.1%;
    height: 100.1%;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .nav-header::after {
    content: "";
    display: block;
    background-color: transparent;
    border: 1px solid;
    border-color: transparent #ffffff4d #ffffff4d transparent;
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 0;
    border-radius: 0 0 20px 0;
    backdrop-filter: none;
    animation: nav-logo-2 1.3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.8s;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);

}

.sticky .nav-header::after {
    background-color: transparent;
    border-color: transparent #ffffff4d #ffffff4d transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.nav-header:hover:before {
    background-color: #ffffff24;
    transition: all 0.5s;
}

.sticky .nav-header::before {
    background: #fbfaf63b;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .nav-header:hover:before {
    background: #ffffff00;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



@keyframes nav-logo {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes nav-logo-2 {
    0% {
        width: 0;
        height: 0;

    }

    50% {
        width: 1px;
        height: 100.1%;
    }

    100% {
        width: 100.1%;
        height: 100.1%;
    }
}

@keyframes nav-logo-3 {
    0% {
        opacity: 0;
        left: -100px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}



/* 選單 */

.me_tp_features {
    display: none;
}

.stellarnav {
    padding: 0.5%;
    height: fit-content;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    background-color: #ffffff26;
    border-color: transparent #ffffff4d #ffffff4d transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    backdrop-filter: blur(4px);
}

.pageIndex .stellarnav {}



.stellarnav::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #494949;
    position: absolute;
    bottom: 0;
    left: 0;
}

.pageIndex .stellarnav::before {
    background: #ffffff4d;
    width: 0%;
    animation: nav-line 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.7s;
}

.sticky .stellarnav::before {
    background: #ffffff4d;
}

.stellarnav>ul>li>a {
    padding: 0;
    color: #494949;
    font-size: 15px;
    letter-spacing: 3px;
    text-indent: 3px;
    font-family: "Montserrat", serif;
}

.pageIndex .stellarnav>ul>li>a {
    color: #fff;
}

.sticky .stellarnav>ul>li>a {
    color: #1a1b2f;

}

.pageIndex .sticky .stellarnav>ul>li>a {
    color: #ffffff;
}


.stellarnav li.has-sub>a:after {
    display: none;
}



.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.stellarnav>ul>li>a b:nth-of-type(1) {
    font-weight: 300 !important;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    font-weight: 400;
}


@keyframes nav-line {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }

}



/* 動畫 */
.stellarnav>ul>li {
    padding: 0;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .stellarnav>ul>li {
    padding: 10px 0;
    opacity: 0;
}

.sticky .stellarnav>ul>li {
    padding: 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




.pageIndex .stellarnav>ul>li:nth-of-type(1) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.8s;
}

.pageIndex .stellarnav>ul>li:nth-of-type(2) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2s;
}

.pageIndex .stellarnav>ul>li:nth-of-type(3) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}

.pageIndex .stellarnav>ul>li:nth-of-type(4) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.4s;
}

.pageIndex .stellarnav>ul>li:nth-of-type(5) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.6s;
}

.pageIndex .stellarnav>ul>li:nth-of-type(6) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.7s;
}

.pageIndex .stellarnav>ul>li:nth-of-type(7) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.8s;
}



@keyframes nav-down {
    0% {
        opacity: 0;
        transform: translate(0, -20px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}









/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #3b3b3b;
    ;
    color: #fff
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}





.stellarnav>ul>li>ul {
    text-align: center;
    background: #00000000;
    opacity: 0;
    top: 45px;
    pointer-events: none;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .stellarnav>ul>li>ul {
    top: 65px;
}

.stellarnav>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .stellarnav>ul>li>ul {
    top: 45px;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@media screen and (min-width: 768px) {
    .stellarnav>ul>li>ul>li>ul {
        display: block !important;
    }

    .stellarnav {
        padding: 0;
    }
}

.stellarnav>ul>li>ul>li>ul {
    text-align: center;
    background: #00000000;
    opacity: 0;
    pointer-events: none;
    transform-origin: 0 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    left: 101%;
}


.stellarnav li li {
    border: 0;
    margin-bottom: 1px;
}


.stellarnav.desktop li.has-sub li a {
    padding: 10px 15px;
    color: #fff;
    text-align: left;
    background-color: #9e8759b5;
    transition: all 0.5s;
    font-size: 14px;
}

.stellarnav.desktop li.has-sub li a:hover {
    background-color: #262626c9;
    color: #fff;
    transition: all 0.5s;
}

.stellarnav li.drop-left ul ul {
    left: 160px;
    right: 0;
}

.stellarnav>ul>li.drop-left>ul {
    left: 0;
}

@media screen and (max-width: 768px) {
    .nav-header {
        height: 110px;
    }

    .sticky .nav-header {
        height: 80px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #464646;
    }


    .stellarnav .menu-toggle:after {
        color: #464646;
    }

    .stellarnav.mobile {
        top: 0;
        left: auto;
        right: 0;
        background-color: #fff;
    }

    .pageIndex .stellarnav.mobile {
        background-color: #ffffffb5;
    }

    .sticky .stellarnav.mobile {
        background-color: #ffffffcf;
    }

    .stellarnav.mobile::after {
        content: "";
        display: block;
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #494949;
    }

    .pageIndex .stellarnav.mobile::after {
        background: #ffffff4d;
        height: 0;
        animation: line-down 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        position: relative;
        width: 100%;
        max-width: 100%;
        border-right: 0;
        background: #ffffff00;
        border-top: 0;
        height: 200vw;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #222;
        color: #fff;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        padding: 10px;
        border: 0;
        flex-direction: row-reverse;
        justify-content: flex-end;
        color: #222;
        align-items: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 6px;
        position: absolute;
        top: 8px;
    }

    .stellarnav a.dd-toggle .icon-plus {
        width: 7px;
        height: 7px;
        border: 7px #fff solid;
        border-color: #aca8a8 transparent transparent transparent;
    }

    .stellarnav a.dd-toggle .icon-plus:after,
    .stellarnav a.dd-toggle .icon-plus::before {
        display: none;
    }

    .stellarnav.mobile li.open {
        padding: 0;
    }

    .stellarnav li li a {
        padding: 5px 0;
        display: block;
        color: #555;
        text-align: left;
        padding-left: 30px;
        background-color: #00000008;
        transition: all 0.5s;
        font-size: 14px;
    }

    .stellarnav.mobile ul {
        background: transparent;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav li li {
        border: 0;
    }

    .navigation {
        position: relative;
    }

    .stellarnav.mobile li.open li.open {
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 5px 43px 5px 28px;
    }

    .stellarnav.mobile li li a.dd-toggle {
        display: none;
    }

    .stellarnav li li li a {
        color: #fff;
    }

    .stellarnav.mobile li li.has-sub li a {
        padding: 5px 0 5px 18px;
        color: #ffffff;
        background: #505050;
    }

    .stellarnav ul ul ul {
        transform: none;
    }

    .nav-header {
        z-index: 0;
        padding: 10px;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-color: #fff;
    }

    .stellarnav li.open>a.dd-toggle .icon-plus {
        transform: rotate(90deg);
        top: -4px;
    }

    .pageIndex .stellarnav>ul>li:nth-of-type(1) {
        animation-delay: 0.2s;
    }

    .pageIndex .stellarnav>ul>li:nth-of-type(2) {
        animation-delay: 0.4s;
    }

    .pageIndex .stellarnav>ul>li:nth-of-type(3) {
        animation-delay: 0.6s;
    }

    .pageIndex .stellarnav>ul>li:nth-of-type(4) {
        animation-delay: 0.8s;
    }

    .pageIndex .stellarnav>ul>li:nth-of-type(5) {
        animation-delay: 1s;
    }

    .pageIndex .stellarnav>ul>li:nth-of-type(6) {
        animation-delay: 1.2s;
    }

    .stellarnav>ul>li,
    .pageIndex .stellarnav>ul>li {
        padding: 0;
    }

    .stellarnav>ul>li>ul,
    .pageIndex .stellarnav>ul>li>ul {
        top: 0;
    }

    .stellarnav.mobile>ul>li>a b {
        font-size: 14px;
    }

    .stellarnav.mobile>ul>li>a b:nth-of-type(1) {
        margin-right: 10px;
    }

    .stellarnav.mobile li.drop-left ul ul {
        right: auto;
        left: 0;
    }

    .stellarnav>ul>li>ul>li:hover>ul {
        opacity: 1;
        transform: none;
    }

    .stellarnav>ul>li>ul {
        transform: scale(1, 1);
    }

    .sticky .stellarnav.mobile::after {
        background: #ffffff61;
    }

    .nav-brand {
        width: 80px;
    }

    .sticky .nav-brand {
        width: 50px;
    }

    .sticky .stellarnav>ul>li>ul {
        top: 0;
    }










    @keyframes line-down {
        0% {
            height: 0;
        }

        100% {
            height: 100%;
        }
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.info_fix {
    display: none;
}



#to_top {
    color: #494949;
    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: #494949;
}


.info_fix_default.info_fix_yt span::before {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/footer-text-09.png);
    background-size: cover;
}

.info_fix_links a.info_fix_default.info_fix_tel,
.info_fix_links a.info_fix_default.info_fix_mail {
    display: none;
}



@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}


@media screen and (max-width: 1440px) {
    .footer_info ul {}

    .footer_info li p {
        width: auto;
        min-width: 50%;
    }
}

@media screen and (max-width: 1024px) {


    .footer_menu a {
        width: calc(100% / 3 - 20px);
        margin: 5px;
    }
}





@media screen and (max-width: 768px) {
    .footer_info ul {
        width: 100%;
        text-align: center;
    }

    .pageIndex .sticky .stellarnav>ul>li>a {
        color: unset;
    }
}



@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%;
    }

}

@media screen and (max-width: 500px) {
    .footer_info ul {
        flex-direction: column;
    }

    .footer_info li:nth-child(1),
    .footer_info li:nth-child(2) {
        width: 100%;
    }

    .footer_menu {
        justify-content: center;
    }
}









/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    height: 400px;
}

.banner h5 {
    display: none;
}

.banner.banA {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banA.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

.banner.banB {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banB.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

.banner.banC {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banC.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

.banner.banD {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banD.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

.banner.banE {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banE.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banF.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/alanhuang/banblog.jpg);
    background-position: center;
    width: 100%;
    height: 25vw;
    background-size: cover;
}

#content {
    background-color: #f6f5f1;
}


@keyframes banner {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.other_select_page .page {
    display: none;
}

@media screen and (max-width: 1024px) {
    .banner h5 {}

}

@media screen and (max-width: 768px) {
    .banner {
        max-width: 100%;
        background-size: cover;
        margin: 0 auto;
    }

    .banner h5::before {
        font-size: 24px;
    }

    .banner h5 {
        left: 10%;
    }

    .banner h5::after {
        font-weight: 100;
        margin-top: 45px;
        display: none;
    }

    .banner.banE {
        height: 140px;
    }


}

@media screen and (max-width: 500px) {
    .banner h5 {
        font-size: 16px;
    }

    .album_class_page .banner h5 {
        font-size: 20px;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.main_part {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}

.products-list .more {
    display: none;
    border: 1px solid #383838 !important;
    color: #383838;
}

.products-list a:hover .more {
    background: #383838;
    border-color: #383838;
    color: #ffffff;
}

.products-list {
    border: 1px #383838 solid;
    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: calc(100% / 3 - 4%);
    display: inline-block;
    vertical-align: top;
    padding: 0 7px;
    margin: 10px 2%;
}

.products-list .item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #3F3F3F;
    position: relative;
    bottom: 0;
}


.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 150%;
    height: 0;
    overflow: hidden;
}

.products-list .item a 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%) scale(1.08);
    transition: all 0.5s;
}

.products-list .item a:hover img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all 0.5s;
}

.product-layer-two li.active a {
    font-weight: bold;
    border: 1px #ccc solid;
    color: #fff;
    background: #383838;
}

.product-layer-two li a {
    position: relative;
    background: transparent;
    padding: 10px 25px;
    display: block;
    font-size: 16px;
    color: #3f3f3f;
    border: 1px #3f3f3f solid;
    text-align: left;
    transition: all 0.3s;
}

.product-layer-two li a:hover {
    color: #fff;
    background-color: #383838;
    transition: all 0.3s;
}

.product-layer-two li li a {
    background: #F4F3ED;
    font-size: 14px;
    border: #3f3f3f 1px solid !important;
}

.products-list .price b {
    color: #383838;
    font-size: 16px;
}



/* 購物業 內業 */
.product_info_page .main_part {
    width: 100%;
    max-width: 70%;
    margin: auto;
    padding: 50px 0;
}

.product_info_page .product-layer-two {
    display: none;
}


/* 購物車圖片 */
.product_pic {
    display: flex;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
    flex-direction: column;
}

.product_pic .bx-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 0 0px;
}

.product_pic #bx-pager {
    display: flex;
    vertical-align: top;
    width: 100%;
    padding: 0;
    font-size: 12px;
    color: #391911;
    position: relative;
    top: auto;
    left: 0;
    flex-direction: row;
}

.product_pic #bx-pager h6 {
    display: none;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0;
    background: #fff;
}

.product-wrapper {
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product_main {
    padding: 0;
    display: inline-block;
    width: 60%;
    vertical-align: top;
}

.prod_info_clearfix {
    display: none;
}

.product_pic .bx-wrapper .bx-viewport {}

.product_pic #bx-pager a {
    overflow: hidden;
    margin-right: 10px;
}



/* 右邊選單 */
.sidebarBtn {
    display: inline-block;
    width: 28%;
    vertical-align: top;
    background: transparent;
    padding: 50px 50px;
    border: 1px #3F3F3F solid;
    height: auto;
}

.sidebarBtn .price span {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
}

.sidebarBtn .price {
    color: #3F3F3F;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #3F3F3F;
    letter-spacing: 1px;
}

.sidebarBtn h2 {
    color: #383838;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.sidebarBtn .sp_price {
    display: block;
    color: #383838;
    font-size: 22px;
    font-weight: bold;
}

.sidebarBtn .ori_price {
    font-weight: normal;
}

.product_info li span {
    display: block;
    font-size: 12px;
    color: #3F3F3F;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.product_info li {
    margin: 50px 0;
}

.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #3F3F3F;
}

.amountNum {
    width: 45px;
    height: 28px;
    border: 1px solid #ccc;
    line-height: 28px;
    margin-left: 4px;
    color: #444;
    padding-left: 5px;
    background: #0000;
}

.radio-inline__input:checked+.radio-inline__label {
    background: #0000006e;
    color: #fff;
    border: none;
}

.toShare {
    display: none;
}

input[type="submit"] {
    cursor: pointer;
    border: 0;
    background: transparent;
    border: #3F3F3F 1px solid;
    color: #fff;
}

.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover {
    letter-spacing: 2px;
    background: #777;
    color: #fff;
}

.pr_but {
    margin-top: 20px;
    border-radius: 6px;
}

/* 購物車圖片 */
.product_pic {
    display: flex;
    padding-bottom: 0;
    padding-left: 0;
    position: relative;
    flex-direction: column;
    width: auto;
}

.product_pic .bx-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 0 0px;
}

.product_pic #bx-pager {
    display: flex;
    vertical-align: top;
    width: 100%;
    padding: 0;
    font-size: 12px;
    color: #391911;
    position: relative;
    top: auto;
    left: 0;
    margin-right: 4%;
    flex-direction: row;
}

.product_pic #bx-pager h6 {
    display: none;
}

.product_pic #bx-pager a 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;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}




.bx-wrapper .bx-viewport {
    border: none;
    left: 0;
    background: #fff;
}

.product-wrapper {
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.product_main {
    padding: 0;
    display: inline-block;
    width: 540px;
    vertical-align: top;
}

.prod_info_clearfix {
    display: none;
}

.product_pic .bx-wrapper .bx-viewport {
    height: fit-content !important;
    background: transparent;
}

.bxslider {}

.bxslider li {
    overflow: hidden;
}

.bxslider li::before {
    content: '';
    display: block;
    padding: 133% 0 0 0;
    overflow: hidden;
    position: relative;
}

.bx-wrapper img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
}

.product_pic #bx-pager a {
    overflow: hidden;
    width: 50px;
    padding-bottom: 0%;
    position: relative;
    margin-bottom: 20px;
}


/* 底下選項 */
ul.prod {
    list-style: none;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}

ul.prod>li:nth-child(1) {
    width: 60%;
}

ul.prod>li:nth-child(2) {
    width: 30%;
    display: none;
}

ul.prod li h3.prod-thumb {
    background: transparent;
    color: #383838;
    text-align: left;
    padding: 10px 15px;
    border-bottom: 1px #3F3F3F solid;
    font-size: 22px;
}

ul.prod li .prod-panel {
    margin-top: 16px;
    color: #3F3F3F;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    transition: all 0.3s;
    padding: 0 15px;
}

.half_box {
    width: 100%;
    float: left;
    padding-right: 0;
    padding: 0px 15px;
}

.half_box li.btn_blankTop {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    width: 48%;
    line-height: 50px;
    font-size: 15px;
    background-repeat: no-repeat;
    border: none;
    margin-top: 10px;
    text-align: center;
    padding-left: 0;
}

.lastaction {
    background: transparent;
    color: #3F3F3F;
    background-image: none;
    border: 1px #3F3F3F solid !important;
    transition: all 0.3s;
}

.lastaction:hover {
    color: #fff;
    background: #3F3F3F;
    transition: all 0.3s;
}

input[type="submit"]:hover {
    background: #383838;
    border: #383838 1px solid;
    color: #fff;
    transition: all 0.3s;
}

.qaform .breakF {
    border-radius: 5px;
    background: transparent;
    border: 1px #3F3F3F4a solid;
}


/* 相關推薦 */
.prod_related {
    background: transparent;
    padding: 20px 0;
}

.prod_related h6 {
    display: block;
    width: 80%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    margin: 0 10%;
    border-bottom: 1px #3F3F3F solid;
    padding: 10px 15px;
}

.prod_related h6 span:before {
    display: none;
    content: '相關推薦';
    font-size: 22px;
    color: #383838;
}

.related_list {
    margin-top: 76px;
}

.lastPage {
    background: #3F3F3F;
}

.related_list li a {
    display: block;
    padding: 4px;
    background: transparent;
}

.related_list li a img {
    transition: all 0.3s;
}

.related_list li a:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
}

.related_list li a p {
    display: block;
    margin-top: 26px;
}


@media screen and (max-width: 1024px) {
    .product_info_page .main_part {
        max-width: 95%;
    }

    .product-wrapper {
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .sidebarBtn {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        background: transparent;
        padding: 50px 50px;
        border: 1px #3F3F3F solid;
        height: auto;
        margin: 30px 0;
    }

    .product_main {
        padding: 0;
        display: inline-block;
        vertical-align: top;
    }

    ul.prod>li:nth-child(1) {
        width: 100%;
    }
}



@media screen and (max-width: 768px) {
    ul.prod {
        list-style: none;
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 50px;
    }

    ul.prod>li:nth-child(1) {
        width: 100%;
    }

    ul.prod>li:nth-child(2) {
        width: 100%;
    }

    .products-list .item {
        width: 50%;
        display: inline-block;
        vertical-align: top;
        padding: 0 7px;
        margin: 0;
        margin-bottom: 30px;
    }

    .product_page .main_part {
        width: 100%;
        max-width: 90%;
        margin: auto;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .product_main {
        width: 350px;
    }

}

@media screen and (max-width: 400px) {
    .product_main {
        width: 200px;
    }

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.edit * {
    line-height: 30px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
.blog_box_edit * {
    line-height: 180%;
}

.subbox_item {
    width: 100%;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
}

.submenu a:hover {
    background: #b7aa95;
}

.blog_le {
    width: 260px;
}

.blog_ri {
    width: calc(100% - 265px);
    padding: 0 40px;
}

.blog_list_le {
    width: 260px;
}

.blog_list_ri {
    padding: 20px;
    width: calc(100% - 265px);
}

.blog_list_ri p {
    margin-top: 20px;
}

.blog_le .accordion {
    border: none;
}

.accordion li .link {
    font-weight: 400;
    border-bottom: 1px solid #2f2f41;
    position: relative;
}

.blog_le .accordion {
    border-radius: 0px;
}

.blog_page .accordion li .link a {
    display: block;
    padding-right: 0px;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #2f2f41 !important;
}

h4.blog_category_title {
    font-size: 26px;
    font-weight: 400;
}

.img-text-group {
    justify-content: center !important;
}

@media screen and (max-width: 768px) {
    .blog_ri {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .blog_list_le {
        width: 100%;
    }

    .blog_list_ri {
        width: 100%;
        margin-top: 10px;
    }

    .page strong,
    .page a {
        border: none;
    }

    .page a:hover {
        background: #7db4c7;
    }

    /*文章內頁設定*/
    .table-simple tbody tr {
        width: 49%;
        display: inline-block;
    }

    .table-simple tbody td {
        display: flex;
        flex-direction: column;
        padding: 5px !important;
        width: 100% !important;
        margin: 15px 0;
        height: 145px;
    }

    .table-simple tbody td p {
        text-align: left !important;
        line-height: 155%;
        font-size: 15px;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #3b3b3b;
}

.promotion_title {
    border-bottom: 1px solid #3b3b3b;
}

.other_select_page .promotion_title,
.other_select_page .other_promotion {
    display: none;
}

.module_i_news li a:after {
    background: rgb(255 255 255 / 0%);
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */


    .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;
        margin-bottom: 0px;
    }

}

@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: 0 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;
    display: flex;
    flex-direction: column-reverse;
}

.blank_letter {
    font-family: "Montserrat", serif;
    padding-top: 0;
    font-size: 16px;
    padding: 10px 15px 10px;
    color: #fff;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.3em;
    width: fit-content;
    background: #494949;
}

.blank_letter::before {
    content: "FORM";
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-family: "Montserrat", serif;
    margin-right: 20px;
    letter-spacing: .3em;
    font-weight: 300;
}

.list_before.info li {
    padding-left: 32px;
    color: #494949;
}

.blank_letter::after {
    content: "表單提交後，請加入官方LINE了解詳情！\A我們將盡速與您聯繫，感謝您的耐心等候！";
    display: block;
    width: 100%;
    color: #494949;
    font-size: 16px;
    position: absolute;
    bottom: -50px;
    text-wrap: nowrap;
    left: 0;
    letter-spacing: 0;
}



.contact_form li .form__label {
    color: #494949;
    width: 130px;
    margin-left: -140px;
    text-align: left;
}

.contact_le_map a {
    background: #494949;
    color: #fff;
}

.contact_form li.last cite {
    background: #494949;
    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 {
    display: none;
    transition: all .5s;
}

.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: all .5s;
}


.contact_form li input.noborder {
    border: none;
    /* border-bottom: 1px #494949 solid; */
    background: #0000000a;
    color: #494949;
    transition: all 0.3s;
}

.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #4949493d;
    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 #494949 solid;
    color: #494949;
    transition: all 0.3s;
}

.contact_content form {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.form__insert input {
    margin: 0 10px;
    color: #494949;
}


.contact_content {
    margin: auto;
    padding: 0px 5%;
}

.note {
    font-size: 13px;
    text-align: right;
    letter-spacing: 0;
    text-wrap: nowrap;
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translate(0, -50%);
}

.contact_form {
    margin: 0 auto;
    padding: 90px 0 50px;
    font-size: 15px;
    color: #494949;
    max-width: 80%;
    position: relative;
}

.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;
        margin: 0;
    }

    .contact_form li.last {
        display: flex;
        justify-content: center;
    }

    .banner::before {
        width: 50%;
    }

    .contact_form {
        max-width: 100%;
    }

    .note {
        display: block;
        margin-top: 10px;
        text-align: left;
    }

    .blank_letter::after {
        bottom: -60px;
        width: 310px;
        white-space: break-spaces;
    }

    .pageIndex .swiper-slide:nth-child(1):after {
        top: 50%;
        left: -10%;
        width: 95%;
        height: 50% !important;
    }

    /*第一張大圖的偽元素*/
    .pageIndex .swiper-slide:nth-child(1):after {
        top: 60%;
        left: 0%;
        width: 60%;
        height: 30% !important;
    }

    /*第二張大圖的偽元素*/
    .pageIndex .swiper-slide:nth-child(2):after {
        top: 25%;
        left: -10%;
        width: 100%;
        height: 70% !important;
    }
}


@media screen and (max-width: 500px) {
    .blank_letter span::before {
        bottom: -60px;
        text-wrap: wrap;
    }

    .blank_letter::after {
        bottom: -20px;
        width: 320px;
        text-wrap: wrap;
    }

    .note {
        left: 0px;
        top: 230%;
    }

    .blank_letter {
        font-family: "Montserrat", serif;
        padding-top: 0;
        font-size: 16px;
        color: transparent;
        background: transparent;
    }
}

/*Footer/＝＝＝＝＝*/
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.footer_menu {
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
}

/*footer按鈕最小寬度100px*/
.footer_menu a {
    margin: 0;
    text-align: center;
    padding: 5px;
    transition: all 0.3s;
}

.footer_new_icon u {
    writing-mode: horizontal-tb;
    width: 150px;
}

.footer_new_icon a {
    align-items: center;
    font-size: 18px;
}

.footer_new_icon {
    max-width: 300px;
}

.copy {
    background: none;
    color: #777;
    border: none;
}

.copy a {
    color: #777;
    transition: all 0.3s;
}

.copy a:hover {
    color: #777;
}

.box_link a {
    transition: all 0.3s;
}

.box_link a:hover {
    background: #485752;
    color: #fff;
}

.footer {
    background-color: #f6f5f1;
}

.footer_info li p {
    color: #666;
    font-family: "Noto Serif TC", serif;
    letter-spacing: 2px;
    font-size: 16px;
}

.footer_info li p a {
    color: #666;
    font-family: "Noto Serif TC", serif;
    letter-spacing: 2px;
    font-size: 16px;
}

.footer_menu a {
    border: 0px #555 solid;
    color: #666;
    background: none;
    line-height: 145%;
    width: 8%;
    padding: 0;
    margin-inline: 5px;
}

.footer_info ul {
    vertical-align: top;
    width: 100%;
    justify-content: space-between;
    display: flex;
    margin-top: 15px;
}

.footer_info {
    padding: 0;
}

.footer_info li {
    padding: 10px;
    padding-inline: 0;
}

.footer_info li:nth-child(1)::before {
    content: "CONTACT";
    font-size: 19px;
    display: block;
    color: #D6C6B1;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer_info li:nth-child(1) {
    margin-bottom: 10px;
}

.center {
    max-width: 1200px;
    padding-inline: 35px;
    width: 100%;
    margin: 0 auto;
}

/*footer logo*/
.footer_logo a img {
    width: 155px;
}

.footer_logo a {
    padding-top: 80px;
    display: block;
    border-radius: 0 0 30px 30px;
}

.footer_logo {
    width: 150px;
}


/*footer icon按鈕隱藏*/
.box_link {
    display: none;
}

/*footer第一顆按鈕影藏*/
.footer_menu a:first-child {
    display: none;
}

@media screen and (max-width: 820px) {
    .footer_menu a {
        width: 100%;
    }

    .footer_menu {
        flex-direction: column;
    }
}

/*Footer/＝＝＝＝＝*/
#to_top {
    bottom: 60px;
}


.footer.with_shopping_mode {
    padding: 0px 0 60px;
}

.footer_info {
    justify-content: center;
}

.footer_logo {
    text-align: center;
}

.footer_menu a {
    text-align: left;
}

.footer_menu {
    flex-direction: row;
}

.footer_info ul {
    flex-direction: column;
}

.footer_info li:nth-child(2) {
    border-top: 1px solid #999;
}

.footer_menu a:hover {
    background: none;
    color: #18192d;
}

@media screen and (max-width: 600px) {

    /*Footer/＝＝＝＝＝*/
    .box_link {
        text-align: center;
    }

    .footer_info ul {
        margin-top: 25px;
    }
}

@media screen and (max-width: 500px) {

    /*    footer*/
    .footer_menu {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer_menu a {
        width: 28%;
    }
}

/*促銷方案改呈現方式*/

.promotions_page .main_part {
    display: flex;
    max-width: 1200px;
}

.promotions_page .page {
    display: none;
}

.other_promotion {
    list-style: none;
    margin: 0;
    padding: 11px;
}

.other_promotion li {
    margin-bottom: 10px;
    width: 100%;
    background: #ffffff5c;
}

.other_promotion li a {
    display: block;
    padding: 10px;
    width: 100%;
    margin: 0%;
    position: relative;
    border: none;
    background: #ffffff17;
}

.other_promotion .pmtTitle h3 {
    letter-spacing: 2px;
    height: 60px;
}

.other_promotion li a:hover {
    background: #fcfcfc00;
}

.show_content {
    width: 100% !important;
    margin: 0px;
    padding: 10px 10px;
}



/*手機板*/

@media screen and (max-width: 768px) {
    .promotions_page .main_part {
        display: block;
    }

}