@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Serif+TC:wght@200..900&display=swap');




body {
    font-family: "Noto Serif TC", serif;
    font-weight: 500;
}


#content {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/bg-08.jpg);
    background-position: center top;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}




.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1):after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/bg-05.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/bg-06.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}






.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/bg-07.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/bg-08.png);
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}





.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    content: "";
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::before {
    content: "";
    animation: banner-bg 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}


@keyframes banner-bg {
    0% {
        height: 95%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

















/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: transparent;
    color: #f8c248;
    border-bottom: 1px #f8c248 solid;
}

.swiper-pagination {
    display: none;
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background-color: #040404;
}

.bannerindex {
    position: relative;
    height: auto;
}

.bannerindex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.bannerindex .swiper-slide img {
    height: auto;
    animation: none !important;
    transform: scale(1.011);
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding-bottom: 0%;
    }

    .bannerindex .swiper-banner .swiper-slide img {
        width: 150%;
        max-width: 150%;
    }

    .bannerindex .swiper-fade .swiper-slide:nth-of-type(1) {
        display: flex;
        justify-content: flex-start;
    }

    .bannerindex .swiper-fade .swiper-slide:nth-of-type(2) {
        display: flex;
        justify-content: flex-end;
    }


    .pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1):after {
        background-position: left;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2):after {
        background-position: right;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::before {
        background-position: left;
    }

    .pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::before {
        background-position: right;
    }
}


@media screen and (max-width: 768px) {}



@media screen and (max-width: 500px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 首頁文章 */

.module_i_news {
    background: #9CC2BA;
}

.module_i_news li a:after {
    display: none;
}

.module_i_news li a:before {
    color: #fff;
}


.i_blog_ri h5 {
    color: #f8c248;
}

.i_blog_ri em {
    color: #666666;
}


.module_i_news .title_i_box h4 {
    font-size: 40px;
    color: #f8c248;
    font-weight: 500;
    border-bottom: 1px #f8c248 solid;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 100px;
}

.module_i_news .title_i_box h4::after {
    content: "NEWS";
    display: inline-block;
    font-size: 16px;
    color: #f8c248;
    margin-left: 30px;
}














/*選單設定*/
.nav-menu {
    margin: 0;
}

.header_area .main_header_area .container {
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area .container {
    max-width: 100%;
    transition: all 0.3s;
}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #2B3047;
}

.nav-dropdown>li {
    text-align: center;
}

.me_tp_features {
    display: none;
}

.nav-header {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 999999;
    max-width: 110px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.sticky .nav-header {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    transition-delay: 0.5;
}



.header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #a11112;
    border-radius: 0 0 30% 30%;
    box-shadow: 1px 1px 2px #00000038;
    transform: translate(0, -110%);
    transition: all 0.5s;
}

.header_area.sticky::before {
    transform: translate(0);
    transition: all 0.5s;

}


.nav-header::after {}

.nav-header:hover:after {
    animation-play-state: paused;
    transition: all 0.3s;
}

.nav-header:hover:before {
    background-color: #f0d9aa;
    transition: all 0.3s;
}





@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}












.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    top: 0;
    background: transparent;
    transition: all 0.7s;
}

.header_area.sticky {
    top: 0px;
    background: transparent;
    transition: all 0.7s;
}

.main_header_area {
    position: relative;
    background: transparent;
    transition: all 0.5s;
}

.sticky .main_header_area {
    transition: all 0.5s;
}

.stellarnav li.has-sub>a:after {
    display: none;
}


.stellarnav>ul>li:nth-of-type(3) {
    margin-right: 9%;
}


.stellarnav>ul>li>a {
    padding: 0 30px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: fit-content;
    margin: 0;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    overflow: visible;
    font-weight: bold;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 30px;
}

.pageIndex .stellarnav>ul>li>a {}


.sticky .stellarnav>ul>li>a {
    transition: all 0.5s;
}

.stellarnav>ul>li>a b {
    line-height: 20px;
    height: fit-content;
    font-weight: 500;
    transition: all 0.5s;
}

.stellarnav>ul>li>a b:nth-of-type(1) {
    font-size: 16px;
}

.stellarnav>ul>li>a b:nth-of-type(2) {
    color: #ababab;
    margin-top: 3px;
    font-size: 12px;
    transition: all 0.5s;
}

.stellarnav>ul>li:hover>a {
    color: #f8c248;
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
}

.header_area .navigation {
    display: flex;
    width: 100%;
    position: relative;
    padding: 30px 0 30px;
    opacity: 1;
    transition: all 0.3s;
    justify-content: center;
    overflow: visible;
}

.header_area.sticky .navigation {
    padding: 20px 0;
    opacity: 1;
    transition: all 0.5s;
}


.stellarnav ul {
    display: flex;
    margin: 0;
    text-align: center;
    justify-content: center;
}

.stellarnav>ul>li>a:before {
    content: "";
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto 5px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav>ul>li>a:hover:before {
    transform: scale(1.1) rotate(10deg);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav>ul>li:nth-of-type(1)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-09.png );
}

.stellarnav>ul>li:nth-of-type(2)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-10.png );
}

.stellarnav>ul>li:nth-of-type(3)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-11.png );
}

.stellarnav>ul>li:nth-of-type(4)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-12.png );
}

.stellarnav>ul>li:nth-of-type(5)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-13.png );
}

.stellarnav>ul>li:nth-of-type(6)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-14.png );
}


.stellarnav li:nth-of-type(7)>a:before {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-15.png );
}






/* 延遲出現特效 */


.stellarnav>ul>li {
    width: 175px;
    text-align: center;
    opacity: 0;
    transform: translate(0, -50px);
    transition: all 0.5s cubic-bezier(0.71, 0.11, 0.12, 0.92);
}

.sticky .stellarnav>ul>li {
    opacity: 1;
    transform: translate(0, 0px);
    transition: all 0.5s cubic-bezier(0.71, 0.11, 0.12, 0.92);
}












@media screen and (max-width: 1024px) {
    .header_area .navigation {}

    .header_area.sticky .navigation {
        padding: 20px 0;
    }
    .stellarnav>ul>li{
        max-width: 125px;
    }
    .stellarnav>ul>li>a{
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .header_area .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area .container {
        max-width: 90%;
    }
}









/*下拉*/
.nav-dropdown>li>a {
    background: #f7f5f5;
    transition: 0.2s;
    letter-spacing: 1.5px;
    width: 100%;
}

.nav-dropdown>li>a:hover {
    transition: 0.2s;
    background-color: #2B3047;
    color: #fff;
}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent;
}

.stellarnav li li {
    border: #000 1px solid;
}

.stellarnav li li a {
    padding: 10px 15px;
    display: block;
    color: #000;
    background-color: transparent;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    color: #fff;
    background-color: #a11112;
    transition: all 0.3s;
}

.stellarnav>ul>li>a::before {}

.stellarnav>ul>li>a:hover::before {}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/
.header_area .nav-brand {
    display: inline-block;
    width: 100%;
    transition: all 0.5s;
}

.header_area.sticky .nav-brand {
    transition: all 0.5s;
}

.header_area .nav-brand img {
    width: 100%;
    max-width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand img {
    transition: all 0.3s;
}

.footer_logo img {
    width: 100%;
}

.footer_logo {
    width: 140px;
}



@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

}

@media screen and (max-width: 1024px) {
    .header_area {}

    .header_area .main_header_area::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

}

@media screen and (max-width: 768px) {
    .nav-brand-m {
        display: block;
        text-align: left;
        padding: 15px 10px;
    }

    .nav-brand-m img {
        max-width: 200px;
        width: 100%;
    }

    .stellarnav.mobile {
        top: 9px;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #a11112;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        color: #fff;
        text-shadow: none;
        padding: 15px 10px;
    }

    .nav-brand {
        display: inline-block;
        width: 220px;
    }

    .header_area .nav-brand {
        width: 100px;
    }

    .header_area .navigation {
        padding: 10px 0;
    }

    .header_area.sticky .navigation {
        padding: 60px 0;
    }

    .header_area.sticky .stellarnav>ul {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: right;
        transition: all 0.3s;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        display: inline-block;
        text-align: right;
        font-size: 12px;
        background: #a11112;
        color: #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 43px 25px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0;
        position: absolute;
        top: 20px;
    }

    .stellarnav.mobile.left>ul {
        left: 0;
        padding: 0;
        border: 0;
        background: #000000e3;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav li li:hover {
        background: inherit;
        border-radius: 0;
        color: inherit;
        transform: none;
        box-shadow: none;
        z-index: 100000;
        transition: all 0.3s;
    }

    .stellarnav li li:hover>a {
        transition: all 0.3s;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 15px 43px 15px 10px;
    }

    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
    }

    .stellarnav li li a {
        padding: 15px 15px;
        color: #fff;
    }

    .stellarnav>ul>li {
        width: 100%;
    }

    .stellarnav>ul>li>a:before {
        display: none;
    }

    .stellarnav.mobile ul {
        background: #00000079;
    }

    .stellarnav .menu-toggle {
        opacity: 0;
        transition: all 0.5s;
    }

    .header_area.sticky .stellarnav .menu-toggle {
        opacity: 1;
        transition: all 0.5s;
    }
    .nav-header{
        z-index: 0;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/



.pageIndex .footer_info {}

.pageIndex .copy {}







.footer {
    border-top: none !important;
    padding: 40px 0 0;
    background: #a11112;
}

.footer .center {
    position: relative;
    max-width: 80%;
}

.copy {
    background: transparent;
    color: #fff;
    border: 0;
}

.center {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.copy a {
    color: #fff;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: calc(100% / 2 - 80px);
    color: #fff;
    margin: 10px 0;
    margin-right: 40px;
}

.footer_info li p.mail {
    display: none;
}

.footer_info li p a {
    color: #fff;
}

.footer_info {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.footer_info ul {
    display: flex;
    vertical-align: top;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: fit-content;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    display: none;
}

.footer_menu a {
    transition: all 0.3s;
    width: calc(100% / 3 - 20px);
    margin: 0 10px 10px 0;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    overflow: hidden;
    position: relative;
}

.footer_menu a:hover {
    background: transparent;
    color: #fff;
    transition: 0.3s all;
}

.footer_menu a::before {}

.footer_menu a:hover:before {
    transform: translateX(0%);
    transition: all .3s;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_info li:nth-child(2) {
    display: none;
    width: 60%;
}

.info_fix {}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
}

.footer_info li:nth-child(1)::before {
    content: "CONTACT";
    display: block;
    width: 100%;
    color: #fff;
    border-bottom: 1px #fff solid;
    padding-bottom: 20px;
    font-size: 20px;
    letter-spacing: 3px;
}


/* 浮動 */
.info_fix_links {
    display: flex !important;
}

.info_fix>span {
    display: none;
}


.info_fix_links a {
    background: #f4cd27;
    transition: all 0.5s;
}

.info_fix_links a:hover {
    background: #d1a43b;
    transform: scale(1.1);
    transition: all 0.5s;
}

.info_fix_links a span::before {
    filter: brightness(0.3);
    transition: all 0.5s;
}


















@media screen and (max-width: 1024px) {
    .footer_info ul {
        display: flex;
        vertical-align: top;
        justify-content: space-between;
        flex-direction: column;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {
    .footer_info {
        padding: 0;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer_info ul {
        display: flex;
        vertical-align: top;
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
    }

        .footer_info li:nth-child(1) {
        display: flex
;
        flex-direction: column;
        width: 100%;
        text-align: center;
        align-content: center;
        align-items: center;
    }

    .footer_info li p {
        width: 100%;
    }
    .info_fix {
        width: fit-content;
    }
    .info_fix_links a{
        width: 40px;
        height: 40px;
    }
}


@media screen and (max-width: 500px) {
    .footer_menu a {
        transition: all 0.3s;
        width: 100%;
        margin: 0 5px 5px 0;
        background: transparent;
        color: #fff;
        padding: 10px 20px;
        overflow: hidden;
        position: relative;
    }

    .info_fix {
        bottom: 50px;
    }

}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    display: flex;
    width: 100%;
    padding: 0;
    height: 660px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
}

.banner::before {
    content: "";
    display: block;
    color: #cecece;
    font-size: 30px;
    font-weight: 700;
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.banner h5 {
    width: fit-content;
    text-wrap: nowrap;
    font-size: 60px;
    position: absolute;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-weight: 700;
    letter-spacing: 5px;
    justify-content: center;
    padding: 30px 90px 70px;
    line-height: 1;
    letter-spacing: 10px;
    text-indent: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner h5::before {
    content: "";
    display: block;
    width: 30px;
    height: 100%;
    background: #000;
    position: relative;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    transform: skew(-26deg);
}

.banner h5::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #821112;
    text-align: left;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(-26deg);
    z-index: -1;
}





.banner.banA {
    display: none;
}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banD {}

.banner.banE {}





.banner.banE {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/banner-05.png);
}

.banner.banE::before {
    content: "Journal";
}








.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/banner-06.png);
}

.banner.banF::before {
    content: "Shop";
}



.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/banner-07.png);
}

.banner.banblog::before {
    content: "News";
}

.main_part {
    padding-top: 120px;
}



@media screen and (max-width: 1024px) {
    .banner {
        height: 400px;
    }

    .banner h5 {
        font-size: 48px;
    }

    .banner::before {
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .banner h5 {
        font-size: 36px;
    }

    .banner::before {
        font-size: 24px;
    }

}

@media screen and (max-width: 530px) {
    .banner {
        height: 250px;
    }

    .banner h5 {
        font-size: 28px;
        padding: 20px 40px 50px;
    }

    .banner::before {
        font-size: 20px;
    }

}







/* 分業 */
.other_promotion {
    display: none;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */

.product_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.product_page .show_content {
    margin: auto;
    padding: 10px 0;
}

.product-layer-two li a {
    background: transparent;
}

.products-list {
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(calc(100% / 4 - 20px), 1fr));
    grid-gap: 20px;
}

.products-list .pic {}

.products-list .item a:hover .more {
    background: #a11112;
    color: #DEDBC4;
}

.product-layer-two {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #a11112;
    padding: 20px 10px;
    border-radius: 10px;
}

.product-layer-two li i {
    color: #DEDBC4;
}

.products-list .item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin-bottom: 30px;
}

.product-layer-two::after {}






.products-list .more {
    border: 0;
    background: transparent;
    color: #DEDBC4;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    height: fit-content;
    margin-top: 10px;
    border: 1px #DEDBC4 solid;
    font-weight: bold;
}

.products-list .pic img {
    max-width: 100%;
    transition: all 0.3s;
}

.products-list a:hover .pic img {
    filter: brightness(0.7);
    transform: scale(1.1);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #DEDBC4;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
    text-align: center;
    font-weight: bold;
}


.products-list .price {
    text-align: center;
}


.products-list .price .sp_price {
    text-align: right;
    color: #fff;
}

.products-list .price b.ori_price {
    color: #ffffffa4;
}





@media screen and (max-width: 1440px) {
    .products-list .price b {
        font-size: 14px;
    }
}



@media screen and (max-width: 768px) {
    .products-list .price b {
        font-size: 16px;
    }
}

/*外層*/



.product-layer-two li::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f4cd27;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0) scale(0, 1);
    z-index: 0;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.product-layer-two li:hover:before,
.product-layer-two li.active::before {
    transform: translate(-50%, 0) scale(1);
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;

}


.product-layer-two li:hover a,
.product-layer-two li.active a {
    color: #000;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 1s;

}


.product-layer-two li ul {
    background: #000;
}

.product-layer-two li li {
    background: transparent;
}

.product-layer-two li li a {
    background: transparent;
}


.product-layer-two li a {
    color: #DEDBC4;
    border: 0;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
    text-align: center;
}

.product-layer-two li.active a {
    border: 0;
}






/*內層*/
.lastPage {
    background: #6F1C1B;
    color: #d1d1d1;
    font-weight: bold;
}

.nextaction {
    background-color: #DEDBC4;
}

.lastaction {
    color: #fff;
    background-color: #DEDBC4;
}

.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: none;
    background: none;
}



/*內液*/
.product_info_page .main_part {
    width: 100%;
    max-width: 80%;
    margin: auto;
    padding: 50px 0px;
}

.nextaction {
    background-color: #c1b09c;
}

.lastaction {
    color: #fff;
    background-color: #c1b09c;
}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}

.product_pic #bx-pager a {
    border: none;
}

.product_info_page .product-layer-two {
    grid-template-columns: repeat(4, 1fr);
}

#number_area {
    display: none;
}

.product-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebarBtn {
    padding: 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
    margin: 30px 0;
}

.sidebarBtn h2 {
    color: #DEDBC4;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    padding: 30px 40px;
    width: fit-content;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    letter-spacing: 7px;
    line-height: 70px;
}

.sidebarBtn h2::after {}

.pd_tabTitle li {
    border-bottom: 0;
}

.pd_tabTitle li.activeTab a {
    font-size: 20px;
    font-weight: bold;
    color: #DEDBC4;
}

.pd_tabTitle li.activeTab::after {
    height: 3px;
    background: #6F1C1B;
}


.edit {
    COLOR: #D1D1D1;
}





.sidebarBtn {
    color: #bebebe;
}

.sidebarBtn .price {
    color: #DEDBC4b6;
    font-size: 24px;
    margin-top: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sidebarBtn .price::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #DEDBC4;
    margin: 20px 0 20px;
}

.sidebarBtn .sp_price {
    color: #DEDBC4;
}

.product_info {
    display: none;
}

.product_info li span {
    color: #bebebe;
}

#bx-pager h6 {
    display: none;
}

ul.prod li:nth-of-type(2) {
    display: none;
}

ul.prod li h3.prod-thumb {
    color: #d6bfa9;
    font-family: 'Noto Sans TC';
    font-size: 24px;
    text-align: left;
    background: transparent;
    padding: 0;
}

ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c3b29e;
    margin: 20px 0;
}

ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}

ul.prod li .prod-panel {
    color: #dec7b1a6;
    text-align: left;
}

ul.prod li {
    margin-bottom: 40px;
    color: #bebebe;
}

.toShare {
    display: none;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}

ul.prod li span {
    color: #bebebe;
}

.qaform .breakF {
    border: 1px #939393 solid;
    background: #00000061;
    color: #fff;
}

.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #939393 solid !important;
    color: #bebebe;
    transition: all 0.5s;
}

.productBtn:hover {
    background-color: #00000071;
    transition: all 0.5s;
}



.inquiry_a1 {
    background: #a11112;
}

.inquiry_a2 {
    background: #f4cd27;
}

/*  */

.prod_related {
    background: #0000001c;
    padding: 25px 15px;
}

.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 40px;
    color: #c3b29e;
    font-family: "Noto Sans TC";
}

.related_list li a {
    display: block;
    padding: 5%;
    background: #07070724;
    transition: all 0.3s;
}

.related_list li a:hover {
    background: #6F1C1B;
    transition: all 0.3s;
}

.related_list li a p {
    font-size: 16px;
    color: #D1D1D1;
    margin: 10px 0;
    font-weight: bold;
}

.related_list li {
    transition: all 0.5s;
}

.related_list li:hover {
    transform: scale(1.05);
    transition: all 0.5s;
}

.mobile_product_name {
    display: none;
}

.sidebarBtn .price span {
    display: block;
    font-size: 24px;
    margin: 0 10px;
}


/* 結帳 */

.separate_title {
    font-size: 30px;
    color: #DEDBC4;
    padding: 10px 0 10px 40px;
    background: transparent;
}

.formbox_form li .form__label {
    color: #DEDBC4;
}

/*  */
.shopping-cart .cart_head {
    background: #42512a;
    color: #fff;
}

.shopping-cart .row {
    position: relative;
    height: auto;
    margin: 25px 0;
    clear: both;
    background-color: transparent;
    color: #DEDBC4;
}

.shopping-cart .cell {
    background: transparent;
    color: #DEDBC4;
}

.shopping-cart .cell a {
    background: transparent;
    color: #DEDBC4;
}

.total_amount li {
    margin: 10px 0;
    color: #DEDBC4;
}

.form label.Bigcheck {
    color: #DEDBC4;
}

.form label {
    color: #DEDBC4;
}

.declaration {
    background: transparent;
}



@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1024px) {
    .products-list .item {}

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 3 - 20px), 1fr));
    }

    .product_info_page .product-layer-two {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media screen and (max-width: 768px) {
    .product_info_page .main_part {
        max-width: 80%;
    }

    .car_page .information_left {
        display: none;
    }

    .product-layer-two {
        display: none;
    }

    .product-layer-two li {
        width: calc(100% / 3 - 2%);
        text-align: center;
        margin: 10px 1%;
    }

    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }

    .product-layer-two li:hover>a {
        padding-left: 20px;
    }

    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
        max-width: 100%;
    }

    .products-list .item {}

    .product_info_page .product-layer-two {
        display: none;
    }

    .product-wrapper {
        left: 0px;
    }

    .products-list .item {}

    .sidebarBtn h2 {
        font-size: 16px;
        padding: 20px 40px;
        letter-spacing: 2px;
        line-height: 2;
    }
}

@media screen and (max-width: 500px) {
    .product_page .main_part {
        max-width: 85%;
    }

    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(calc(100% / 2 - 20px), 1fr));
    }

    .products-list .more {
        font-size: 14px;
    }

    .products-list .item {
        width: 100%;
    }

    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_btn_back {
    background: #f4cd27;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #f4cd27 !important;
}

.accordion li+li .link {
    border-top: 0;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    border-bottom: 0;
    margin: 0 10px;
    transition: all 0.3s;
}

li {}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
}

.accordion li .link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
    color: #ffffff8e;
    font-size: 20px;
}

.accordion li .link {
    padding: 0;
}

.subbox_item a:before {
    color: #fff;
    right: 50%;
    top: 35%;
    bottom: 0;
    transform: translate(50%, 0);
}

/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 80%;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subbox_item {
    width: calc(100% / 3 - 40px);
    padding: 5px;
}

@media screen and (max-width: 1024px) {
    .subbox_item {
        width: 50%;
    }
}


/**/


/* 左邊欄位 */



.blog_box {
    min-height: 20vw;
    padding: 7px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.blog_le {
    margin-right: 0;
    width: 100%;
}

.blog_ri {
    width: 100%;
}

.blog_back {
    width: 100%;
}



h5.blog_le_t {
    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: #fff !important;
    transition: all 0.3s;
}

.blog_le .accordion>li:hover .link i,
.blog_le .accordion>li.on_this_category .link i {
    color: #565656 !important;
}

.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 {
    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: 70%;
    overflow: hidden;
    position: relative;
}

.blog_list_le::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    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: 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.blog_list_ri p {
    margin-top: 15px;
    color: #ffffff8e;
    padding-bottom: 35px;
}


.blog_list_ri h5 {
    color: #fff;
    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: #494949;
}

.blog_box_edit {
    line-height: 150%;
    color: #3f3f3f;
}

.blog_in_page .main_part {
    max-width: 80%;
}

.blog_list_ri em {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #ffffff8e;
}

.news_related {
    background: #470c0d;
}

.news_related h6 span:before {
    font-size: 40px;
    color: #fff;
}

.news_related_list li a {
    background: transparent;
}

.news_related_list li a p {
    color: #fff;
}


@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;
    }

    .subbox_item {
        width: 100%;
    }

    .blog_le .accordion {
        display: none;
    }

    .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;
    }

    .subbox_item a:before {
        display: none;
    }

    .blog_list_le {
        padding-bottom: 70%;
    }

    .blog_in_page .main_part {
        max-width: 100%;
    }

    .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: 1440px;
    padding: 0px 0 120px;
}

.show-list {
    grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
}


.show-list .show_name {
    color: #fff;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    line-height: 1;
    opacity: 1;
    z-index: 2;
    font-weight: bold;
    transition: all 0.5s;
}

.show-list .item a:hover .show_name {
    opacity: 0;
    transition: all 0.5s;
}

.show-list .show_pic {
    aspect-ratio: 16 / 9;
}

.show_content {
    padding: 0;
}

.show-list .show_pic img {
    transform: scale(1);
    transition: all 0.5s;
}



.show-list li a:hover .show_pic img {
    transform: scale(1.1);
    filter: saturate(1);
    transition: all 0.5s;
}

.show-list .item:hover .show_name {
    color: #fff;
}




.overlay {
    background: #0000004a;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}



.show-list .item:hover .overlay {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}




/*  */


.other_album {
    display: none;
}

.other_subalbum li a p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 1;
    z-index: 2;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.15em;
    transition: all 0.5s;
}

.other_subalbum li a:hover p {
    opacity: 0;
    transition: all 0.5s;
}



.subalbum-menu h2 {
    color: #fff;
}



/*  */


.pic-list {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
}

ul.pic-list {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
}

.pic-list .show_pic {
    aspect-ratio: auto;
}


.pic-list .item a {
    margin: 0 auto 10px;
}

.pic-list .item h6 {
    display: none;
}

.album_descrip {
    color: #fff;
}

@media screen and (max-width: 600px) {
    .show-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
}



/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #315468;
}

.promotion_title {
    display: none;
}



@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;
        display: block;
        margin: 0 auto;
    }

    .footer_info li p {
        text-align: center;
        color: #fff;
    }

    .footer_info li:nth-child(1)::after {
        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: 1440px;
}


.contact_page .main_part {
    max-width: 100%;
    padding: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.contact_content {
    width: 100%;
    max-width: calc(100% / 12 * 10);
    margin: 60px auto;
    background-color: #801011;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 1px 1px 5px #00000038;
}

.contact_content>form {
    width: 90%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.blank_letter {
    font-family: "Noto Serif TC", sans-serif;
    padding-top: 0;
    font-size: 40px;
    color: #fff;
    background-position: left bottom;
    background-repeat: no-repeat;
    font-weight: 700;
}

.blank_letter.i::after {}

.contact_content .information_left {
    width: auto;
    flex: 3;
    display: none;
}

.contact_content .information_right {
    width: 100%;
    padding-left: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: none;
}

.contact_form li {
    display: flex;
    padding: 0;
    padding-left: 0;
    border-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    margin-bottom: 13px;
    margin: 10px 20px;
}

.contact_form li .form__label {
    display: inline-block;
    width: auto;
    text-align: left;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    margin-bottom: 5px;
    color: #fff;
}

.contact_form li.last {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 0;
}

.TEL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-03.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.PHONE:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-04.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.FAX:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-05.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.MAIL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-06.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ADD:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tahaibunun/icon-07.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.list_before.info li {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.list_before.info li:nth-last-child(1) {
    margin-bottom: 0px;
}

.TEL:before,
.TEL2:before,
.PHONE:before,
.FAX:before,
.TAXID:before,
.MAIL:before,
.ADD:before,
.ADD2:before {
    position: relative;
    display: block;
    width: 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-right: 20px;
}

.contact_form li input.noborder {
    border: 0;
    background: #F4F4F4;
    height: 38px;
}

.contact_form li textarea.noborder {
    border: 0;
    background: #F4F4F4;
}

.contact_form {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 15px;
    color: #444;
    grid-template-columns: repeat(2, 1fr);
}

.contact_form li.last cite {
    background: #f4cd27;
    color: #000;
}

.contact_form li:nth-last-child(2) {
    margin-bottom: 0;
}

.contact_editbox {
    padding: 0;
}

.contact_form li.last blockquote {
    color: #fff;
}


@media screen and (max-width: 1440px) {
    .contact_content .information_left {
        margin-right: 0%;
    }
}

@media screen and (max-width: 1024px) {
    .contact_content>form {
        width: 90%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .contact_content {
        padding: 30px 50px;
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact_content .information_left {
        margin-right: 0;
    }
}

@media screen and (max-width: 500px) {
    .blank_letter.i::after {
        word-break: break-word;
    }

    .contact_content {
        padding: 30px 10px;
    }

    .list_before.info li {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .TEL:before,
    .TEL2:before,
    .PHONE:before,
    .FAX:before,
    .TAXID:before,
    .MAIL:before,
    .ADD:before,
    .ADD2:before {
        margin-right: 0;
    }


}