@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/








/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tianchuanfa/text01.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before{
    animation: inside1 2s;
    animation-timing-function: linear;
}
/*----------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/tianchuanfa/text02.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: inside2 2s;
    animation-timing-function: linear;
}
/*---------下方波浪--------------*/
.pageIndex .swiper-slide.swiper-slide:nth-child(n):after {
    content: "";
    position: absolute;
    height: 500px;
    width: 100%;
    bottom: 0%;
    z-index: 1;
    background-image: url(https://pic03.eapple.com.tw/tianchuanfa/cloud.png);
    background-repeat: repeat;
    background-position: center;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
    animation: scroll 60s steps(15000) infinite;
    background-size: cover;
}
/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {transform: translate(0%, -5%);opacity: 0.5;filter: blur(5px);}
    50%{filter: blur(1px);}
	100%{opacity: 1;}
}
@keyframes inside2{
	0% {transform: translate(0%, -10%);opacity: 0;filter: blur(5px);}
	100%{opacity: 1;}
}

@keyframes scroll{
    0% {background-position: 0;}
    100% {background-position: -2000px;}
}
/*-----------------------------------------*/

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: #ffffffa3;
    border-bottom: 1px solid #fff;
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    transition: .5s all;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #ffffff4d;
    transition: .5s all;
}
.main_header_area .container {
    max-width: 95%;
    margin: auto;
    transition: .5s all;
}
.header_area.sticky .main_header_area .container {
    max-width: 80%;
    transition: .5s all;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 140px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.me_tp_features {
    display: none;
}
.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    filter: blur(9px);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    opacity: 0;
    transition: .5s;
}
.stellarnav > ul > li:hover:before {
    transition: .5s;
    opacity: 1;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #645e48;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 80px;
    height: 80px;
    margin: 0 10px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-family: noto serif TC;
    font-weight: 700;
}
.stellarnav > ul > li:nth-of-type(1) {
    display: none;
}/*header首頁按鈕隱藏*/
.stellarnav li.has-sub > a:after {display: none;}/*下拉箭頭隱藏*/
.stellarnav > ul > li.has-sub > a {padding-right: 0px;}
/*-------------------------下拉選項---------------------------*/
.stellarnav ul ul {
    top: auto;
    width: 200px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    display: none;
    background: #ffffff;
}
.stellarnav li li {
    display: block;
    border: 0;
    border-bottom-width: 0;
    border-bottom: 1px solid #ccc;
}
.stellarnav li li:last-of-type {
    border-bottom-width: 0px;
}
.stellarnav li a {
    padding: 10px 10px;
    display: block;
    color: #373222;
    font-family: noto serif TC;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

/*------------*/
.linksBtn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    color: #FFFFFF;
    background-color: #71674c;
    transition: .3s;
    font-size: 20px;
}
.info_fix:hover>.linksBtn {
    background: #71674c;
}
.info_fix_links a {
    display: flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    transition: .3s;
    background: #766e56a6;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
}
.info_fix_links a:hover {
    background: #666358;
}











/*上方選單解除滑動固定
.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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*-----------------------footer-------------------------*/
.footer {
    font-family: noto serif TC;
    background: url(https://pic03.eapple.com.tw/tianchuanfa/footer.jpg);
    background-position: bottom;
    background-attachment: fixed;
    padding: 50px 0 0;
    font-size: 14px;
    position: relative;
    z-index: 99;
}
.footer .center {
    position: relative;
    max-width: 1300px;
}
.footer_info {
    padding: 0;
    display: grid;
    grid-template-columns: unset;
    grid-gap: 20px;
    padding-right: unset;
    justify-items: center;
}
.box_link {
    display: none;}
.footer_info li:nth-child(1) {
    text-align: center;
}
.footer_info li p {
    line-height: 190%;
    letter-spacing: 1px;
    font-size: 14px;
    color: #645e48;
    font-weight: 600;
}
.footer_info li p.line:before {
    content: '官方Line：';
}
.footer_info li p.tel:before {
    content: '諮詢專線：';
}
.footer_info li:nth-child(2):before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #e5e1c7;
    margin-bottom: 20px;
}
.footer_menu {
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    grid-gap: 10px 0px;
}
.footer_menu a:nth-of-type(1), .footer_menu a:nth-of-type(2) {
    display: none;
}/*回首頁+首頁按鈕隱藏*/
.footer_menu a {
    display: inline-block;
    padding: 6px 6px;
    border: 0px;
    margin: 0 2px 0px 0;
    font-size: 15px;
    font-weight: 900;
    line-height: 100%;
    color: #666629;
    background: none;
    letter-spacing: 1px;
    transition: .5s;
}
.footer_menu a:hover {
    background: #6d6a4d;
    color: #fff;
    transition: .5s;
}
/*------------------------*/
.copy {
    text-align: center;
    padding: 7px 0;
    letter-spacing: 1px;
    font-size: 13px;
    color: #cac4ac;
    border-top: 0px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.copy a {
    color: #cac4ac;
}

/*-----------結束----------*/


/*----首頁下方串接-影片專區-文章管理-----*/
.module_i_news01 .title_i_box {
    padding-bottom: 10px;
    margin-bottom: 50px;
    border-bottom: 1px solid #c9c9c9;
}
.module_i_news01 .title_i_box h4 {
    font-size: 35px;
    color: #62583e;
    font-weight: 700;
    font-family: noto serif TC;
    letter-spacing: 1px;
    text-align: left;
}
.module_i_news01 .title_i_box h4:after {
    content: "VIDEO";
    display: block;
    font-family: 'Merriweather';
    font-size: 15px;
    color: #af9b44;
    letter-spacing: 1px;
    margin-top: 5px;
}
.module_i_news01 .module_i_news_list ul {
    list-style: none;
    display: block;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 40px;
}
.module_i_news01 li a {
    position: relative;
    display: grid;
    grid-template-columns: unset;
    grid-gap: 10px;
}
.module_i_news01 .i_blog_ri h5 {
    font-size: 20px;
    font-family: noto serif TC;
    font-weight: 600;
    color: #122004;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.module_i_news01 .i_blog_ri em {
    display: none;}
.module_i_news01 .i_blog_ri p {
    display: none;
}
.module_i_news01 li a:before {
    content: 'WATCH MORE +';
    font-family: 'Merriweather';
    font-weight: 100;
    position: absolute;
    z-index: 19;
    bottom: unset;
    right: unset;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    opacity: 0;
    text-align: center;
    font-size: 16px;
    color: #c1a414;
    transition: all .6s;
}
.module_i_news01 li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgb(255 255 255 / 85%);
    opacity: 0;
    border: 0px;
    transition: all .6s;
}


/*------天界聖經-文章管理------*/
.module_i_news02 section {
    background: #ffffff8c;
    padding: 15px 25px;
}
.module_i_news02 .title_i_box {
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: center;
}
.module_i_news02 .title_i_box h4 {
    font-size: 35px;
    color: #62583e;
    font-weight: 700;
    font-family: noto serif TC;
    letter-spacing: 1px;
    text-align: center;
}
.module_i_news02 .title_i_box h4:after {
    content: "ARTICLE";
    display: block;
    font-family: 'Merriweather';
    font-size: 15px;
    color: #af9b44;
    letter-spacing: 1px;
    margin-top: 5px;
}
.module_i_news02 .module_i_news_list {
    padding: 0;
    padding-bottom: 30px;
}
.module_i_news02 ul {
    grid-template-columns: unset;
    grid-gap: 30px;
}
.module_i_news02 li {
    border-bottom: 1px solid #eee;
}
.module_i_news02 li a {
    grid-template-columns: 1fr;
}
.module_i_news02 .i_blog_le {
    display: none;
}
.module_i_news02 .i_blog_ri {
    display: grid;
    gap: 10px;
    padding: 5px 10px;
}
.module_i_news02 .i_blog_ri h5 {
    order: 1;
    font-family: noto serif TC;
    font-weight: 600;
    letter-spacing: 1px;
    color: #122004;
    height: 32px;
}
.module_i_news02 .i_blog_ri em {
    display: none;
}
.module_i_news02 .i_blog_ri p {
    order: 2;
    font-size: 14px;
    color: #666;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 32px;
    line-height: 200%;
    margin-top: 3px;
}
.module_i_news02 li a:before {
    content: 'READ MORE +';
    position: absolute;
    font-family: 'Merriweather';
    letter-spacing: 1px;
    font-weight: 100;
    z-index: 19;
    bottom: unset;
    right: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-align: center;
    font-size: 16px;
    color: #af9b44;
    transition: all .6s;
}
.module_i_news02 li a:after {
    border: 0;
    background: rgb(255 255 255 / 90%);
}
/*---------首頁串接購物車------------*/
.prod_part {
    padding: 50px 20px;
    padding-bottom: 120px;
}
.i_prod_tit, .i_video_tit {
    text-align: right;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 10px;
    margin-bottom: 50px;
}
.i_prod_tit span, .i_video_tit span {
    font-size: 35px;
    color: #62583e;
    font-weight: 700;
    font-family: noto serif TC;
    letter-spacing: 1px;
}
.i_prod_tit span:after {
    content: "PRODUCT";
    display: block;
    font-family: 'Merriweather';
    font-size: 15px;
    color: #af9b44;
    letter-spacing: 1px;
    margin-top: 5px;
}
/*------結束-------*/

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}

@media screen and (max-width: 1200px) {
.main_header_area .container {
    max-width: 100%;}
.header_area.sticky .main_header_area .container {
    max-width: 100%;}    
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}

@media screen and (max-width: 600px) {
}
/*------購物車設定-------*/
.product_page .product_menu_list {
    position: relative;
    width: 240px;
    letter-spacing: 1px;
    border-right: 1px solid #d1d0c6;
    min-height: 30vw;
}
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #d1d0c6;
    margin-bottom: 15px;
}
.product-layer-two li a {
    position: relative;
    border: 0px;
    background: unset;
    padding: 10px 16px;
    display: block;
    font-size: 16px;
    color: #122004;
    font-family: noto serif TC;
    font-weight: 600;
}
.product-layer-two li i {
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #122004;
}
.product-layer-two li li {
    margin-bottom: 5px;
}
.product-layer-two > li ul > li + li {
    margin-top: unset;
}
.product-layer-two li li a {
    padding: 12px 16px;
    font-weight: 500;
    font-family: unset;
    color: #675c39;
    font-size: 14px;
}

/*-------------------------*/
.product_page .products-list, .product-wrapper {
    width: calc(100% - 300px);
}
.products-list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-gap: 50px 30px;
}
.products-list .name {
    font-size: 15px;
    font-family: noto serif TC;
    font-weight: 600;
    letter-spacing: 1px;
    color: #122004;
    margin-top: 10px;
    line-height: 2.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.5em;
    padding: 0 5px;
}
.products-list .more {
    border: 1px solid #ADA17E;
    color: #ADA17E;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 30px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0px;
}
/*----------------------------------------*/
@media screen and (max-width: 1024px) {
.product_page .products-list, .product-wrapper {
    width: calc(100% - 270px);
}
}
@media screen and (max-width: 768px) {
.product_page .product_menu_list {
    width: 100%;
    order: 0;
    min-height: unset;
}
.product_menu_list>h5 {
    font-size: 1.6em;
    font-family: noto serif TC;
    font-weight: bold;
    margin-bottom: 0px;
    padding-right: 1.2em;
    padding-bottom: 10px;
    position: relative;
    color: #122004;
    border-bottom: 1px solid #aba07d;
}
a.pd_menu_toggle i {
    width: 1.5em;
    text-align: center;
    color: #122004;
}
}
/*------------下層----------------------*/
.product_info_page .show_content {
    padding-top: 30px;
}
.sidebarBtn h2 {
    color: #122004;
    font-size: 24px;
    font-family: noto serif TC;
    letter-spacing: 1px;
}
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #8f7025;
}
.prod_related {
    background: unset;
    padding: 25px 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #122004;
    font-family: noto serif TC;
    font-weight: 600;
    letter-spacing: 1px;
}

@media screen and (max-width: 1024px) {
.product-wrapper {
    width: 100%;
}
}

@media screen and (max-width: 768px) {
.product_info_page .show_content {
    padding-top: 0px;
}
.mobile_product_name {
    color: #122004;
    font-family: noto serif TC;
    letter-spacing: 1px;
}
}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; 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;}
}
/*讓噪點填充整頁*/
#page {
    position: relative;
    z-index: 0;
}
/*噪點*/
#page:before {
    display: block;
    content: " ";
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/tianchuanfa/noise.png);
    pointer-events: none;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}
/*背景*/
#content:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(https://pic03.eapple.com.tw/tianchuanfa/bcg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: opacity(0.6);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #ffffffd4 30%, #ffffff);
}
/*首頁背景*/
#content_main {
    margin: 0;
    background-image: url(https://pic03.eapple.com.tw/tianchuanfa/bcg.jpg);
    top: 0;
    left: 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.path p, .path p a {
    text-align: right;
    line-height: 24px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #575929;
}
.path p a:hover {
    color: #000000;
}

/*內頁BANNER 設定*/
.banner {
    min-height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.banner h5 {
    font-family: noto serif TC;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    font-size: 36px;
    filter: drop-shadow(0px 0px 4px black);
    margin-top: 100px;
}/*各分頁中文標題*/

.banner h5:before {
    display: block;
    color: #F7DA6C;
    font-size: 14px;
    font-family: 'Merriweather';
    font-weight: 100;
}/*英文標題設定*/

.banner.banA {
    background: url(https://pic03.eapple.com.tw/tianchuanfa/bannerA.png);
}/*最新消息-促銷方案*/
.banA.banner h5:before {
    content: "NEWS";
}/*最新消息-促銷方案*/

.banner.banB {display: none;}/*編輯頁隱藏*/
.banner.banC {display: none;}/*聯絡我們*/

.banner.banD {}

.banner.banE {
    background: url(https://pic03.eapple.com.tw/tianchuanfa/bannerE.png);
}/*活動專區-相簿*/
.banE.banner h5:before {
    content: "ALBUM";
}

.banner.banF {
    background: url(https://pic03.eapple.com.tw/tianchuanfa/bannerF.png);
}/*天界聖典/聖物*/
.banF.banner h5:before {
    content: "PRODUCT";
}/*天界聖典/聖物*/

.banner.banblog {
    background: url(https://pic03.eapple.com.tw/tianchuanfa/bannerblog.png);  
}/*天界聖經*/
.article_b .banblog.banner h5:before {
    content: "ARTICLE";
}/*天界聖經*/

.article_a .banblog.banner h5:before {
    content: "VIDEO";
}/*影片專區*/

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*文章設定*/
/*天界聖經-文章b*/
h5.blog_le_t {
    display: none;}
.blog_le {
    padding-top: 40px;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 13px;
    letter-spacing: 1px;
    color: #999;
    border: solid 0px #ccc;
    border-radius: 0px;
    padding: 8px 35px 8px 10px;
}
.blog_search input[type=submit] {
    width: 20px;
    height: 20px;
    border-left: 1px solid #dddddd;
    padding: 17px;
    filter: grayscale(2);
}    
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0px;
    border: 0;
    overflow: hidden;
}
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 20px 10px;
    font-family: noto serif TC;
    letter-spacing: 1px;
    color: #615525;
    font-size: 16px;
    font-weight: 700;
    position: relative;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #786c44 !important;
}
/*----------------------------------------*/
.blog_subbox {
    display: grid;
    grid-template-columns: unset;
    grid-gap: 50px;
}
.subbox_item a {
    display: grid;
    grid-template-columns: 300px 1fr;
    position: relative;
    grid-gap: 40px;
}
.blog_list_ri {
    display: block;
    padding: 20px 0;
    padding-right: 20px;
}
.blog_list_ri>*+* {
    margin-top: 25px;
}
.blog_list_ri h5 {
    font-weight: 800;
    font-size: 22px;
    font-family: noto serif TC;
    letter-spacing: 1px;
    color: #3c3209;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.blog_list_ri em {
    font-size: 14px;
    color: #c8c4b6;
    font-style: normal;
    display: block;
    text-align: right;
}
.blog_list_ri p {
    font-size: 16px;
    color: #777;
    line-height: 200%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
.subbox_item a:before {
    content: 'READ MORE +';
    position: absolute;
    z-index: 19;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    font-size: 15px;
    font-family: 'Merriweather';
    font-weight: 100;
    letter-spacing: -5px;
    color: #c1a414;
    transition: all .6s;
}
.subbox_item a:hover:before {
    letter-spacing: 1px;
}
.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    border: 0px;
    transition: all .5s;
}
/*---------------------下層內文-------------------------*/
.blog_ri {
    width: calc(100% - 240px);
    padding: 0 0 0 40px;
    min-height: 75vh;
}
.articel_mainPic img {
    display: none;}
h4.blog_category_title {
    color: #3c3209;
    font-family: 'noto serif TC', 'Merriweather';
    font-size: 28px;
    padding: 10px 0;
    margin-bottom: 20px;
}
.blog_box_edit * {
    line-height: 220%;
    letter-spacing: 1px;
    color: #444;
}
.blog_back {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 40px;
}
.blog_back a {
    font-size: 15px;
    color: #786d47;
    display: block;
    padding: 7px 15px;
    width: 100%;
    border-bottom: 1px solid #786d47;
}
.blog_back a.article_btn_prev {
    background: unset;
}
.blog_back a.article_btn_back {
    background: unset;
}
.blog_back a.article_btn_next {
    background: unset;
}
.news_related {
    display: none;}/*相關文章隱藏*/
/*---------------RWD-------------------------*/
@media screen and (max-width: 1024px) {
.blog_ri {
    width: calc(100% - 240px);
    padding: 0 0 0 20px;
    min-height: 75vh;
}    
.subbox_item a {
    display: grid;
    grid-template-columns: 200px 1fr;
    position: relative;
    grid-gap: 40px;
}
.blog_list_ri p {
    font-size: 16px;
    color: #777;
    line-height: 200%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
}
@media screen and (max-width: 768px) {
.blog_ri {
    width: 100%;
    display: block;
    padding: 0;
    margin: auto;
}
.subbox_item a {
    display: grid;
    grid-template-columns: 260px 1fr;
    position: relative;
    grid-gap: 40px;
}
.blog_list_ri p {
    font-size: 16px;
    color: #777;
    line-height: 200%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
}
@media screen and (max-width: 640px) {
.subbox_item a {
    display: grid;
    grid-template-columns: unset;
    position: relative;
    grid-gap: 20px;
}
.blog_list_ri {
    display: block;
    padding: 20px 20px;
}
.blog_list_ri>*+* {
    margin-top: 10px;
}
.blog_list_ri em {
    font-size: 14px;
    color: #c8c4b6;
    font-style: normal;
    display: block;
    text-align: left;
}
.blog_list_ri p {
    font-size: 16px;
    color: #777;
    line-height: 200%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
}    
/* = = = 相簿設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.album_page .main_part {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 50px 20px;
}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 40px;
}
.show-list .show_name {
    font-size: 16px;
    color: #122004;
    letter-spacing: 0.15em;
    font-family: noto serif TC;
    line-height: 1.5;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 25px;
}
.show-list .item:hover .show_name {
    color: #ada17e;
}
.show-list .item:hover .show_pic img {
    transition: all .4s;
    transform: scale(1.1);
}
.show-list .item:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
}
/*----下層----*/
.subalbum-menu h2 {
    font-size: 20px;
    color: #122004;
    font-family: noto serif TC;
    letter-spacing: 0.15em;
    display: inline-block;
    vertical-align: middle;
}
.show-list.other_subalbum {
    font-size: 14px;
    color: #122004;
    letter-spacing: 1px;
    line-height: 170%;
}
.album_fixed_title {
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
    padding-right: 0px;
    display: block;
    position: relative;
    background: unset;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
/*--結束--*/

/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 表單設定 = = = = = = = = = = = = = = */
.contact_content form {
    display: flex;
    justify-content: center;
}
.contact_content .information_left {
    display: none;
}
.contact_content .information_right {
    width: 70%;
    padding: 0;
}
.blank_letter {
    padding-top: 30px;
    font-size: 25px;
    color: #3c3209;
    letter-spacing: 1px;
    font-family: noto serif TC;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.note {
    font-size: 13px;
    font-family: none;
    text-align: right;
    letter-spacing: 1px;
    font-weight: 500;
}
.red {
    color: #bb9e10;
}
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444444;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px 20px;
    font-family: noto serif TC;
    font-weight: 700;
    letter-spacing: 1px;
}
.contact_form li input.noborder {
    border: 0px #ddd solid;
    border-bottom: 1px #ccc solid;
    background: unset;
}
.contact_form li textarea.noborder {
    border: 0px #ddd solid;
    border-bottom: 1px #ccc solid;
    background: unset;
}
.contact_form li.last {
    border: none;
    text-align: right;
    margin-top: 20px;
    padding-left: 0;
    display: flex
;
    justify-content: flex-end;
    flex-wrap: wrap;
    grid-column: 1 / 3;
}
@media screen and (max-width: 1024px) {
.contact_content .information_right {
    width: 90%;
    padding: 0;
}
}
@media screen and (max-width: 768px) {
.contact_content .information_right {
    width: 90%;
    padding: 0;
}
}
@media screen and (max-width: 600px) {
.contact_content .information_right {
    width: 90%;
    padding: 0;
}
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #444444;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px 20px;
    font-family: noto serif TC;
    font-weight: 700;
    letter-spacing: 1px;
}
.contact_form li.last {
    border: none;
    text-align: right;
    margin-top: 20px;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    grid-column: unset;
}
.contact_form li .form__label {
    width: 100%;
    margin-left: 0;
    text-align: left;
    font-weight: bold;
    padding: 5px;
    background: rgb(174 169 141 / 15%);
}
}


























@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




