@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}
*/

/*預設解除背景輪播*/
#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;}}

.copy { background:#ada17e; text-align: center; padding: 7px 0;  font-size: 13px;  color: #ffffff;  border-top: 1px #fff solid;  margin-top: 15px;}
/*大圖文字*/
@keyframes slowMoveUp {
    from {
        transform: translate(-50%, 20%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -30%); /* 讓上移的效果更流暢 */
        opacity: 1;
    }
}

/* 第一張輪播圖動畫 */
.pageIndex .swiper-slide:nth-child(1):after {
    content: " ";
    width: 45%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 4 / 1;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, 20%);
    background: url(https://pic03.eapple.com.tw/ctglass/slogan01.png) no-repeat;
    background-size: contain;
    opacity: 0;
}

/* 第二張輪播圖動畫 */
.pageIndex .swiper-slide:nth-child(2):after {
    content: " ";
    width: 45%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 4 / 1;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, 20%);
    background: url(https://pic03.eapple.com.tw/ctglass/slogan02.png) no-repeat;
    background-size: contain;
    opacity: 0;
}

/* Swiper 切換到當前頁面時，觸發動畫 */
.pageIndex .swiper-slide-active:nth-child(1):after,
.pageIndex .swiper-slide-active:nth-child(2):after {
    animation: slowMoveUp 2s ease-out forwards;
}


@media screen and (max-width: 430px) {
    /* 第一張輪播圖動畫 */
.pageIndex .swiper-slide:nth-child(1):after {
    width: 70%;
    left: 35%;
top:63%}

/* 第二張輪播圖動畫 */
.pageIndex .swiper-slide:nth-child(2):after {
    width: 70%;
    left: 40%;
top:60%
}
}
/* = = = header = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*主選單顏色*/
.main_header_area {background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));}
.main_header_area {width: 100%;}

.tp_links a.me_tp_call:before { display: none;}
.tp_links a.me_tp_mail:before {display: none;}

.nav-brand img {max-width: 100%;margin-top: 0px;}
.main_header_area {background: rgb(0 0 0 / 0%);}

.nav-menu>li>a {
    padding: 18px 22px;
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    -webkit-transition: color .3s,background .3s;
    transition: color .3s,background .3s;
	color: #ffffff;
    text-transform: uppercase;
}

.stellarnav ul { margin: 0; padding: 0px; text-align: right;}

/*選單滑鼠滑過顏色*/
.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a { color: #cdc19e;}

/*下拉選單顏色*/
.nav-dropdown>li>a {
    width: 100%;
    padding: 16px 20px;
    display: inline-block;
    text-decoration: none;
    float: left;
    font-size: 16px;
}

/*選單*/

/*選單白色底線拿掉*/
.nav-menu>li>.nav-dropdown {  border: none;}
.submenu-indicator-chevron { display:none;}
    
/*下拉選單顏色(滑到)*/
.nav-dropdown>li>a:hover, .nav-dropdown>li>a:focus { color: #343a40; background-color:#cdc19e;}
    
.main_header_area{
    background: rgba(255, 255, 255, .5);
        transition-timing-function: ease-in-out;
    }

.sticky .main_header_area{
    width: 100%;
    z-index: 9999;
    background: #ffffff;
   
}
.nav-header {     max-width: 300px; padding: 0px;transition: all .5s;transition-timing-function: ease-in-out;}
.sticky .nav-header{ padding: 6px 10px; transition: all .5s; transition-timing-function: ease-in-out;}
.nav-brand {width: 300px;transition: all .5s;transition-timing-function: ease-in-out;}
    
.sticky .nav-brand {  width: 250x; margin-top: 3px;}
.nav-menu { margin: 40px 0 20px 0; transition: all .5s; transition-timing-function: ease-in-out;}
    
.sticky .nav-menu { margin: 40px 0 0 0;transition: all .5s;transition-timing-function: ease-in-out;}

/*選單跟LOGO的左右位置*/
.main_header_area .container {  max-width: 85%;}

/*logo*/
.header_area { padding:0px; position:;}
.header_area .nav-brand { padding: 10px 10px; margin: 5px 0 0; max-width: 300px; width: 100%;}

/*menu*/
.stellarnav { display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: right;
    margin: 0 0px 0 160px;
    padding: 10px 0 0px 160px;}

.stellarnav> ul>li {display: inline-block;text-align: left;}

.navigation {
    text-align: center;
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 0 20px;
}
.stellarnav > ul > li > a, .stellarnav li.has-sub > a { font-weight: 600; position: relative; padding: 0 20px; color:#666;}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a { color: #ada17e;}
.stellarnav li.has-sub > a::after { display: none; border-top: 6px solid #fff;}/*下拉箭頭*/
.stellarnav li.has-sub:hover > a::after { border-top: 6px solid #ada17e;}/*下拉箭頭*/

/*menu變化變化*/
.header_area.sticky .main_header_area
.stellarnav>ul>li>a{ color: #666;}

.header_area.sticky .main_header_area
.stellarnav>ul>li>a:hover { color: #ada17e;}

.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 ul ul, .stellarnav ul ul ul { background: #fffffff2; box-shadow: 0 5px 5px #00000066;}
.stellarnav ul ul ul { left: 100%;}
.stellarnav li li { border: 1px #ccc solid; margin-bottom: 0;}

.stellarnav> ul>li:nth-of-type() ul{display: !important;}
.stellarnav> ul>li:nth-of-type()>a::after {display: ;}

/*右拉箭頭*/
.stellarnav li li.has-sub > a::after { border-left: 6px solid #888;}
.stellarnav li li.has-sub:hover > a::after { border-left: 6px solid #ada17e; border-top: 6px solid transparent;}

/*項目*/
.stellarnav li.has-sub > ul > li.has-sub > a, .stellarnav li.has-sub > ul > li > a {color: #ada17e;/* padding: 7px 20px 7px 5px; */font-family: "微軟正黑體", sans-serif;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {color: #777;font-size: 13px;font-weight: normal;padding: 7px 5px;border-left: 1px solid transparent;background: transparent;transition: all 0.3s;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: #ada17e; padding-left: 10px; border-left: 5px solid #ada17e; transition: all 0.3s;}

.stellarnav > ul > li:nth-child(6) > ul > li:nth-child(1) {display: none;}/*隱藏相簿全部*/

/*--手機板選單---------------------------------------*/

/*選單*/
.stellarnav .menu-toggle span.bars span { background: #aba07d;}
.stellarnav .menu-toggle:after { color: #aba07d;}

/*展開*/
.stellarnav.mobile.left > ul { background: #fffffff2;}
.stellarnav.mobile > ul > li { border-bottom: 1px #888 solid;}
.stellarnav.mobile > ul > li > a { padding: 20px 30px; border-bottom: none; display: block; }
.stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px 20px 36px;}
.stellarnav.mobile > ul > li.has-sub > a.dd-toggle { padding: 0;}
.stellarnav.mobile > ul > li.has-sub > ul > li > a { color: #444; padding: 20px 30px 20px 40px;}
.stellarnav.mobile > li > a { border-bottom: none;}

/*close*/
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: #ada17e; color: #fff;}
.stellarnav .icon-close:after, .stellarnav .icon-close:before { border-bottom: solid 3px #fff;}
.stellarnav.mobile > ul > li > a.dd-toggle { top: 14px;}
.stellarnav a.dd-toggle .icon-plus {width: 0; top: -7px; left: -4px;}
.stellarnav a.dd-toggle .icon-plus { width: 0;  top: -18px;  left: -10px;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after { border-bottom: solid 3px #888;}
.stellarnav li.open > a.dd-toggle .icon-plus:before, .stellarnav li.open > a.dd-toggle .icon-plus:after { border-bottom: solid 3px #ada17e;}

/*下拉*/
.stellarnav.mobile li.open { background: #cbc0a022; padding: 0;}
.stellarnav.mobile li.open > ul > li { margin-bottom: 0; border-bottom: 1px solid #ccc;}
.stellarnav.mobile li.open li.open { padding: 0; background: #ffffff88;}
.stellarnav.mobile ul { background: transparent;}
.stellarnav > ul > li.drop-left > ul { left: 0; right: auto;}
.stellarnav ul ul ul {max-height: 300px;overflow: auto;}/*次分類部下滾輪*/



/*--RWD---------------------------------------*/
@media screen and (max-width: 425px){.stellarnav > ul > li:hover > a, .stellarnav > ul > li.has-sub:hover > a {color: #265444;}}
@media screen and (max-width: 1440px) {  .swiper-pagination { display: none;}}

@media screen and (max-width: 1024px) { 

    /*header*/
    .pageIndex .header_area { position: fixed;}
    .main_header_area .container { max-width: 100%;}
    .navigation {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;}

    /*logo*/
    .header_area .nav-brand { max-width: 200px; margin: 0px 0 0; padding: 0px; transition: .3s ease-in-out;}
    .nav-brand img{margin-top: 5px;}
  
    .me_tp_features {
    width: 100%;
    text-align: center;
}

    /*menu*/
    .header_area .navigation, .header_area.sticky .navigation, .navigation { padding: 0px; z-index: 123;top:0 ; left:0;}
    .stellarnav { padding: 0 0 10px;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 0 30px;}
    .stellarnav li.has-sub > a::after { top: 49%;}/*下拉箭頭*/}

@media screen and (max-width: 768px) {
    /*logo*/
    .nav-header { position: static;}
    .header_area.sticky .nav-brand { max-width: 150px; margin-top: 10px; transition: .3s ease-in-out;}   

    /*menu*/
    .stellarnav.mobile > ul > li > a { padding: 20px 30px; border-bottom: none; display: block; color: #333;}
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav > ul > li.has-sub > a, .stellarnav.mobile > ul > li.has-sub a.dd-toggle, .stellarnav.mobile > ul > li.has-sub > a { padding: 20px 30px;}
    .stellarnav.mobile { position: absolute; left: 0; top: 10px; width: auto; display: inline-block;}
    .stellarnav ul ul, .stellarnav > ul > li:hover > ul > li:hover > ul { box-shadow: none;}
    .stellarnav li li { border: none;}
    .stellarnav > ul > li > a b:last-child { display: none;}}
  
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*校稿版面設定*/
.services_page .main_part, .pageIndex .main_part, .other_page .main_part, .other_select_page .main_part{ width: 100%; max-width:100%; margin: auto; padding:0px; margin-top:-1px;}
.show_content { width: 100%; padding:0px; top:-1px;}
.edit_part { max-width: 100%; margin: 0; padding: 0px;}


/*頁面內容*/
div#page { }
#content_main, #content {}
.news_related{background: #ada17e33;}
.module_i_news { }
.path { display: none;}
.other_page #content, .other_select_page #content { min-height: auto;}

/*下拉選單頁面*/
ul.page {display:;}
.other_promotion{display: none;}
.promotion_title {  display: none;}

/*SubMenu*/
.shop_search_btn { background: #ada17e;}
.tp_links a { display: none;}/*隱藏選單按鈕連結*/
.tp_links a:hover { color: #ada17e;}

.me_tp_features a.tp_btn_notice {display: inline-block; color: #ada17e;}
.me_tp_features a {  color: #ada17e;}
.me_tp_features a i { color: #ada17e;   margin: 0 3px;}
.me_tp_features a.tp_btn_cart {display: inline-block; color: #ada17e;}隱藏購物車
.me_tp_features a.tp_btn_notice {display: inline-block;color: #ada17e;}隱藏匯款通知

/*＝＝相簿＝＝＝*/
.show-list .item:hover .show_name { color: #ada17e;}
.overlay {background: #8e6c5161;}



/*購物車/＝＝＝＝＝*/
#content {
    width: 100%;
    max-width: 100%;
    background: url(https://pic03.eapple.com.tw/) top repeat-y;
    background-size: cover;}

.products-list {    display: grid;    gap: 10px;    grid-template-columns: 1fr 1fr 1fr 1fr;}
.products-list:before{content:none;}
.products-list .item {   width: 100%;}

/*購物車/外層＝＝*/
/*顏色*/
.products-list .item a:hover .more {    background: #ada17e;}
.products-list .name {
    text-align: center;
    font-size: 15px;
    color: #ada17e;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 30px;
}
/*價格*/
.products-list .price {    display: none;    margin-bottom: 5px;    align-items: center;    justify-content: center;    flex-wrap: wrap;}
.products-list .price b {    margin: 0 5px;    line-height: 180%;    text-align: center;color: #ada17e;}
.products-list .price b.ori_price {    font-size: 14px;}

/*外層版面*/
.product_page .main_part {    width: 90%;	max-width: 1500px;}
.product_page .show_content {    display: flex;    flex-wrap: wrap;    align-items: flex-start;    justify-content: space-between;}
.product_page .products-list {    width: calc(100% - 280px);}
.product-layer-two {    width: 250px;    margin: 0;}
.product_info_page .product-layer-two {    display: none;}
.product-layer-two li {    margin: 0;    width: 100%;padding: 0 10px;}
.product-layer-two > li.active {    background: #f2f2f2;}
.product-layer-two li.active a {    border: unset;border-bottom: 1px dotted #ccc;}
/**/
.product-layer-two li a {    color: #222;    border: none;    background: transparent;    transition: all 0.3s;    line-height: 200%;    transition: all 0.3s;}
.product-layer-two > li > a {    border-bottom: 1px dotted #ccc;padding-left: 25px;}
.product-layer-two li:hover > a , .product-layer-two li.active > a{color: #ada17e;}
.product-layer-two li:hover > a:before , .product-layer-two li.active > a:before {background: #ada17e; color:#fff;}
.product-layer-two > li > a:before {
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 18px;
    content: "＞";
    color: #ada17e;
    background: #f2f2f2;
    width: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    padding-left: 2px;
    font-size: 13px;
}
/**/
.product-layer-two li ul {    position: relative;padding-top: 1px;}
.product-layer-two li li {    border: none;background: transparent;}
.product-layer-two li li a{    background: transparent;}
.product-layer-two li li:hover a{color: #ada17e;}

/*hover到才顯示副選單 關掉↓*/
.product-layer-two li li {    display: block;}footer

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}
.product_pic #bx-pager h6 {  display: none;}

/*按鈕顏色*/
.inquiry_a1, .inquiry_a2, .inquiry_a3{}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{}

.sidebarBtn form:nth-of-type(2) {  left: 10px; width: 100%; }
.toShare {}


.lastaction { color: #ada17e; background-color: #dedede;}
.nextaction { background-color: #ada17e;}
.lastPage {    background: #ada17e;}

/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #8cbefa;}
.sidebarBtn { border: none;   background: #fff;  box-shadow: 0 0 10px #ada17e; position: relative;}
.mobile_product_name{font-size: 24px;}

/*相關推薦*/
.prod_related h6 span:before {
    font-size: 28px;
    color: #ada17e;
}
.prod_related {  background: #e1dbd66b;}
.related_list li a p {color: #fff;
    background: #01385f;}

    .products-list .more {
        border: 0px solid #ada17e;
        color: #ada17e;
        font-size: 16px;
        font-weight: bold;
        line-height: 32px;
        text-align: center;
        transition: all .5s;
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        bottom: 0;
        border-radius: 10px;
    }

.products-list .item a:hover .more { background: #ada17e; color: #fff; letter-spacing: 2px;}
.inquiry_a1 {    display: none;background: #999;}
.inquiry_a1:hover{background: #5f5843;}
.inquiry_a2 {    display: none;background: #867a55;}
.inquiry_a2:hover{background: #777;}



@media screen and (max-width: 1200px) { .products-list {    grid-template-columns: 1fr 1fr 1fr;} }
@media screen and (max-width: 1024px) {.product_page .products-list {    grid-template-columns: 1fr 1fr;}}

@media screen and (max-width: 768px) {
.products-list {    grid-template-columns: 1fr 1fr;}
.product_page .products-list ,.product-layer-two {    width:100%;}
.prod_related h6 span:before{font-size: 24px;}
/*順序*/
.product_page .products-list {    order: -1;}}

@media screen and (max-width: 600px) {
.prod_related h6 span:before{font-size: 20px;}
/* 首頁購物車 */
.animated-arrow {margin-bottom: 50px;}}
@media screen and (max-width: 375px) {.products-list , .product_page .products-list  {    grid-template-columns: 1fr;}}


/*按鈕*/
.animated-arrow { background: #ada17e; border-radius: 10px; transition: .3s ease-in-out;}
.animated-arrow:hover { background: #ada17e; transition: .3s ease-in-out;}

/*頁碼*/
.page { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; margin: 40px auto;}
.page li { display: flex; margin: 3px; width: 30px; height: 30px; line-height:30px; align-items: center; justify-content: center;}
.page li.activeN { background: #666; border-radius: 100%; color: #fff; font-weight: 600;}
.page li a { display: block; width: inherit; height: inherit; line-height: inherit; padding: 0; color: #ccc; transition:all 0.3s;}
.page strong, .page a:hover { background: #ada17e; border: 1px solid #ada17e;}

.lastPage { background: #ada17e;}
.pd_tabTitle li.activeTab::after { height: 5px;  background: #ada17e;}

/* = = = 預設解除背景輪播 = = = = = = = = = = = = = = = = = = = = = = = = = */

#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;}}

/* = = = Index banner = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (max-width: 768px) {
/* 行動裝置相容性調整 大圖調整 */
.swiper-slide img { animation-fill-mode: none; -webkit-animation-fill-mode: none;}
}

/* = = = footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer .center {max-width: 100%;}
.footer_info {
    display: flex;
    grid-gap: 20px;
    flex-direction: column;
    align-items: center;
}
.footer { background: #cccccc1c;}
.footer_logo { display: inline-block; vertical-align: top; margin: 0x;}
.footer_logo img {
    margin: 0px;
    max-width: 250px;
}
.footer_info { padding: 0;}
.footer_info ul { width: calc(100% - 100px); padding: 0;}

/*footer_info*/
.footer_info li:nth-child(1) {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 5px 18px;
}
.footer_info li p {color: #666;}
.footer_info li p a { color: inherit; }



/*footer_menu*/
.footer_info li:nth-child(2) {display: inline-block; width: 100%; vertical-align: top; border-left: 0px solid #fff;; }
.footer_menu { margin-top: 10px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(125px,100%), 1fr)); gap: 0px;}/*footer按鈕最小寬度100px*/
.footer_menu a {
    margin: 5px;
    padding: 5px 10px;
    background: transparent;
    text-align: center;
    border: 1px #666 solid;
    color: #666;
}
.footer_menu a:hover { background: #ada17e; color: #fff; border: 0px #fff solid;}

/*聯絡icon*/
.box_link {display: none;}


/* 商品下拉超過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:0px; /*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) {}
@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) {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {}
.banner h5 {
    font-size: 37px;
    color: #715641;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px #ffffff;
    font-family: ;
}
.banner.banA {
    display:none ;
    background-image: url(https://pic03.eapple.com.tw/);
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 170px 0 95px;
    position: relative;}
.banner.banB{ 
    display: none;
    background-image: url(https://pic03.eapple.com.tw/);
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 170px 0 95px;
    position: relative;}
.banner.banC{
    background-image: url(https://pic03.eapple.com.tw/);
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 170px 0 95px;
    position: relative;}
.banner.banE{ 
    background-image: url(https://pic03.eapple.com.tw/);
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 170px 0 95px;
    position: relative;}

.banner.banF{ 
    background-image: url(https://pic03.eapple.com.tw/ctglass/bn00.jpg);
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 170px 0 95px;
    position: relative;}

.banner.banblog { 
    background-image: url(https://pic03.eapple.com.tw/ctglass/bn00.jpg);
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 170px 0 95px;
    position: relative;}

@media screen and (max-width: 768px) { .banner h5 { font-size: 28px;}}
@media screen and (max-width: 600px) { .banner h5 { font-size: 24px;}}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display:; }
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}}

@media screen and (max-width: 600px) { }

/* = = = 文章 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理/＝＝＝＝＝*/
h4.blog_category_title{font-size: 28px;}
h4.blog_category_title span{font-size: 24px;}
/*文章管理/外層＝＝*/
.module_i_news ul, .blog_subbox {    display: grid;    gap: 10px;}
.module_i_news li , .subbox_item {    width: 100%;}
.module_i_news li a , .subbox_item a {    padding: 5px;}
.subbox_item a {  display: flex;  position: relative;  grid-gap: 20px;  flex-direction: column;}

.module_i_news li a:after , .subbox_item a:after{pointer-events:none;}
.subbox_item a:after {background: #8e6c514f; border: 0px #ddd solid;}
.subbox_item a:before {
    background: #ada17e;
    padding: 5px 20px;
    color: #ffffff;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -o-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -moz-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    -ms-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    bottom: 0;
    right: 0;}

.i_blog_le, .i_blog_ri , .blog_list_le , .blog_list_ri {    width: 100%;}
.i_blog_le , .blog_list_le{    position: relative;    padding-bottom: 100%;    height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.i_blog_le img , .blog_list_le img{
	display:block;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);}
.blog_list_ri h5 {
    font-weight: bold;
    color: #0b0b0b;}    
/*側邊*/
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #ada17e !important;}
.submenu a:hover {    background: #2655455d;}
/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr 1fr 1fr 1fr;}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}
/*文章管理/內層＝＝*/
.blog_back a.article_btn_back{background: #ada17e;}
.blog_back a.article_btn_next {    background: #aba07d;}
.blog_back a.article_btn_prev{    background: #aba07d;}  

.module_i_news ul{grid-template-columns:1fr 1fr;}

.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link { background-color: #ada17e; color: #fff !important;}/*外層*/
/*內層*/
.blog_le .accordion > li.on_this_category .link { color: #fff !important;  background-color: #ada17e;}/*文章選單底色*/
.blog_back a.article_btn_back { background: #ada17e;}/*回列表*/

/*--文章RWD---------------------------------------*/
@media screen and (max-width: 980px) {
.blog_subbox{grid-template-columns:1fr 1fr;}}

@media screen and (max-width: 768px) {
h4.blog_category_title{font-size: 24px;}
h4.blog_category_title span{font-size: 20px;}}

@media screen and (max-width: 600px) {
    .module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
    h4.blog_category_title{font-size: 20px;}
    h4.blog_category_title span{font-size: 18px;}}



/*--RWD---------------------------------------*/
@media screen and (max-width: 1440px) {
    .stellarnav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-align: right;
     margin: 0px ; 
    padding: 10px 0 0px 160px;}
}

@media screen and (max-width: 768px) {
    /*footer*/
    .footer_info { justify-content: center;}
    .footer_logo { text-align: center;}
    .footer_info ul { flex-direction: column;}
    .footer_info li:nth-child(1) { width: 100%;}
    .footer_info li:nth-child(2) { width: 100%; border-left: none;}

    /*底部按鈕*/
    #to_top { bottom:60px;}
    #bottom_menu {display:; }
    .footer.with_shopping_mode { padding:30px 0 70px; }
}

@media screen and (max-width: 600px) { 
    /*footer*/
    .footer_info ul { width: 100%;}

    /*聯絡icon*/
    .box_link { text-align: center;}
}

/* = = = 聯絡表單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.contact_le_map {
    display: none;
}

/*表單最大寬度設定*/
.contact_content .information_right { max-width: 1400px;}
.contact_content {margin: auto;padding: 20px 100px;}

/*標題*/
.blank_letter { color: #ada17e;}

/*側邊資訊*/
.list_before { margin-top: 10px;}

/*表格樣式*/
.contact_form li input.noborder { border: none; border-bottom: 1px #ddd solid; background: transparent;}/*文字欄*/
.contact_form li textarea.noborder { background: transparent; border: 1px #ddd solid;}/*文字區塊*/
.form select { background: transparent;}/*下拉式*/
input[type="checkbox"], input[type="radio"] { margin: 0px;}/*複選、單選*/

/*驗證碼對齊*/
.contact_form li:nth-last-of-type(2) .form__insert { display: inline-flex; align-items: center; justify-content: flex-start; flex-wrap: nowrap;}
.contact_form li:nth-last-of-type(2) input.noborder { border: 1px #ddd solid;}
.captcha { margin-right: 20px;}

/*按鈕*/
.contact_form li.last blockquote { border: 1px #ccc solid;}
.contact_le_map a { background: #ada17e;}
.contact_form li.last cite {background: #ada17e;}

@media screen and (max-width: 425px){
    .stellarnav.mobile > ul > li.has-sub > a {
        padding: 20px 30px;}
    /*聯絡表單*/
    .contact_form li { padding-left: 0;}
    .contact_form li .form__label { margin: 0 0 10px; width: 100%; text-align: left;}
    .contact_form li .form__insert { width: 100%;}
    .contact_content { margin: auto;padding: 20px 10px;}
}


/* = = = RWD = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
@media screen and (max-width: 1200px) { 
    .stellarnav {
        padding: 0 0 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        text-align: center;
        margin: 0 0px 0 20px;
    }
}
@media screen and (max-width: 1024px) { }
    

@media screen and (max-width: 768px) { 
    .header_area.sticky .main_header_area .stellarnav>ul>li>a { color: #333; }

    .footer_info li:nth-child(1) {
    display: inline-block;
    width: 100%;
    padding: 5px 18px;
    text-align: center;
}}

@media screen and (max-width: 600px) { }


@media screen and (max-width: 430px) {
   
.sticky .nav-header {padding: 0;}
.header_area.sticky .nav-brand { margin-top: 0px; }

}

    
@media screen and (max-width: 425px) { 
 

.sticky .nav-header {padding: 0;}
.header_area.sticky .nav-brand { margin-top: 0px; }

    
    .footer_logo img {max-width: 300px;width: 100%;padding: ;}}

.show_content .fadeInUp .animated15 {animation: none ;}
.fadeInUp{ animation: none ;}

.fa-cart-shopping::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(https://pic03.eapple.com.tw/ctglass/shopcar.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.me_tp_features a.tp_btn_notice {display: none;}
.right_member_in { display: none;}