@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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過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個--結束 */


/* =============== ▼ HEADER ▼ =============== */

.path {display: none;}
/* 隱藏最後1個主菜單 */
.stellarnav > ul.anchorList > li:nth-last-child(1){display: none !important;}

/*選單設定*/
.nav-menu {margin: 0;}


.header_area .main_header_area .container {  max-width:85%;  transition: all 0.3s;}
.header_area.sticky .main_header_area .container { max-width: 80%; transition: all 0.3s;}
.nav-menu>li:not(.tp_links) { padding-right: 15px;}

.nav-menu>li:hover>a,
.nav-menu>li.active>a,
.nav-menu>li.focus>a {color: #2B3047;}

.nav-dropdown>li:hover>a,
.nav-dropdown>li.focus>a { color: #2B3047;}

.nav-dropdown>li { text-align: center;}
.me_tp_features { display: none;}
.nav-header { position: absolute; top: 50%; z-index: 98999999; transform: translate(0, -50%); transition: all 0.5s;}
.sticky .nav-header { top: 70px; transition: all 0.5s;}
.nav-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #DDECF3;
    z-index: -1;
    border-radius: 0;
    opacity: 1;
    border-radius: 0 0 20px 20px;
    transition: all 0.3s;
}

.pageIndex .nav-header::before { top: -100px; opacity: 1; transition: all 0.3s; transition-delay: 0.5s;}
.sticky .nav-header::before { top: 50%;  opacity: 1;  transition: all 0.3s;  transition-delay: 0.5s;}

.nav-header::after {}
.nav-header:hover:after { animation-play-state: paused; transition: all 0.3s;}
.nav-header:hover:before { transition: all 0.3s;}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg);}
    100% { transform: translate(-50%, -50%) rotate(360deg);}
}



/*icon-----------------------------------------------------------------------*/
.stellarnav li a:before {
    content: "";
    display: block;
    position: relative;
    width: 65px;
    height: 65px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav li a:hover:before {
    transform: scale(1.1) rotate(10deg);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.stellarnav li:nth-of-type(1) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon001.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(2) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon002.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(3) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon003.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(4) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon004.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(5) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon005.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(6) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon006.png) no-repeat center;
    background-size: contain;
}
.stellarnav li:nth-of-type(7) a:before {
    background: url(https://pic03.eapple.com.tw/fish2026/hd_icon007.png) no-repeat center;
    background-size: contain;
}

/* .stellarnav li:nth-of-type(8) a:before {
    background: url(https://pic03.eapple.com.tw/cccaaatttcat/hd_icon008.png) no-repeat center;
    background-size: contain;
} */

@keyframes upDown {
    0% {margin-top: -10px; margin-bottom: 10px;    }
    100% {margin-top: 0; margin-bottom: 0;    }
}

@-webkit-keyframes upDown {
    0% {margin-top: -10px; margin-bottom: 10px;    }
    100% {margin-top: 0; margin-bottom: 0;    }
}

/*icon-----------------------------------------------------------------------*/


.header_area { position: fixed; z-index: 9999; width: 100%; padding: 0 6%; top: 0;  background: transparent; transition: all 0.7s;}
.header_area.sticky { top: 0px;  background: transparent;  transition: all 0.7s; }
.main_header_area { position: relative;  background: #fdfcf9; border-radius: 0px 0px 50px 50px;}
.header_area .main_header_area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fdfcf9;
    position: absolute;
    top: -160px;
    left: 0;
   box-shadow: 0px 0px 0 rgb(0 0 0 / 10%);
    transition: all 0.85s cubic-bezier(0.68, 0, 0.265, 1.55);
}

.header_area.sticky .main_header_area::before { height: 100%; top: 0; border-radius: 0px 0px 50px 50px; transition: all 0.85s cubic-bezier(0.68, 0.1, 0.265, 1);}
header.header_area.sticky .stellarnav li a:before {  content: "";  display: block;  position: relative;  width: 35px;  height: 35px;}
.stellarnav li.has-sub>a:after { display: none;}

.stellarnav>ul>li>a { padding: 0px 15px;  color: #fff;  text-transform: uppercase;  position: relative; display: inline-block; font-size: 16px; line-height: 50px;  height: 50px;  margin: 0 15px;  cursor: pointer;    text-align: center; transition: all 0.5s;}

.stellarnav>ul>li>a { color: #347992;}
.sticky .stellarnav>ul>li>a { color: #347992;  transition: all 0.5s;}


.stellarnav>ul>li>a:hover {  color: #a6cbdd;  transition: all 0.5s;}
.stellarnav > ul > li > a:hover b { transform: none; -webkit-transform: none; -moz-transform: none;}
.stellarnav > ul > li > a { line-height: 50px;  height: 100px; font-family: "Noto Sans TC", sans-serif;}
.stellarnav>ul>li>a b { font-weight: 500;  transition: all 0.5s;}
.stellarnav>ul>li>a b:nth-of-type(2) { color: #f6e034;  line-height: 0;  height: 0;  font-size: 10px; transition: all 0.5s; }
.stellarnav > ul > li > a b { line-height: 35px; height: 35px; }


.header_area .navigation {  display: flex;  width: 100%;    position: relative;    padding: 20px 0;    opacity: 1;    transition: all 0.3s;    justify-content: flex-end;}
.header_area.sticky .navigation {    padding: 25px 0 0;    opacity: 1;    transition: all 0.5s;    transition-delay: 0.5s;}



/*下拉*/
.nav-dropdown>li>a {  background: #f7f5f5;    transition: 0.2s;    letter-spacing: 1.5px;    width: 100%;}
.nav-dropdown>li>a:hover { transition: 0.2s; background-color: #2B3047;color: #fff}

.nav-dropdown>li:hover>a .submenu-indicator-chevron,
.nav-dropdown>.focus>a .submenu-indicator-chevron { border-color: transparent #fff #fff transparent;}

.stellarnav li li a { padding: 10px 15px;  display: block;  color: #347992; background-color: transparent;  transition: all 0.3s;}
.stellarnav li li a:hover {   background-color: #e3f3f8; transition: all 0.3s;}



.header_area .stellarnav li li a:before { display: none;}
.header_area.sticky .stellarnav li li a:before { display: none;}

#content{padding-top: 150px;}

@media screen and (max-width: 768px) {
    #content{padding-top: 30px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*HEADER_LOGO設定*/
.header_area .nav-brand {  display: inline-block;  width: 200px;  transition: all 0.5s;}
.header_area.sticky .nav-brand { width: 180px;  transition: all 0.5s;}
.header_area .nav-brand img { width: 100%;  max-width: 100%; transition: all 0.3s;}
.header_area.sticky .nav-brand img { transition: all 0.3s;}
.footer_logo img {width: 100%;}
.footer_logo { width: 200px;}

@media screen and (max-width: 1800px) {
.stellarnav>ul>li>a { padding: 0px 5px;}
}
@media screen and (max-width: 1700px) {
.header_area {padding: 0 0;}
.header_area.sticky .main_header_area .container { max-width: 90%;}
.header_area .main_header_area .container { max-width: 90%;}
.stellarnav>ul>li>a {  padding: 0px 5px;}
.sticky .stellarnav>ul>li>a { padding: 0px 10px;}
}
@media screen and (max-width: 1500px) {
.header_area.sticky .main_header_area .container { max-width: 95%;}
.header_area .main_header_area .container { max-width: 90%;}
.sticky .stellarnav>ul>li>a { padding: 0px 5px;}
}
@media screen and (max-width: 1440px) {
.main_header_area .container { max-width: 90%;}
.header_area.sticky .main_header_area .container { max-width: 90%;}
.stellarnav>ul>li>a {padding: 0px 10px;}
}
@media screen and (max-width: 1300px) {
.header_area.sticky .main_header_area .container {max-width: 95%;}
.header_area .main_header_area::before {content: "";  display: block; width: 100%;  height: 100%; position: absolute; top: -110px; left: 0;   transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.stellarnav ul { text-align: right;}
.stellarnav>ul>li.has-sub>a { padding-right: 0;}
.stellarnav>ul>li>a {padding: 0;margin: 0 10px;}
.nav-header { max-width: 150px;}
}
@media screen and (max-width: 1024px) {
.header_area.sticky .main_header_area .container { max-width: 100%;}
.header_area.sticky .navigation { padding: 0 0 ;}
.header_area .navigation { padding: 15px 0;}
.header_area .main_header_area::before {content: "";  display: block; width: 100%;  height: 100%; position: absolute; top: -110px; left: 0;   transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.stellarnav ul { text-align: right;}
.stellarnav>ul>li.has-sub>a { padding-right: 0;}
.stellarnav>ul>li>a {padding: 0;}
.header_area .navigation { padding: 30px 0; }
.navigation { display: flex; flex-direction: column; justify-content: flex-start; align-items: center;  align-content: center;}
.nav-header { position: relative;top: 0;  transform: translate(0, 0);}

.stellarnav ul {text-align: center;}
.pageIndex .header_area .main_header_area::before { top: -110px;}
.pageIndex .header_area.sticky .main_header_area::before {top: 0;}
.pageIndex .nav-header::before { opacity: 0; top: 40px;}
.header_area.sticky .nav-brand { width: 0;}
.sticky .nav-header { top: -50px;}
.sticky .nav-header::before { opacity: 0;}
}

@media screen and (max-width: 980px) {
.header_area .main_header_area .container { max-width: 100%;}
.header_area .navigation { padding: 20px 0; }
.sticky .stellarnav>ul>li>a { padding: 0px 0px;}
.stellarnav>ul>li>a { margin: 0 5px;}
.nav-header::before{ display:none;}
}

@media screen and (max-width: 768px) {
.main_header_area { position: relative;  background: #ffffff00;  border-radius: 0;}
.header_area.sticky { top: 0px;  background: transparent; transition: all 0.7s;}

/*手機板logo*/
.header_area .main_header_area::before { display:none;}
.nav-header { position: fixed; left: 0; top: 0; background: #fff;  padding: 10px 25px 5px 15px;  max-width: 200px;  border-bottom-right-radius: 45px;  box-shadow: 0 0 20px rgba(0, 0, 0, .05); }
.header_area.sticky .nav-brand { width: 200px;}
.sticky .nav-header {top: 0; }

/*手機板menu----------------------------------------------------------------*/
/*menu外層*/
/*menu選單靠左*/
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {  max-width: 230px;}
.stellarnav.mobile.left>ul { left: auto; right: 0;  padding: 0;  border: 0;}

.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile { display: block;  position: fixed;  top: 15px;  right: 5%; z-index: 999; transition: all 0.5s;  pointer-events: all;background: #fff;  padding: 10px; 
				border-radius: 20px;padding: 10px 15px;  box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);}

.stellarnav .menu-toggle:after { content: '選單 ';  color: #c17e67;  display: block;  transform: scale(0.9);  font-weight: 700;}
.stellarnav .menu-toggle span.bars span {  background: #c17e67;}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile { top: 15px;  transition: all 0.5s;}

.navigation {  width: 100%;  position: relative;  padding: 0;}
.stellarnav>ul>li { width: 100%;}
.stellarnav { width: 45%;  height: 0%;  max-width: 450px;  position: fixed;  top: 0;  right: 0;  z-index: 0;  padding-top: 3vw;  transition: all .8s;  transition-timing-function: ease-out;}
.stellarnav.active { height: 100%;  z-index: 0;  transition: all .5s;  transition-timing-function: ease-in-out;}
.stellarnav.active li.has-sub>a:after {  border-top: 3px solid #ccc; border-left: 4px solid transparent;  border-right: 4px solid transparent;  right: -14px;}
.stellarnav.mobile {  position: fixed; top: 0; left: auto; width: 100%;  height: 75px; }


/*menu內層*/
.stellarnav li a:before { display: none;}
.stellarnav li a:hover:before { display: none;}
header.header_area.sticky .stellarnav li a:before { display: none;}
header.header_area.sticky .stellarnav li a:hover:before { display: none;}
.stellarnav>ul>li>a b:nth-of-type(2){ display: none;}
.stellarnav.mobile.right .close-menu,
.stellarnav.mobile.left .close-menu {  display: inline-block;  text-align: right;  padding: 10%; font-size: 12px;  background: #c9daef;  color: #333; font-weight: 600;}
.stellarnav .icon-close:after { border-bottom: solid 3px #333; }
.stellarnav .icon-close:before { border-bottom: solid 3px #333;}
.stellarnav.mobile>ul>li>a { padding: 15px 43px 15px 15px;}
.stellarnav.mobile>ul>li>a.dd-toggle { padding: 0;  position: absolute;  top: 15px;}

.stellarnav.mobile li.open { background: transparent;  padding: 0px; }
.stellarnav li li:hover { background: inherit; border-radius: 0;  color: inherit;  transform: none;  box-shadow: none;  z-index: 100000; transition: all 0.3s;}
.stellarnav li li:hover>a { color: inherit;  transition: all 0.3s;}
.stellarnav.mobile li.open li.open { background: transparent; padding: 0px;}
.stellarnav.mobile li li.has-sub a { padding: 15px 43px 15px 10px;}
.stellarnav.mobile li.open li.open { background: transparent; padding: 0;}
.stellarnav.mobile li a { border-bottom: 0;}
.stellarnav li li a { padding: 15px 35px; color: #c17e67;}
/*----------------------------------------------------------------*/

}

@media screen and (max-width: 480px) {
.nav-header { max-width: 170px;}
}

/* =============== ▲ HEADER ▲ =============== */


.info_fix{display: none;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* =============== ▼ FOOTER ▼ =============== */
.site_endPart{background: #ecf9ff;}
.box_link{display: none;}

/* 聯絡資訊--------- */
.site_reachOut{flex-direction: column;}
.site_endPart li{align-items: flex-start;}

.site_reachOut p:before{color: #46606a;}
.site_reachOut p{color: #3b829d;}
.site_reachOut a{color: #367b93;}

/* 分頁按鈕 */
.site_bottomMenu{justify-content: flex-end;}
.site_bottomMenu a{color: #6d9494;border: none;}

.For_CampUse a{background: #4d8aa1;}

/* 線上預訂改到第一個 */
.For_CampUse .site_iconCamp03 {
    order: -1;
}

/* =============== ▲ FOOTER ▲ =============== */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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) {
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/* 線上預訂 */
.CampCalendarPage .main_part::before {
    content: "｜　若選擇之日期，沒有可點選的項目代表房間或營位已滿。訂購後72小時內匯款並回覆匯款，否則系統將自動取消訂單　｜\a匯款回報屬於人工作業，敬請耐心等候！";
    display: block;
    display: block;
    width: 100%;
    max-width: 1000px;
    margin:  30px auto;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color:#D20000;
    font-family: "Noto Sans TC", sans-serif;
    line-height: 2.5;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {display: none;}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
  
.blog_page.article_a.bodyDesktop,.blog_in_page.article_a.bodyDesktop {padding-top: 150px;}

/*列表*/
/*側邊*/
.blog_search input[type=search] {  border-radius: 0px;}
.blog_le .accordion { border-radius: 0px;}
.submenu { background: #fff;}
h5.blog_le_t {  font-size: 22px; letter-spacing: 3px;  margin-bottom: 15px; position: relative;  color: #222;}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {  background: #334843 !important;}
.submenu li.on_this_category a, .submenu a:hover { background: #fff; color: #979797; letter-spacing: 4px;}
.submenu a {padding: 12px;}
.submenu a i { display: none;}

/**/
.blog_subbox { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-gap: 60px 30px;}
.subbox_item a { grid-template-columns: 1fr;}
.blog_list_ri { min-height: 200px;}
.blog_list_ri h5 {  font-weight: 500; letter-spacing: 2px;  font-size: 20px;  color: #111; }
.blog_list_ri p { border-top: 1px solid #444; padding-top: 10px; margin-top: 10px; font-size: 15px; color: #444;}
.blog_list_ri em { color: #555;}
/*hover*/
.subbox_item a:after{display: none;}
.blog_list_le { overflow: hidden;}
.subbox_item:hover .blog_list_le img { transform:scale(1.1);  transition: 0.8s;}
.subbox_item a:before { left: 0px; opacity: 1;}

/*內頁*/
.articel_mainPic { padding-top: 25px;}
.articel_mainPic img { max-width: 500px;width: 100%;}
.blog_shareData {justify-content: flex-end;}
h4.blog_category_title { margin-bottom: 5px;}
.blog_box_edit { border-top: 1px solid #c2c2c2;}
.news_related {background: #fffcf2;}

/*按鈕顏色*/
.blog_back a.article_btn_back { background: #357993;}
.blog_back a.article_btn_prev ,.blog_back a.article_btn_next { background: #a7c3d0;}

@media screen and (max-width: 1150px) {
    .blog_subbox {  grid-template-columns: 1fr 1fr;  grid-gap: 60px 20px;}
}

@media screen and (max-width: 768px) {
    .blog_page.article_a.bodyDesktop,.blog_in_page.article_a.bodyDesktop{padding-top: 50px;}
}

@media screen and (max-width: 600px) { 
    .blog_subbox {  grid-template-columns: 1fr;  grid-gap: 60px 0px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


.album_class_page.album_a.bodyDesktop,.album_info_page.album_a.bodyDesktop {padding-top: 150px;}
.subalbum-menu h2{
    color: #357993;
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 600;
    letter-spacing: 1.25px;
}


@media screen and (max-width: 768px) {
    .album_class_page.album_a.bodyDesktop,.album_info_page.album_a.bodyDesktop{padding-top: 50px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




