@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;
}



#content {
    width: 100%;
    min-height: 80vh;
    background-image: url(https://pic03.eapple.com.tw/seahugart/bg-05.jpg);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path { display:none;}

/*首頁+聯絡按鈕*/
.animated-arrow { background:#ADA17E ;}
.swiper-pagination {    left: 50%;    margin-left: 0;    transform: translate(-50% , 0);}


/*預設解除背景輪播*/
#content_main { margin:0;}
.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-wrapper .swiper-slide:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/seahugart/bg-15.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}
.swiper-wrapper .swiper-slide:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/seahugart/bg-16.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}
.swiper-wrapper .swiper-slide:nth-child(3)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/seahugart/bg-27.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.swiper-slide img {
    height: auto;
    position: relative;
    right: 120%;
    opacity: 0;
    animation: show-img 2s ease-in-out forwards;
}



@keyframes show-img{
    0%{
        opacity: 0;
        right: 120%;
    }
    100%{
        opacity: 1;
        right: 0;
    }
}



@media screen and (max-width: 768px) {
    .swiper-wrapper .swiper-slide:nth-child(2)::after,.swiper-wrapper .swiper-slide:nth-child(3)::after {
        background-image: url(https://pic03.eapple.com.tw/seahugart/bg-15.png);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*選單設定*/
.nav-menu {    margin: 0;}
.main_header_area .container {    max-width: 80%;}
.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: #007AC0;}
.nav-dropdown>li:hover>a, .nav-dropdown>li.focus>a {    color: #007AC0;}
.nav-dropdown>li {    text-align: center;}
.header_area {
    position: fixed;
    width: 100%;
}

/*  */
.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
}
.header_area.sticky .main_header_area {
    background: #54524deb;
    box-shadow: #00000047 1px 1px 5px;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}




.header_area .navigation {
    width: 100%;
    position: relative;
    padding: 50px 0 30px 210px;
    transition: all 0.3s;
}
.header_area.sticky .navigation {
    padding: 10px 0 10px 210px;
    transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 0;
        transition: all 0.3s;
    }
    .header_area.sticky .navigation {
        padding: 0;
        transition: all 0.3s;
    }
    .header_area .stellarnav ul {
        text-align: right;
        padding:  10px 0;
        transition: all 0.3s;
    }
    .header_area.sticky .stellarnav ul {
        text-align: right;
        padding: 10px 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: #54524deb;
    }
    
}
/*  */


.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: 0 25px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}
.stellarnav > ul > li > a b {
    font-weight: 500;
}
/*  */


.header_area .stellarnav > ul > li > a {
    color: #54524D;
    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: #007AC0;
    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: #007AC0;;    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 #007AC0 solid;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}
.stellarnav li li a:hover{
    border-left: 10px #007AC0 solid;
    transition: all 0.3s;
}
.stellarnav > ul > li:nth-child(4) ul li:nth-child(1){
    display: none;
}
.stellarnav ul ul {
    background: #ffffffd4;
}




@media screen and (max-width: 1440px) {
    .header_area .navigation {
        padding: 30px 0 10px 210px;
    }
    .nav-brand {
        display: inline-block;
        width: 130px;
    }
    .main_header_area .container {
        max-width: 90%;
    }
}


@media screen and (max-width: 1024px) {
    .header_area .navigation {
        padding: 0;
    }
    
}



@media screen and (max-width: 768px) {
    
    .stellarnav.mobile {
        position: absolute;
        left: 0;
        top: 10px;
        width: auto;
        display: inline-block;
    }
    .stellarnav .menu-toggle span.bars span {
        background: #666;
    }
    .header_area.sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }
    .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #666;
        display: block;
        transform: scale(0.9);
    }
    .header_area.sticky .stellarnav .menu-toggle:after {
        color: #fff;
    }
    .stellarnav > ul {
        text-align: center;
        padding: 0px 0;
    }
    
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
        background: #007AC0;
        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 #007AC0 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;
    }
    .stellarnav > ul > li > ul > li {
        border: 0;
        background-color: #fff;
    }
    .stellarnav.mobile ul ul li{
        background-color: #fff;
    }
    .stellarnav.mobile li.open li.open {
        background: #171717e0;
        padding: 3px;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 10px;
        border: 0;
    }
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #007AC0;
    }
    .stellarnav a.dd-toggle .icon-plus:before {
        border-bottom: solid 3px #007AC0;
    }
    .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;
    }
    .stellarnav.mobile > ul > li:nth-child(4) ul li:nth-child(1){
        display: none;
    }
    .header_area.sticky .stellarnav > ul > li > a {
        color: #666666;
        transition: all 0.3s;
    }
    .header_area .stellarnav ul {
        text-align: center;
        padding: 0;
        transition: all 0.3s;
    }
    
}
.page {
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO設定*/

.header_area .nav-brand img {
    position: relative;
    top: 0px;
    max-width: 100%;
    opacity: 1;
    transition: all 0.3s;
}
.header_area.sticky .nav-brand img {
    opacity: 0;
    transition: all 0.3s;
}
.header_area a.nav-brand::before {
    content: "";
    display: block;
    width: 160%;
    height: 120%;
    position: absolute;
    top: -210px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: -2;
    background: #333;
    transition: all 0.3s;
}
.header_area a.nav-brand::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/seahugart/LOGO-28.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    position: absolute;
    top: -210px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: -2;
    opacity: 0;
    transition: all 0.3s;
}
.header_area.sticky a.nav-brand::after {
    top: 0px;
    opacity: 1;
    transition: all 1s;
}
.nav-header {
    position: absolute;
    z-index: 123;
    top: 9px;
    left: 0;
}
.header_area.sticky a.nav-brand::before {
    top: -10px;
    transition: all 0.3s;
}



.footer_logo img {width: 100%;margin-top: ;}
.footer_logo {
    display: inline-block;
    vertical-align: top;
    width: 20%;
    margin: 0 10px;
    margin-right: 15%;
}






.nav-brand {
    display: inline-block;
    width: 120px;
}

@media screen and (max-width: 1024px) {
    .nav-brand {
        width: 100px;
    }
    .header_area .nav-header {
    }
    .header_area.sticky .nav-header {
        display: block;
    }
    .nav-brand img {
        position: relative;
        max-width: 100%;
        z-index: 100000;
        transition: all 0.3s;
    }
    .header_area.sticky a.nav-brand::before {
        width: 140%;
        left: 50%;
        height: 130%;
        transition: all 0.3s;
    }
    .stellarnav > ul > li > a {
        margin: 0 15px;
    }
    
}











@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 .nav-brand {
    display: inline-block;
    width: 130px;
    position: relative;
    transition: all 0.5s;
}
.header_area.sticky .nav-brand {
    display: inline-block;
    width: 100px;
    transition: all 0.5s;
    position: relative;
}
.header_area.sticky a.nav-brand::before {
    width: 160%;
}
.header_area a.nav-brand::before{
    display: none;
}
.header_area.sticky a.nav-brand::before{
    display: none;
}
.header_area .nav-header {
    position: relative;
    text-align: center;
    display: block;
}
.nav-header {
    z-index: 0;
    top: -13px;
}
.footer_logo {
    display: block;
    margin: 0 auto;
}

.header_area.sticky .nav-header {
    display: block;
    top: 5px;
}
.header_area .nav-header {
    position: relative;
    text-align: center;
    display: block;
    top: 5px;
}
.header_area.sticky .main_header_area {
    backdrop-filter: none;
}
.header_area .nav-brand img {
    opacity: 0;
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*Footer*/
.footer{border-top: none !important;padding: 50px 0 0;background: #54524deb;}
.footer_menu { border-bottom: none !important;}
.copy {background: transparent;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:nth-child(2){
    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_info {
    padding: 0;
}
.footer_logo a {
    position: relative;
    display: block;
    width: 100%;
}
.footer_logo a::before{
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/seahugart/LOGO-28.png);
    background-position: center;
    width: 100%;
    height: 160px;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: 0%;
    left: 0;
}
.footer_logo a::after{
    content: "私立西河美術短期補習班  府教終字第1040137326號";
    display: block;
    width: 100%;
    color: #ccc;
    text-align: center;
    word-break: keep-all;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 12px;
}


.footer_info ul {
    display: inline-block;
    vertical-align: top;
    width: 60%;
}


.footer_logo img {
    display: none;
}



@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%;
    }
    .footer_info {
        display: flex;
        flex-flow: wrap;
        flex-direction: column;
        align-content: center;
        align-items: center;
        padding-bottom: 50px;
    }
    .footer_info li:nth-child(1) {
        text-align: center;
    }
    .footer_info li:nth-child(2) {
        text-align: center;
    }
    .footer_info ul {
        display: inline-block;
        vertical-align: top;
        width: 90%;
    }
    .footer_logo a {
        position: relative;
        display: block;
        width: 160px;
    }
    .footer_logo a::before {
        content: "";
        display: block;
        background-image: url(https://pic03.eapple.com.tw/seahugart/LOGO-28.png);
        background-position: center;
        width: 100%;
        height: 160px;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0px);
    }
    .footer_logo {
        width: auto;
    }
    
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background-image: url(https://pic03.eapple.com.tw/seahugart/banner-04.jpg);
    padding: 0;
    height: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 25%;
}
.banner h5 {
    writing-mode: vertical-rl;
    font-family: "Noto Serif TC", serif;
    color: #333333;
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
}
.banner h5::after {
    content: "";
    font-family: "Noto Serif TC", serif;
    writing-mode: horizontal-tb;
    color: #333333;
    display: block;
    font-size: 22px;
    margin-top: 15px;
}
.banner.banA h5::after {
    content: "NEWS";
}
.banner.banB {
    display: none;
}
.banner.banC h5::after {
    content: "CONTACT";
}
.banner.banD {}
.banner.banE {}
.banner.banblog h5::after {
    content: "OUR STORY";
}

@media screen and (max-width: 768px) {
    .banner {
        height: 370px;
    }
    .banner h5 {
        writing-mode: vertical-rl;
        font-family: "Noto Serif TC", serif;
        color: #333333;
        display: flex;
        align-items: center;
        font-size: 40px;
        font-weight: bold;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0px);
    }
}

/* 分頁 */

/* 分頁 */
.other_select_page .promotion_title{
    display: none;
}
.other_select_page .other_promotion{
    display: none;
}

/*其他分頁*/
/*其他分頁*/
.promotion_title h2 {
    display: block;
    border-bottom: none;
    text-align: left;
    font-size: 33px;
    color: #333333;
    font-family: "Noto Serif TC", serif;
}
.promotion_title {
    padding: 13px 0;
    display: block;
}
.promotion_title span {
    border: none;
}
.promotion_title em {
    border: none;
    padding: 2px 7px;
    margin: 0 2px 2px 0;
}
.edit * {
    word-break: break-all;
    color: #6D6D6D;
}

/* 底下分類 */
.other_promotion {
    list-style: none;
    display: block;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.other_promotion li {
    font-size: 13px;
    line-height: 20px;
    color: #666;
    display: inline-block;
    vertical-align: top;
    width: 30%;
    margin: 10px;
}
.other_promotion li a {
    display: block;
    border: none;
    padding: 30px 20px;
    width: 100%;
    margin: 0;
    position: relative;
    background: transparent;
    transition: all 0.3s;
}
.other_promotion li a:hover {
    background: #0000000d;
    transition: all 0.3s;
}
.other_promotion li a:before{
    display: none;
}
.other_promotion li a:after{
    display: none;
}
.other_promotion .pmtTime span {
    float: left;
    font-size: 13px;
    margin-left: 0;
}

.promotion_title h2 span{
    display: none;
}
.promotion_title * {
    vertical-align: middle;
    color: #6D6D6D;
}

.pmtTitle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #C5C5C5;
    flex-direction: column;
}
.other_promotion .pmtTitle h3 {
    font-size: 17px;
    color: #333333;
    margin: 10px 0 0 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
    font-weight: normal;
}




@media screen and (max-width: 768px) {
    .other_promotion li {
        width: 45%;
    }
    
}
@media screen and (max-width: 768px) {
    .other_promotion li {
        width: 90%;
    }
    
}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {    border: 1px solid #ADA17E !important;    color: #ADA17E;}
.products-list a:hover .more {    background: #ADA17E;    border-color: #ADA17E;	color: #ffffff;}


/*外層*/
.product-layer-two li a {    color: #ADA17E;    border: 1px solid #ADA17E;    transition: all 0.3s;}
.product-layer-two li:hover > a { background: #ADA17E;    color: #fff;}
.product-layer-two li.active > a {background: #ADA17E;    color: #fff;	font-weight: normal;}

/*內層*/
.lastPage {    background: #ADA17E;}
.nextaction {    background-color: #ADA17E;}
.lastaction {    color: #fff;    background-color: #ADA17E;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_back a.article_btn_back {    background: #ADA17E;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #00000026 !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;}
.link a {    width: 100%;    display: block;    padding: 15px 10px;}
.accordion li .link {    padding: 0;}


/* 左邊欄位 */
h5.blog_le_t {
    display: none;
}
.blog_search input[type=search]:focus {
    color: #fff;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #353535;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #353535 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 #353535;
    border: none;
    color: #353535;
    transition: all 0.3s;
}

.blog_le .accordion {
    border: none;
    border-radius: 0;
}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a {
    color: #4C4C4C !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 {
    background: #0000000d;
    color: #565656;
}
.submenu a:before{
    display: none;
}
.blog_le .accordion li i {
    position: absolute;
    top: 27px;
    right: 20px;
    font-size: 16px;
    color: #444;
    transition: all 0.4s ease;
}

.blog_le .accordion > li:hover.open{
    background-color: transparent !important;
}



.subbox_item a:after {
    display: none;
}
.blog_list_ri h5 {
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    font-family: "Noto Serif TC", serif;
    margin: 10px 0;
}
.blog_list_ri h5::after {
    content: "";
    display: block;
    margin: 10px 0;
    width: 100%;
    height: 1px ;
    background: #333333;
}


.blog_list_le {
    overflow: hidden;
}
.blog_list_le img{
    transition: all 0.3s;
}
.blog_list_le img:hover{
    transform: scale(1.1);
    transition: all 0.3s;
}






/*文章分享變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: calc(100% / 3);    padding: 5px;}
@media screen and (max-width: 1024px) {.subbox_item {    width: 50%;}}
@media screen and (max-width: 600px) {.subbox_item {    width: 100%;}}
/**/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part , .album_class_page .main_part , .album_info_page .main_part {    max-width: 1400px;}
.show-list .item:hover .show_name {    color: #ADA17E;}
.show-list .show_pic {    height: 30vh;    max-height: 290px;    padding-bottom: 0;}
.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 30vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

/*次分類頁面*/
.other_album_choice li {    background: #ADA17E;}
.other_subalbum li p {    line-height: 220%;}
.other_subalbum li a div {
    height: 30vh;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}
.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}
.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;}


/*照片頁*/
.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;
}


@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: none;}
.promotion_title {border-bottom: #333333 1px solid;}



@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
.nav-menu {    margin: 0;}
.nav-menu>li:not(.tp_links) {    padding-right: 0;}
.nav-dropdown>li {    text-align: left;}
.nav-dropdown>li>a {    width: calc(100% - 45px);}

/*手機版LOGO設定*/
.footer_logo { margin-left: unset; margin: auto; text-align: center; }

}

@media screen and (max-width: 600px) {

/*手機板大圖*/
/*
.swiper-slide img { display:none; }
.swiper-slide {    width: 100%;    height: 0;    padding-bottom: calc(100% / 3 * 4);}
.swiper-slide:nth-child(1) { background-image:url(https://pic03.eapple.com.tw/.../Banner-03.png) ; background-size:cover;   background-position: center;}
.swiper-slide:nth-child(2) { background-image:url(https://pic03.eapple.com.tw/.../Banner-04.png) ; background-size:cover;   background-position: center;}
*/

}


/*聯絡我們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: 50px auto;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {max-width: 1200px;}
.contact_content .information_left {
    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: #333333;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.contact_form li .form__label {
    color: #333333;
}

.blank_letter {
    padding-top: 0;
    font-family: "Noto Serif TC", serif;
    font-size: 40px;
    color: #333333;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px #333333 solid;
}
.blank_letter .note{
    position: absolute;
    top: 0;
    left: 0;
}
.blank_letter::after {
    content: "Form";
    display: block;
    font-family: "Noto Serif TC", serif;
    font-size: 16px;
    color: #333333;
    padding: 0;
}

.contact_form {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 15px;
    color: #444;
}

.contact_form li.last cite {
    background: #333333;
    color: #fff;
}
