@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}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background-color: #444;
    color: #fff;
}

::selection {
    background-color: #444;
    color: #fff;
}

.swiper-banner .swiper-wrapper .swiper-slide:nth-of-type(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/bunny2/bg-05.png);
    width: 101%;
    max-width: 101%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.swiper-banner .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/bunny2/bg-07.png);
    width: 101%;
    max-width: 101%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}




@media screen and (max-width: 768px) {
    .swiper-banner .swiper-wrapper .swiper-slide img {
        display: none;
    }

    .swiper-banner .swiper-wrapper .swiper-slide:nth-of-type(1)::after,
    .swiper-banner .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
        display: none;
    }

    .swiper-banner .swiper-wrapper .swiper-slide:nth-of-type(1) {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 769/1001;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 10000;
        background-image: url(https://pic03.eapple.com.tw/bunny2/bg-09.jpg);
    }

    .swiper-banner .swiper-wrapper .swiper-slide:nth-of-type(2) {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 769/1001;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 10000;
        background-image: url(https://pic03.eapple.com.tw/bunny2/bg-10.jpg);
    }

    .bannerindex {
        padding-bottom: 0;
    }

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}

/*首頁+聯絡按鈕*/
.animated-arrow {
    background: #E38658;
}


/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background: #fff9e2;
}

.bannerindex {
    position: static;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

#content {
    background-image: url(https://pic03.eapple.com.tw/bunny2/bg-05.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: repeat-y;


}




/* 文章管理 */

.module_i_news section {
    max-width: 80%;
}

.i_blog_le {
    display: flex;
}



.module_i_news li a {
    display: flex;
    flex-direction: row-reverse;
    gap: 0;
}

.i_blog_ri {
    background-color: #fff;
    border: 30px solid #e4855b;
    padding: 70px 30px;
    position: relative;
    margin-left: 1px;
}

.module_i_news .title_i_box h6 {
    font-size: 60px;
    color: #FFC35C;
    font-family: "Arial";
    font-style: italic;
    text-transform: uppercase;
    font-weight: 900;
}

.module_i_news .title_i_box h4 {
    font-size: 40px;
    color: #303030;
    font-weight: bold;
}

.i_blog_ri h5 {
    font-weight: bold;
    font-size: 30px;
    color: #d75b31;
}

.module_i_news li a:after {
    display: none;
}

.module_i_news li .i_blog_le img {
    transition: all 0.5s;

}

.module_i_news li:hover .i_blog_le img {
    transform: scale(1.1);
    transition: all 0.5s;

}



@media screen and (max-width: 1440px) {
    .i_blog_ri h5 {
        font-size: 24px;
    }
}


@media screen and (max-width: 1024px) {
    .module_i_news section {
        max-width: 90%;
    }

    .i_blog_ri {
        border: 20px solid #e4855b;
        padding: 60px 30px;
    }
}

@media screen and (max-width: 768px) {
    .i_blog_ri h5 {
        font-size: 20px;
    }

    .module_i_news li a:before {
        display: none;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*選單設定*/
.nav-menu {
    margin: 0;
}

.main_header_area .container {
    max-width: 90%;
}

.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: #E38658;
}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a {
    color: #E38658;
}

.nav-dropdown>li {
    text-align: center;
}

/*  */

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 0;
    background: transparent;
    transition: all 0.5s;
}

.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #E38658;
    box-shadow: 1px 1px 5px #0000001e;
    transition: all 0.5s;
}


.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
}

.header_area.sticky .main_header_area {
    transition: all 0.3s;
}




.header_area .navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    transition: all 0.3s;
    justify-content: flex-end;
}

.header_area.sticky .navigation {
    padding: 10px 0;
    align-items: flex-end;
    transition: all 0.3s;
}


.header_area .stellarnav {
    position: relative;
    width: fit-content;
    z-index: 9900;
    line-height: normal;
    text-align: right;
    opacity: 0;
    transition: all 0.3s;
}

.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
}


.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: 0;
}

@media screen and (max-width: 1440px) {
    .main_header_area .container {
        max-width: 90%;
    }

}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        justify-content: flex-end;
        padding: 0;
        transition: all 0.3s;
    }

    .header_area.sticky .navigation {
        transition: all 0.3s;
    }

    .header_area .stellarnav ul {
        padding: 0;
        transition: all 0.3s;
    }

    .header_area.sticky .stellarnav ul {
        padding: 0;
        transition: all 0.3s;
    }
}

@media screen and (max-width: 768px) {
    .main_header_area .container {
        max-width: 90%;
    }

    .header_area.sticky .main_header_area {
        background: #E38658;
        width: 100%;
        height: 80px;
    }

}

/*  */


/*LOGO設定*/
.nav-header {
    position: absolute;
    z-index: 99999999;
    top: -10px;
    max-width: 170px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
}

.sticky .nav-header {
    opacity: 1;
    transition: all 0.5s;
}





.nav-brand img {
    width: 100%;
}

.header_area .nav-brand,
.header_area .nav-brand:focus {
    display: block;
    position: relative;
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    padding: 20px 40px;
    width: 100%;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand,
.header_area .nav-brand:focus {
    width: 100%;
    transition: all 0.3s;
}

.header_area .nav-brand img {
    filter: contrast(0) brightness(100);

    transition: all 0.3s;
}

.pageIndex .header_area .nav-brand img {
    filter: contrast(0) brightness(100);
    transition: all 0.3s;
}

.pageIndex .header_area.sticky .nav-brand img {
    filter: contrast(0) brightness(100);
    transition: all 0.5s cubic-bezier(1, -0.02, 1, -0);
}

.pageIndex .header_area .nav-brand::before {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    top: 0;
    left: 50%;
    height: 100%;
    width: 0;
    border: 1px solid #E38658;
    border-radius: 0 0 20px 20px;
    border-left: 0;
    border-right: 0;
}

.pageIndex .header_area .nav-brand::after {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
    background: #E38658;
}

.pageIndex .header_area.sticky .nav-brand::before {
    left: 0;
    width: 100%;
    transition-delay: 0s;
}

.pageIndex .header_area.sticky .nav-brand::after {
    top: 0;
    height: 100%;
    transition-delay: .35s;
}


/* 其他分頁 LOGO */
.header_area .nav-brand img {
    transition: all 0.5s cubic-bezier(1, -0.02, 1, -0);
}

.header_area .nav-brand::before {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #E38658;
    border-radius: 0 0 20px 20px;
    border-left: 0;
    border-right: 0;
}

.header_area .nav-brand::after {
    content: '';
    position: absolute;
    transition: inherit;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0 0 20px 20px;
    background: #E38658;
}



/*  */







.me_tp_features {
    display: none;
}

.stellarnav>ul>li>a {
    padding: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    margin: 0px 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.stellarnav>ul>li>a b {
    font-weight: bold;
}

/*  */


.header_area .stellarnav>ul>li>a {
    color: #fff;
    transition: all 0.3s;
}

.header_area.sticky .stellarnav>ul>li>a {
    color: #fff;
    transition: all 0.3s;
}

.header_area .stellarnav>ul>li>a:hover,
.header_area.sticky .stellarnav>ul>li>a:hover {
    color: #fff;
    transition: all 0.3s;
}


/*  */


.stellarnav li.has-sub>a:after {
    display: none;
}

/*下拉*/
.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: #E38658;
    ;
    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 a {
    padding: 10px 10px;
    border-left: 0px #E38658 solid;
    background: #f3ebcb;
    color: #303030;
    font-size: 14px;
    transition: all 0.3s;
}

.stellarnav li li a:hover {
    border-left: 10px #E38658 solid;
    transition: all 0.3s;
}

.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
}

.stellarnav ul ul {
    width: 160px;
    background: #000000ab;
}

.stellarnav ul ul ul {
    top: 0;
    left: 180px;
}




@media screen and (max-width: 1440px) {
    .stellarnav>ul>li>a {}


}

@media screen and (max-width: 1024px) {
    .stellarnav>ul>li:nth-child(4) {}

    .stellarnav>ul>li>a {
        font-size: 16px;
    }

}






@media screen and (max-width: 768px) {

    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 20px;
        width: auto;
        display: inline-block;
        opacity: 1;
    }

    .nav-header {
        position: absolute;
        z-index: 0;
        top: 5px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #fff;
        display: block;
        transform: scale(0.9);
    }

    .stellarnav>ul {
        text-align: center;
        padding: 0px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #E38658;
        color: #fff;
    }

    .stellarnav .icon-close:before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile.right>ul,
    .stellarnav.mobile.left>ul {
        border-right: 0px #eee solid;
        background-color: #fff;
    }

    .stellarnav.mobile>ul>li>a {
        padding: 25px 10px;
        border: 0;
    }

    .stellarnav.mobile>ul>li>a b:nth-child(2) {
        font-size: 12px;
        vertical-align: bottom;
        letter-spacing: 2px;
    }

    .stellarnav.mobile li.open {
        background: #fff;
    }

    .stellarnav.mobile ul ul {
        background-color: #fff;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 1px #E38658 solid;
    }

    .stellarnav.mobile li a {
        border-bottom: 0;
        background-color: transparent;
    }

    .stellarnav>ul>li>ul>li>a {
        background-color: #fff;
        border: 0;
        padding: 15px 15px;
    }

    .header_area.sticky .stellarnav>ul>li>a {
        color: #666;
        transition: all 0.3s;
    }

    .stellarnav>ul>li>ul>li {
        border: 0;
        background-color: #fff;
    }

    .header_area.sticky .nav-brand,
    .header_area .nav-brand:focus {
        width: 50px;
        padding: 0;
    }

    .header_area .nav-brand,
    .header_area .nav-brand:focus {
        width: 50px;
    }

    .stellarnav>ul>li:nth-child(4) {
        margin-right: 0;
    }

    .stellarnav li li a {
        padding: 10px 10px;
        border-left: 0px #E38658 solid;
        background: #000000c7;
        color: #666;
        font-size: 14px;
        transition: all 0.3s;
    }

    .stellarnav.mobile ul ul li {
        background-color: transparent;
    }

    .stellarnav.mobile li.open li.open {
        background: #fff;
        padding: 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
        top: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #E38658;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #E38658;
    }

    .header_area .stellarnav>ul>li>a {
        color: #666666;
        transition: all 0.3s;
    }

    .header_area.sticky .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }

    .stellarnav.mobile>ul {
        border-top: 0;
    }

    .stellarnav .dd-toggle {
        top: 17px;
    }

    .stellarnav a.dd-toggle .icon-plus:before {
        width: 15px;
    }

    .stellarnav a.dd-toggle .icon-plus::after {
        width: 15px;
    }

    .header_area .main_header_area {
        background: transparent;
        height: 80px;
        transition: all 0.3s;
    }

    .stellarnav.mobile li li.has-sub li.drop-left a {
        padding: 10px 40px 10px 30px;
        background: #0000002e;

    }
}

.page {
    display: none;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    border-top: none !important;
    padding: 50px 0 0;
    background: #E38658;
}


.footer_menu {
    border-bottom: none !important;
}

.copy {
    background: #E38658;
    color: #fff;
    border: none;
}

.copy a {
    color: #fff;
}

.footer_menu a:hover {
    background: #02642F;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    color: #fff;
}

.footer_info li p a {
    color: #fff;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
    border-bottom: 1px #fff solid;
}

.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.footer_logo {
    display: inline-block;
    vertical-align: top;
    width: 120px;
    margin: 0 10px;
}



.footer_logo img {
    width: 100%;
    filter: contrast(0) brightness(100);
}







/* 浮動 */

.info_fix_links {
    display: flex !important;
}


.linksBtn {
    display: none;
}

.info_fix_links a {
    background: #E38658;
}

.info_fix:hover>.linksBtn {
    background: #a15b38;
}

.info_fix_links a:hover {
    background: #a15b38;
}




@media screen and (max-width: 768px) {
    .footer_menu {
        text-align: center;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/


.banner {
    display: flex;
    height: 470px;
    padding: 0;
    background: transparent;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(https://pic03.eapple.com.tw/bunny2/banner-06.png);

}

.banner h5 {
    display: flex;
    text-wrap: nowrap;
    text-wrap: nowrap;
    font-size: 40px;
    color: #fff;
    text-align: center;
    flex-direction: column-reverse;
}

.banner h5::after {
    content: "";
    display: block;
    color: #FFC35C;
    font-size: 40px;
    text-transform: uppercase;
    font-family: "Arial";
    font-style: italic;
    font-weight: 900;
}

.banner.banA {}

.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banD {}




.banner.banE {}

.banner.banE h5::after {
    content: "Patient testimonials";
}


.banner.banblog {}

.banner.banblog h5::after {
    content: "NEWS";
}




@media screen and (max-width: 1024px) {
    .banner {
        height: 760px;
    }



    .banner h5 {
        font-size: 30px;
    }

    .banner h5::after {}
}


@media screen and (max-width: 768px) {
    .banner {
        display: flex;
    }

    .banner::before {
        background-image: url(https://pic03.eapple.com.tw/bunny2/banner-05.png);
        padding-bottom: 58%;
        background-position: center;
    }

    .banner h5 {}

}

@media screen and (max-width: 500px) {
    .banner {
        display: flex;
        height: 450px;
        padding: 0;
    }

}










/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
    border: 1px solid #E38658 !important;
    color: #E38658;
}

.products-list a:hover .more {
    background: #E38658;
    border-color: #E38658;
    color: #ffffff;
}

.products-list .item {
    width: 32%;
}

.products-list .item a:hover .more {
    background: #E38658;
    color: #fff;
    letter-spacing: 2px;
}

.products-list .name {
    margin-bottom: 15px;
}



/*外層*/
.product-layer-two li a {
    color: #E38658;
    background: #fff;
    border: 1px solid #E38658;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {
    background: #E38658;
    color: #fff;
}

.product-layer-two li.active>a {
    background: #E38658;
    color: #fff;
    font-weight: normal;
}

.sidebarBtn {
    border: none;
}

.sidebarBtn h2 {
    color: #E38658;
}

ul.prod li h3.prod-thumb {
    background: #E38658;
    color: #fff;
}

.half_box {
    width: 100%;
}

.half_box li.btn_blankTop {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.productBtn {
    width: 46%;
    line-height: 50px;
    font-size: 15px;
    background-repeat: no-repeat;
    border: none;
    margin-top: 10px;
    text-align: center;
    padding-left: 0px;
    background-image: none;
}

.product_info {
    display: none;
}

.prod-item.is-active {
    display: block;
}

.google_link {
    width: 60%;
    padding: 10px 20px;
    background-color: #f5bad5;
    color: #fff;
    border-radius: 5px;
    margin: 10px 0;
}









/*內層*/
.lastPage {
    background: #E38658;
}

.nextaction {
    background-color: #E38658;
}

.lastaction {
    color: #fff;
    background-color: #E38658;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_btn_back {
    background: #E38658;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #E38658 !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #E38658;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}

.subbox_item a:after {
    display: none;
}

.blog_list_le {
    overflow: hidden;
    padding: 0;
}

.subbox_item a img {
    transition: all 0.5s;
}

.subbox_item a:hover img {
    transform: scale(1.1);
    transition: all 0.5s;
}

.blog_list_ri h5 {
    color: #E38658;
    font-weight: bold;
    font-size: 24px;
}

.subbox_item a {
    grid-template-columns: 260px 1fr;
}


h5.blog_le_t em {
    color: #FFC35C;
}

h5.blog_le_t span {
    display: none;
}

.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: 1px #303030 solid;
    overflow: hidden;
}

.accordion li .link a {
    color: #303030;
}

.blog_list_ri p {
    font-size: 16px;
    color: #303030;
}

.news_related {
    background: #f3ebcb;
}

.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #FFC35C;
}

.news_related_list li a {
    background: #000000a8;
}

.news_related_list li a p {
    color: #fff;
}

.blog_box_edit {}

/*文章分享變1排3個*/
.blog_page .main_part {
    max-width: 1400px;
}

.blog_list_le,
.blog_list_ri {
    width: 100%;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subbox_item {
    width: 100%;
    border-bottom: 1px #00000010 solid;
}

.articel_mainPic {
    display: none;
}


@media screen and (max-width: 1024px) {
    .subbox_item {}
}

@media screen and (max-width: 600px) {
    .subbox_item {
        width: 100%;
    }

    .subbox_item a {
        display: flex;
        flex-direction: column;
    }
}

/**/




/* 文章2 */










.article_b .subbox_item {
    border-bottom: 0;
}

.article_b .subbox_item a {
    display: flex;
    flex-direction: column;
}

.article_b .blog_list_le {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.article_b .blog_page .main_part {
    max-width: 80%;
}

.article_b .blog_subbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 20px;
}

.article_b .subbox_item a:before {
    bottom: 0;
    transition: 0.3s;
}

.blog_list_le,
.blog_list_ri {
    padding-bottom: 20px;
}



@media screen and (max-width: 1024px) {
    .article_b .blog_subbox {
        grid-template-columns: repeat(2, 1fr);

    }

}

@media screen and (max-width: 500px) {
    .article_b .blog_subbox {
        grid-template-columns: repeat(1, 1fr);

    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
}

.show-list .item:hover .show_name {
    color: #E38658;
}


/*次分類頁面*/
.other_album_choice li {
    background: #E38658;
}

.other_subalbum li p {
    line-height: 220%;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.subalbum-menu h2 {
    color: #E38658;
}

/*照片頁*/
.pic-list .show_pic {
    height: 40vh;
    max-height: 240px;
    padding-bottom: 0;
}

.pic-list .show_pic img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_album {
    display: none;
}


.show-list {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}












@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }
}

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.promotion_title h2 {
    border-bottom: 2px solid #E38658;
}

.promotion_title {
    border-bottom: 1px solid #E38658;
}



@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;
    }
}


/*聯絡我們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: 0px auto;
    padding: 80px 10px;
    display: block;
}

.contact_content .information_left>h4.blank_letter {
    display: none;
}

.contact_content .list_before {
    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: auto;
    }
}

/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {
    max-width: 1200px;
}

.contact_content .information_left {
    display: none;
    width: 100%;
}

ul.list_before {
    display: none;
}

.information_left h4.blank_letter {
    display: none;
}

.blank_letter {
    font-family: 'Josefin Sans', 'sans-serif', '微軟正黑體';
    padding-top: 30px;
    font-size: 26px;
    color: #C6B48F;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.contact_form li .form__label {
    color: #303030;
    font-weight: bold;
    font-size: 16px;
}

.contact_form li .form__label:not(span) {
    color: #303030;
    font-weight: bold;
    font-size: 16px;
}






.blank_letter {
    padding-top: 30px;
    font-family: "微軟正黑體";
    font-size: 40px;
    color: #FFC35C;
    background-position: left bottom;
    background-repeat: no-repeat;
    text-align: left;
    width: 100%;
}

.blank_letter::after {
    content: "FORM";
    display: block;
    font-family: "Arial";
    font-size: 20px;
    color: #E38658;
    padding: 10px 0;
    margin-bottom: 10px;
    font-style: italic;
}

.contact_form {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 15px;
    color: #444;
    gap: 20px;
}


.contact_form li {
    grid-template-columns: 130px 1fr;
}

.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
}

.contact_form li:has(input[type=checkbox]) .form__insert,
.contact_form li:has(input[type=radio]) .form__insert {
    color: #303030;
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(170px, 1fr));
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: #fff;
    border: 1px #ddd solid;
    padding: 15px 0;
    color: #303030;
}

.form select {
    background: #fff;
    color: #303030;
}

.form select option {
    background: #00000057;
    color: #fff;
}

.contact_form li.last cite {
    background: #E38658;
    color: #fff;
}

.star {
    margin-left: -10px;
}

.contact_editbox {
    padding: 0;
}




@media screen and (max-width: 600px) {
    .contact_form li .form__label {
        background: transparent;
    }
    .contact_form li {
    grid-template-columns: 1fr;
}
}