@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family: "Noto Sans TC","Work Sans", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix{display: none;}
.main_part{ max-width: 1500px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*反白顏色*/
::-moz-selection{
    background-color: #ebebeb;
    color: #b6b6b6;
  }
  ::selection{
    background-color: #ebebeb;
    color: #b6b6b6;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #b6b6b6;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #b6b6b6;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #b6b6b6;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #ebebeb;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}




/* 開場動畫 */

body.pageIndex:before {
    content: ' ';
    position: fixed;
    z-index: 999999991;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    animation: fadein 6s forwards;
}

@keyframes fadein {
    50% {
        opacity: 1;
    }

    60% {
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

body.pageIndex:after {
    content: ' ';
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/dimple/open-logo.svg) center / cover no-repeat;
    animation: fadeinlogo 6s forwards;
}

@keyframes fadeinlogo {
    0% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    60% {
        opacity: 0;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}



/* 底下按鈕 */

.swiper-pagination-clickable .swiper-pagination-bullet {
  position: relative;
  border-radius: 2.5px;
  height: 5px;
  width: 50px;
  z-index: 0;
}

.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-clickable .swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 0%;
  height: 5px;
  border-radius: 2.5px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
  width: 100%;
  transition: all 0.3s;
}

.swiper-pagination-clickable .swiper-pagination-bullet:nth-child(1):after {
  left: auto;
  right: 0;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 42px;
}

@media screen and (max-width:768px) {
    .swiper-pagination-clickable .swiper-pagination-bullet{ height: 3px;}
    .swiper-pagination-clickable .swiper-pagination-bullet::after{ height: 3px;}
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 10px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.pageIndex .bannerindex {
    position: relative;
    height: auto;
}
.pageIndex .swiper-slide img {
    height: auto;
}

.header_area {
    height: auto;
    position: fixed;
    background: #fff;
    padding: 10px 80px;
    transition: all .3s;
}
.main_header_area .container {
    max-width: 100%;
}
.navigation {
    grid-template-columns: 100px 1fr;
}
.nav-header {
    max-width:105px;
    /* backdrop-filter: blur(2px); */
    transition: 0.5s;
}
.nav-brand {
    position: relative;
}

.me_tp_features {
    display: none;
}


/* 選單設定 */
.stellarnav * {
    font-family: "Noto Sans TC","Work Sans", sans-serif;
}
.stellarnav > ul > li > a {
    height: 50px;
    text-transform: capitalize;
    font-size: 15px;
    color: #000;
    letter-spacing: 2px;
    line-height: normal;
    /* padding: 45px 25px; */
    padding: 74px 25px 22px;
    margin: 0;
     transform: scale(1);
     transition: 0.5s;
}

.stellarnav > ul > li:nth-of-type(1) > ul > li:nth-of-type(1) { display: none;}
.stellarnav li.has-sub > a:after {
    display: none;
}
.stellarnav > ul > li > a b {
    transition: ease .4s;
}
.stellarnav ul ul {
    background: #fffffff2;
    left: 15px;
}
.stellarnav li li {
    border: 0;
}
.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 12px 15px 12px 10px;
}
.stellarnav li li a {
    font-size: 15px;
    color: #000;
    letter-spacing: 1px;
}
.stellarnav li li a:hover{
    color: #B09559;
}


/* 下滑設定 */
.header_area.sticky {
    height: 110px;
    background:#fffffff2;
    filter: blur(3);
    transition: all .3s;
}
.header_area.sticky .stellarnav > ul > li > a{ 
    /* padding: 35px 25px; */
    padding: 60px 25px 22px;
}
.stellarnav ,
.header_area.sticky .stellarnav,
.nav-brand::after,
.header_area.sticky .nav-brand::after,
.nav-brand img,
.header_area.sticky .nav-brand img  {
    transition: all .3s;
}
.header_area.sticky .nav-header {
    backdrop-filter: blur(0);
    transition: 0.5s;
}
.header_area.sticky .stellarnav {
    opacity: 1;
}
.header_area.sticky .nav-brand::after {
    opacity: 1;
}
.header_area.sticky .nav-header {
    max-width: 90px;
}


/* 其他頁面的header設定 */
/* .header_area:not(.pageIndex .header_area) {
    height: 65px;
    background: #fff;
    padding: 10px;
    opacity: 1;
}
.nav-header:not(.pageIndex .nav-header) {
    max-width: 95px;
    backdrop-filter: blur(0);
}
.stellarnav:not(.pageIndex .stellarnav) {
    opacity: 1;
} */

/* hover */
.stellarnav * {
    transition: all .3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color: #B09559;
    transform: scale(1.03);
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid #000;
} /* 主選單三角形 */
.stellarnav li li:hover > a, 
.stellarnav li li > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a   {
    padding-left: 12px;
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #B09559;
} /* 次分類三角形 */

@media screen and (max-width: 1024px) {
    .nav-header {
        position: absolute;
        text-align: left;
        top: -5px;
        max-width: 90px;
    }
    .stellarnav ul {
        text-align: right;
    }
    .header_area.sticky .nav-header{ max-width: 90px;}
    .stellarnav > ul > li > a{ 
        /* padding: 29px 20px; */
        padding: 60px 20px 22px;
    }
    .header_area.sticky .stellarnav > ul > li > a{ 
        /* padding: 31px 20px; */
        padding: 50px 20px 22px;
    }
    .header_area.sticky{ height: 100px;}
}

@media screen and (max-width: 769px) {
    .nav-header{ top: -7px;}
    .header_area {
        position: sticky;
        height: 65px;
        background: #fff;
        padding: 10px;
        opacity: 1;
    }
    .header_area.sticky .nav-header{ max-width: 80px; top: -1px;}

    /* 漢堡鈕設定--開始 */
        .stellarnav {
        opacity: 1;
    }
    .stellarnav.mobile {
        left: unset;
        right: 0;
        opacity: 1;
        top: 22px;
    }
    .stellarnav .menu-toggle span.bars span {
        background:#000;
        margin: 0 0 6px auto;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        width: 28px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
       width: 20px;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        width: 14px;
    }
    .stellarnav .menu-toggle:after {
        display: none;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        position: relative;
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        display: block;
        position: static;
    }
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close::after {
        right: 20px;
        width: 25px;
        border-bottom: solid 2px #000;
    }/* 漢堡鈕設定--結束 */


    /* 選單設定--開始 */
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        left: unset;
        max-width: 320px;
        right: 0;
        background: #fff;
        box-shadow: 3px 3px 15px rgb(0 0 0 / 10%);
    }
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px #AFDCDD;
    }
    .stellarnav.mobile > ul > li {
        margin-bottom: 10px;
    }
    .stellarnav.mobile li:nth-of-type(6) a.dd-toggle {
        display: none;
    }
    .stellarnav.mobile > ul > li, 
    .stellarnav.mobile li a {
        border-bottom: 0;
    }
    .stellarnav.mobile > ul > li > a {
        padding: 20px 43px 20px 25px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{ top: 13px;}
    .stellarnav > ul > li > a b:nth-of-type(1) {
        font-size: 15px;
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        padding: 10px 10px 10px 6px;
    }
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile ul ul {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile ul ul ul {
        background: transparent;
    }
    /* 選單設定--結束 */

}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

@media screen and (max-width:450px) {
    .nav-header{ max-width: 75px ;top: -8px;}
    .header_area.sticky .nav-header{ max-width: 75px;}
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
        max-width:100%;
    }
    .stellarnav.mobile{ top: 14px;}
    .header_area.sticky{ height: 85px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer { background: #fff; padding: 30px 0 0; border-top: 1px solid #cbcbcb;}
.footer .center { max-width: 100%;}
.footer_logo{ max-width: 120px;}

/*icon*/
.box_link { position: relative; top: -70px; right: 0px;  width: 100%; max-width: 100%; display: flex; justify-content: flex-start; align-items: center; flex-wrap: nowrap; flex-direction: row; max-height: 100%; order: 3; display: none;}
.box_link a { width: fit-content;  border: unset;  padding: 5px 8px; font-size: 20px; color: #6a6a6a;}
.box_link a:hover { color:  #888;}

.footer_info { padding-right: 0px; max-width: 1400px; padding: 0 40px 30px; width: 100%; margin: auto; align-items: center;}
.footer_info ul {position: relative; display: flex; width: 100%; justify-content: space-around;}
.footer_info ul li:nth-child(1):before {
    font-family: "Work Sans", sans-serif;
    content: "INFO"; font-size: 20px;color: #B09559; left: 10px; top: 0%; position: absolute;  letter-spacing: 1px;font-weight: 800; }
.footer_info ul { display: flex; width: 100%; justify-content: flex-end;}
.footer_info li:nth-child(1) { width: 40%; position: relative; padding-top: 40px;} 
.footer_info li:nth-child(2) { width: 25%;min-width: 280px;}
.footer_info li p { line-height: 250%; letter-spacing: 1px; color: #444;}
.footer_info li p > a { color: #444;}
.footer_menu { width: 100%; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; position: relative;  padding-top: 30px;}
.footer_menu:before { content: "LINK"; font-size: 20px; color: #B09559; left: 0px; top: 0%; transform: translateY(-50%); position: absolute;font-weight: 800;letter-spacing: 1px;  font-family: "Work Sans", sans-serif;}
.footer_menu a { display: inline-block; padding: 5px 7px 5px 15px; border: unset; margin: 0 0px 5px 0; font-size: 14px; position: relative; line-height: 100%;
    color: #444; background: transparent;  width: 46%; letter-spacing: 2px; transition: 0.5s;}

.footer_menu a:before { content: ""; background: #bbbbbb; width: 5px;height: 5px;position: absolute; left: 0; top: 50%; transform: translateY(-50%); border-radius: 80px;}
.footer_menu a:hover { background: transparent; color: #AFDCDD; letter-spacing: 4px;}
.copy { text-align: center; padding: 15px 0 20px; font-size: 13px; color: rgb(222, 222, 222);  margin: 0; background: #8A784E;}
.copy a { color:  rgb(222, 222, 222);}
.copy a:hover { color: rgb(222, 222, 222);}


@media screen and (max-width:1300px) {
    .footer_info ul{ justify-content: center;}
    .footer_info li:nth-child(1){ width: 52%;}
}

@media screen and (max-width:910px) {
    .footer_info{ grid-template-columns:200px 1fr;}
}
@media screen and (max-width:800px) {
    .footer_info{ grid-template-columns:unset}
}
@media screen and (max-width:768px) {
    .footer_info ul li:nth-child(1):before{ left: 0px;}
}

@media screen and (max-width:600px) {
    .footer_info ul{ flex-direction: column;}
    .footer_info li:nth-child(1),.footer_info li:nth-child(2) { width: 100%;}
    .footer_info li:nth-child(1) {margin-bottom: 24px;}
    .footer_logo{ max-width: 120px;}
    .footer_info{ padding: 0 20px 30px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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_menu_list { 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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#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: 770px) {
.bannerindex { padding:0; margin:0;  height: auto;}
}

@media screen and (max-width:1400px) {
    .bannerindex{ margin-top: 80px;}
}
@media screen and (min-width: 770px) {
    .bannerindex {
      top:18px;
      left: 60px;
      width:calc(100% - 120px)     ;
      overflow: hidden;
      }
  }

@media screen and (max-width:769px) {
    .bannerindex{ margin-top: 40px!important;}
}
@media screen and (max-width:450px) {
    .bannerindex{ margin-top: 20px!important;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*Banner/＝＝＝＝＝*/
.banner {    width: 100%;    height: 36vh;    background: #243035;    position: relative;    overflow: hidden; margin-top: 100px; }
.banner:before {
    content: '';
    animation: bgScroll 30s linear infinite;
    width: 110%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/scwintkd/banE.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.album_page .banner:before {     background-image: url(https://pic03.eapple.com.tw/scwintkd/banE.jpg);}
.blog_page .banner:before, .blog_in_page  .banner:before { background-image: url(https://pic03.eapple.com.tw/scwintkd/banblog.jpg);}
.banner.banB,.banner.banC{ display: none;}

@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}

.banner h5 {
    letter-spacing: 2px;
    top: 32%;
    width: 100%;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    max-width: 75%;
    animation: imgSlideUpAnimation 1.5s 0.5s both;
     font-family: "Noto Sans TC","Work Sans", sans-serif;
    text-shadow: 5px 5px 10px #000000b3;
}
@media screen and (max-width:769px) {
    .banner{ margin-top: 35px;}
}

@media screen and (max-width:450px) {
    .banner{ height: 10vh;}
     .banner{ margin-top: 18px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*●●●●●●●●●●●●●●●●●●●●●●●●   文章分類管理   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*側邊*/
.blog_le{padding: 0 7px;}
h5.blog_le_t{text-align: center;margin-bottom: 0;}
h5.blog_le_t em,h5.blog_le_t span{display: none;}
.blog_search input[type=search]{border-radius: 0;}
.blog_le .accordion {border-radius: 0;}
.blog_le .accordion li{transition: all .8s;}
.accordion li .link a {font-size: 13px;font-weight: 500;letter-spacing: .6rem;text-align: center;}
.submenu a {padding: 12px 12px 12px 30px;background: #fff;font-size: 12px;}
/*分類頁*/
.blog_ri {padding: 0 0 0 50px;}
.blog_page h4.blog_category_title{display: none;}
.blog_subbox {grid-template-columns: 1fr;}
.subbox_item a {grid-template-columns: 200px 1fr;align-items: center;grid-gap: 50px;padding-right: 50px;}
.subbox_item a:before {font-size: 12px;padding: 5px 20px;background: #c1a383;color: #fff;
	bottom: auto;right: auto;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.subbox_item a:after {background: rgba(256,256,256,.5);border: none;}
.blog_list_ri h5 {color: #555555;font-weight: 400; font-size: 18px;}
.blog_list_ri em {font-size: 12px; color: #AFDCDD;}
.blog_list_ri p {font-weight: 400;letter-spacing: 1.4px;line-height: 160%;font-size: 14px;margin-top: 14px; color: #000;}
/*文章頁*/
h4.blog_category_title {padding: 0;font-size: 20px;margin-bottom: 0;font-weight: 400;}
.blog_shareData{border-bottom: 1px solid #eee;padding-bottom: 10px;}
.toShareNews b{font-size: 12px;font-weight: 400;}
.toShareNews a object{max-width: 20px;}
.articel_mainPic{display: none;}/*清單縮圖*/
.blog_back {grid-gap: 0;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next {
	background: transparent;color: #A08963;border: 1px solid #A08963;font-size: 14px;padding: 12px;}
.blog_back a.article_btn_back{background: #A08963;padding: 12px;}
.news_related{padding: 50px 0 25px;border-top: 1px solid #333;margin-top: 100px;}
.news_related h6 span:before {font-size: 18px;letter-spacing: .6rem;font-weight: 500;color: #555;}
.news_related_list {background: transparent;}
.news_related_list li a{padding: 0;}
.news_related_list li a p {font-size: 14px;width: 90%;line-height: 1.4;margin: 10px auto 20px;padding: 0; font-weight: 400;}
.lastPage {background: #B09559;font-size: 16px;}

@media screen and (max-width: 1024px){
	/*分類頁*/
	.subbox_item a {grid-template-columns: 120px 1fr;align-items: start; grid-gap: 30px;padding: 15px 0;}
}
@media screen and (max-width: 768px){
	/*側邊*/
	.blog_le{padding: 0;}
	/*分類頁*/
	.blog_list_ri{padding: 0;}
	.blog_list_ri h5 {font-size: 16px;}
	/*文章頁*/
	.blog_le, .blog_ri{margin-bottom: 50px;}
	.blog_back a.article_btn_prev,.blog_back a.article_btn_next,.blog_back a.article_btn_back{font-size: 12px;}
	.lastPage{font-size: 12px;}
}
@media screen and (max-width: 450px){
	/*分類頁*/
	.subbox_item a {grid-template-columns: 80px 1fr;grid-gap: 15px;}
}
/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*左側選單*/
.blog_le {padding: 0;width: 250px;}
.accordion li .link a {letter-spacing: .2rem;}
.blog_le .accordion > li:hover,
.blog_le .accordion > li.on_this_category { background:#B09559 !important;}
.blog_le a.news_menu_toggle{ top: -10px;}
/*右側*/
.blog_ri {width: calc(100% - 260px);}
/*分類頁*/
.blog_subbox {grid-template-columns: 1fr 1fr 1fr;grid-gap: 50px 30px;}
.subbox_item a {grid-template-columns: 1fr;grid-gap: 10px;padding-right: 0;}
.subbox_item a:before,.subbox_item a:after{display: none;}
.blog_list_le{overflow: hidden;aspect-ratio: 3 / 2;}
.blog_list_le img{transition: all .5s;}
.subbox_item a:hover .blog_list_le img{transform: scale(1.05); opacity: 0.8;}
/*文章頁*/
h4.blog_category_title{font-size: 24px; color: #B09559; font-weight: bold;}
.blog_box_edit *{font-weight: 400;font-family: "Noto Sans TC";}
.news_related{background: transparent;}
.news_related_list {max-width: 1400px;grid-gap: 30px;grid-template-columns: repeat(4,1fr); padding: 0px 40px;}
.news_related_list li a p {font-size: 16px;margin: 15px auto 20px;}

@media screen and (max-width:1024px) {
    .blog_subbox{grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width:960px) {
     .subbox_item{ border-bottom: 0px;}
}
@media screen and (max-width:768px) {
    .blog_ri {padding: 0 0 0 0px;}
    .blog_ri {width: 100%;}
    .news_related_list {grid-gap: 18px;grid-template-columns: repeat(2,1fr);}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*相簿修改*/
.subalbum-menu h2 {  color: #000000; font-family: "Noto Sans TC","Work Sans", sans-serif; font-weight: 100; margin-bottom: 35px;  display: none;  }
.other_subalbum li {  background: #ffffff00;  letter-spacing: 1px; }
.other_subalbum li a p { text-align: center; margin: 15px 0; }
.overlay { background: rgb(255 255 255 / 29%); }
/* .info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; }  */
/*取消連結被點擊效果*/

.show-list{ grid-template-columns:1fr 1fr 1fr;}
.show-list .show_name{ font-size: 16px; color: #555555; text-align: center; font-weight: 500;}
.show-list .item:hover .show_name { color: #555555; }

.other_album_choice li { background: #B09559;  border-radius: 0px;}
.other_album_choice li a { color: #fff; }

@media screen and (max-width:768px) {
    .show-list{ grid-template-columns:1fr 1fr;}
}
@media screen and (max-width:410px) {
    .show-list{ grid-template-columns:1fr;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 聯絡我們 */
.contact_editbox{  padding: 0px 0px;}
.contact_content .information_left{ display: none;}
.contact_content{ max-width: 1350px; padding: 20px 10px 50px;}
.contact_content .information_right{ width: 100%;}

.blank_letter{ color: #949494; font-size: 22px;}

.contact_form li{grid-template-columns:132px 1fr; }
.contact_form li .form__label{ color: #000; display: flex; flex-direction: row-reverse; justify-content: flex-end; max-width: 130px;}
.contact_form li input.noborder{  border: 0px; background: unset; color: #000;  border-bottom: 1px solid #9a9a9a;}
.contact_form li textarea.noborder{  border: 0px ; background: unset; color: #000; border-bottom: 1px solid #9a9a9a;}
.noborder{ padding: 8px 0;}
.contact_form li{ padding: 0 0  20px 0; }
.contact_form li .form__insert{ color: #000;}

.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: flex; flex-wrap: wrap;}
.contact_form li input { margin-left: 10px;}

.contact_form li.last cite{ background: #A08963;}
.contact_form li.last blockquote{ color: #A08963;}
.contact_form li.last blockquote, .contact_form li.last cite { border: 1px solid #A08963; border-radius: 0px;}



@media screen and (max-width:1300px) {
  .contact_content{ max-width: 1000px; width: 80%;}
}
@media screen and (max-width:980px) {
    .contact_form li .form__label{ background: transparent;}
}
@media screen and (max-width:768px) {
  .contact_content{  width: 90%;}
  .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: grid; grid-template-columns:1fr 1fr 1fr 1fr;}
}
@media screen and (max-width:500px) {
    .contact_content{  width: 98%;}
  .contact_form li .form__label{ width: 160px;}
  .contact_form li{ display: flex;}
  .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ grid-gap: 12px;}
  /* .contact_form{ margin-left: 20px;} */
}
@media screen and (max-width:488px) {
     .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ grid-template-columns:1fr 1fr;}
}




.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #B09559; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




