@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/*反白顏色*/
::-moz-selection{
    background-color: #BB9F87;
    color: #fff;
}
::selection{
    background-color: #BB9F87;
    color: #fff;
}

&::-webkit-scrollbar {
    background: #181818;
    width: 7px;
}
&::-webkit-scrollbar-button {
    display: none;
    background: #181818;
    border-radius: 0;
}
&::-webkit-scrollbar-track-piece {
    background: #181818;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ccc;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

:root {
    --MainColor: #C2C6C9;
    --SubColor: #BEBEBE;
    --SubColor2: #8C8C8C;
    --SubColor3: #656565;
    --titlecolor: #fff;
    --SFont: "Noto Sans TC", sans-serif;    /*特殊字體*/
    --SFontE: "Rajdhani", sans-serif;    /*特殊字體*/
    --pd100: 100px 0;
    --m100: 100px;
    --m50: 50px;
    --m30: 30px;
    --f48: 48px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

@media (max-width:1024px) {
    :root {
        --m50: 40px;
        --m30: 25px;
        --f48: 40px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
}

@media (max-width:768px) {
    :root {
        --pd100: 70px 0;
        --m100: 70px;
        --m50: 30px;
        --m30: 20px;
        --f48: 32px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }
}

@media (max-width:600px) {
    :root {
        --pd100: 50px 0;
        --m100: 50px;
        --m50: 25px;
        --f48: 28px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }
}

@media (max-width:375px) {
    :root {
        --f48: 24px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


#content {            }
body{    overflow: overlay; font-family: var(--SFont); font-weight: 400;}

.main_part {
    padding: 0px 20px;
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 開場動畫 */
.bannerindex::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(0px);
    z-index: 1000000000000010000000;
    animation: action-bg 4.3s cubic-bezier(0.80, 0.08, 0.11, 0.5) forwards;
    pointer-events: none;
}
.swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 2.5s cubic-bezier(0.80, 0.08, 0.11, 0.59) forwards ;
}

@keyframes action-bg {
    0%{
        backdrop-filter: grayscale(1)  blur(10px);
    }
    100%{
        backdrop-filter: grayscale(0)  blur(0px);
    }
}


@keyframes action-banner {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
    
}
/*LOGO進入畫面*/
@-webkit-keyframes fade-in {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes fade-in {
  0% {opacity: 1;}
  100% {opacity: 0;}
}
body.pageIndex::before {
    content: '';
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation: fade-in 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}
body.pageIndex::after{
    content: "";
    pointer-events: none;
    display: block;
    width: 12%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw/0422550613/logo-pre.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 100000000;
    animation: fade-in 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}
@media screen and (max-width: 768px){
body.pageIndex::after{width: 20%;}
}
@media screen and (max-width: 600px){
body.pageIndex::after{width: 25%;}
}
@media screen and (max-width: 450px){
body.pageIndex::after{width: 35%;}
}
/* = = = 主選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.pageIndex .header_area.sticky .main_header_area {background: #fff; opacity:.9; height: 80px; transition: 0.4s ease;}
/*.pageIndex .main_header_area {background: linear-gradient(to bottom, rgb(255 255 255 / 90%) 0%, rgb(0 0 0 / 0%) 100%); opacity:1; height: 130px; transition: 0.4s ease;}*/
.header_area.sticky .main_header_area {background: #fff;}
.main_header_area{background: none; height: 80px; transition: 0.4s ease;}
.navigation {padding: 0px 0 0px 0px;}

/*選單最大寬度設定*/
.main_header_area .container {max-width:91%;}


.swiper-pagination-bullet {
    width: 40px;
    height: 2px;
    border-radius: 0%;
    background: #fdfdfd;
}

/* = = = LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.nav-header {display: block; width: 100%; text-align: left;}
.nav-brand {width: 100%; display: block; margin-top: 6px; transition:all 0.3s;}
.nav-brand img {max-width: 120px; padding-top: 5px; transition: 0.3s ease;}
.pageIndex .header_area {position: fixed;}
.header_area {padding: 0px; position: fixed; background: none;}

/* = = = 主選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*第一層*/
.stellarnav {width: 100%;}
.stellarnav > ul > li > a {font-weight: 400; letter-spacing:1px; font-size: 16px; color: #000; transition:all 0.3s; padding: 0px 6px 0px 6px; height: 40px; /*text-shadow: 1px 1px 10px #908279;*/}
.stellarnav > ul > li > a:hover{color: #E64500;}
.stellarnav li.has-sub > a:after {display:none;}
.stellarnav li.has-sub > a {padding: 0px 6px 0 6px;}
.stellarnav > ul > li.has-sub > a {padding-right: 6px; padding-left: 6px;}

/*第二層*/
.stellarnav li {text-align: left;}
.stellarnav li a {color:#2b2a2a;}
.stellarnav li li > a , .stellarnav li li.has-sub > a{padding: 10px 14px; letter-spacing:1px; transition: all 0.3s; border-left:1px solid transparent; font-size: 13px; font-weight: 400;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color:#E64500; padding-left:14px;border-color:#FFF ; background: #fFf;}
.stellarnav>ul {padding-top: 20px; transition: 0.3s ease;}
.stellarnav ul ul {margin-top: 0px; width: 162px; background: #ffffff;}
.stellarnav li li {width: 100%; border: 1px #F5EBE0 solid;}

/*SubMenu*/
.shop_search_btn {display: none;}
.tp_links {display: none;}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover {color: #908279;}
.me_tp_features {display: none;}


@media screen and (max-width: 1700px) {
  .stellarnav>ul {padding-left: 0px;}
  .stellarnav > ul > li > a {padding: 0px 0px 0px 0px;}
  .stellarnav > ul > li > a b {font-size: 15px;}
  .stellarnav > ul > li.has-sub > a {padding-right: 0px; padding-left: 0px;}
}
@media screen and (max-width: 1350px) {
  .main_header_area .container {max-width: 100%;}
  .stellarnav > ul > li > a {padding: 0px 4px 0px 4px;}
  .stellarnav li.has-sub > a {padding: 0px 4px 0px 4px;}
}
@media screen and (max-width: 1180px) {
  .stellarnav {width: 100%;}
}
@media screen and (max-width: 1024px) {
  .stellarnav {width: 100%;}
  .stellarnav>ul {text-align: center; margin-top: 0px; margin-top: 4px; padding-top: 0px;}
  .main_header_area {height: 140px;}
  .header_area.sticky .stellarnav>ul {padding-top: 15px;}
  .header_area .stellarnav>ul {padding-top: 15px;}
  .header_area.sticky .main_header_area {height: 80px;}
  .nav-header {text-align: center;}
  .navigation {flex-direction: row;}
}
@media screen and (max-width: 850px) {
.stellarnav li {text-align: center;width: inherit;}   
 
}
@media screen and (max-width: 768px) {
.nav-brand img {max-width: 90px;}
.nav-brand { padding-right: 12px;}
.stellarnav > ul > li > a{text-shadow:none;}
.header_area.sticky .main_header_area {height: 55px;}
.main_header_area {height: 55px;}
.pageIndex .header_area.sticky .main_header_area {height: 55px;}
.header_area {position: sticky; background:#fbfbfb;}
.pageIndex .main_header_area {background: #fbfbfb; height: 55px;}
.navigation {   flex-direction: column;    }
/*漢堡選單展開*/
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {background: #fff;  margin-top: 0;}
.stellarnav.mobile.left > ul { max-width: 215px;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #fefcf3;}
.stellarnav.mobile > ul > li {border-bottom: 1px #f5ebe0 solid;}
.stellarnav li {width: 100%; text-align: left;}
.stellarnav > ul > li.has-sub > a {padding-right: 10px; padding-left: 10px;}
.stellarnav .menu-toggle span.bars span {background: #908279;}
.stellarnav .menu-toggle:after {color: #908279;}
.stellarnav .menu-toggle {padding: 10px;}

.stellarnav.mobile ul {background: #FFF;}
.stellarnav.mobile li.open {background: #fff;}
.stellarnav li li {border: 1px #d8c9b8 solid;}
.stellarnav li a {color: #908279;}

.stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 3px #cabdae;}
.stellarnav a.dd-toggle .icon-plus:before {border-bottom: solid 3px #cabdae;}
.stellarnav .icon-close:after {border-bottom: solid 3px #cabdae;}
.stellarnav .icon-close:before {border-bottom: solid 3px #cabdae;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {color: #cabdae;}
.swiper-pagination-bullet {width: 20px;}
}



/*大圖*/
.swiper-banner .swiper-slide img {
    height: auto;
}
/*底部色塊*/
.swiper-wrapper:before{content: "";position: absolute;right: 0;top: 0;width: 21vw;height: 100%;
background: rgba(33,26,22,.05);z-index: 1;animation: bg 6s;animation-fill-mode: both;}
@keyframes bg{
	0%{opacity: 0;width: 0vw;}
	100%{opacity: 1;width: 21vw;}
}

/*大圖文字*/

.swiper-slide{position: relative;}
.swiper-fade .swiper-slide:before{ 
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/0422550613/text_pre.png);
    width: 35%;
    top: 30%;
    right: -17%;
    aspect-ratio: 133 / 73;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9999;
	animation: text-left 7s;animation-fill-mode: both; }
@keyframes text-left{
	0%{opacity: 0;transform: translateX(2.5vw);}
	100%{opacity: 1;transform: translateX(0vw);}
}

@media screen and (max-width: 600px) {
    .swiper-banner .swiper-slide img {
      height: 260px;
      object-fit: cover;
    }
   }


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.path{display:none;}

/*內頁BANNER 設定*/
.banner {
	font-size: 30px;
	display: flex;
    height: 0;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    font-family: 'Fira Sans Extra Condensed', 'sans-serif', '微軟正黑體';
    padding:0px;min-height: 150px;}
.banner h5 {
    display: block;
    border-left: 1px solid #777;
    border-right: 1px solid #777;
    line-height: 100%;
    padding-left: 0;
    width: 100%;
    max-width: 315px;
    margin: auto;
	margin-top: 50px;
}
.banner.banB h5{display:none;}
.banner.banB {min-height: 110px;}
.other_select_page .banner {    width: 90%;    margin: auto;    max-width: 1760px;}
.other_select_page .banner h5 {
    display: block;
    border-left: 2px solid #000;
    border-right: none;
    line-height: 160%;
    padding-left: 40px;
    width: unset;
    margin: 0;
    font-weight: 600;
}
.map_page .banner {    display: none;}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }
.footer.with_shopping_mode { padding:20px 0px 35px 0px;  }
#to_top { right: 5px;width: 42px;
    height: 42px;
    bottom: 55px;
    left: unset;}
#to_top i.top {height: 11px;}	
.banner h5 {	margin-top:0px;font-size: 20px;}
.banner {min-height: 60px;}
.other_page .banner {min-height: 20px;}
}

@media screen and (max-width: 600px) { 
.banner h5 {  
    padding-left: 5%;
    width: 100%;
    text-align: left;
   max-width: 100%;
   border:none;
}
}



/* = = = 頁尾 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.center {max-width: 95%;}

/* .footer .center {max-width: 1775px;} */
.footer {background:#EEEEEE; border-top: 0px solid #e8e8e8;  font-family:"Montserrat","Noto Sans TC";padding: 20px 0 0;}
.footer_info li:nth-child(1) { font-size: 13px;grid-template-columns: 3.3fr 2fr 2fr 2fr;
    grid-gap: 0 30px;
    max-width: 900px;}
/* .footer_info {display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; padding: 0 0;} */
.footer_menu {/*display: grid;*/  grid-template-columns: repeat(auto-fit, minmax(min(80px,100%), 1fr));  gap: 3px; width: 100%; text-align: left; margin: 0 0 0 0px; max-width: 1800px;
    justify-items: start;}/*footer按鈕最小寬度100px*/
.footer_menu a {letter-spacing: 1px; color: #888;margin: 0;	text-align: center;	padding: 0px; border:0; border-right: 0px #f7f7f7 solid;  border-left: 0px #f7f7f7 solid; background: none; font-size: 13px; transition: all 0.3s;}
.footer_logo img {display: none;}
.footer_info {grid-template-columns: 0px 1fr;grid-gap: 0px; padding-right: 220px;}
.footer_menu a:last-child {border-right: 0px #d6e1e1 solid;}
.footer_menu a:hover {background: none; color: #999;} 
.footer_info li p {line-height: 150%;}
.footer_info li p.tel:before,.footer_info li p.tel2:before {content:'';}
.copy {background:none; color:#444444; border:none; padding: 15px 0; text-align: left; margin: -30px 110px 0 auto; padding: 0 0 0px 0; letter-spacing: 0px;  font-size: 12px; width: fit-content; max-width: calc(100% - 750px); line-height: 190%;}
.copy a{color: #444444;transition:all 0.3s;}
.copy a:hover {color:#444444;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #fff;  color: #ffffff;}
.box_link {display: none;}
/* .footer_logo img {max-width: 100px; display:none;} */
.footer_logo {text-align: center; width: 100%;}
/* .footer_info ul {width: 98%; text-align: center;} */
/* .footer_info li {padding: 15px 0px;} */
/*.footer_info li p:before {display: block;}*/
/*.footer_info li p {font-size: 13px; color:#000; line-height: 170%; text-align: left; width: 100%; display: inline-block;margin-bottom: 10px;}*/
.footer_info li p a{color:#00;}
.footer_info li:nth-child(2) {margin-top: 15px; padding: 0 0; margin-bottom: -37px; background:none; width: 100%;}
.footer_info li:nth-child(2)::before {
    content: '';
    width: 100%;
    height: 0px;
    background: #cbcaca4f;
    position: absolute;
    left: 0;
}.footer_menu a:first-child {
    display: none;
}

.footer_info > :nth-child(2) > :first-child {
    display: none;
}
.footer .center { max-width: 90%;}
/*改字*/
.TEL:before, .TEL2:before, .PHONE:before, .FAX:before, .TAXID:before, .MAIL:before, .ADD:before, .ADD2:before {width: 78px; font-weight: 500;}
.list_before.info li {padding-left: 50px;}
.MAIL:before {content: "MAIL";}
.ADD:before {content: "ADD";}
.info_ADD2,.info_TEL2{display:none;}


/* .footer_info li:nth-child(1) { display: grid;display: none;} */
/* p.tel { grid-row: 1;}
p.add { grid-row: 2;}
p.tel2 { grid-row: 3;}
p.add2 { grid-row: 4;}
p.phone { grid-row: 5;}
p.mail { grid-row: 6;} */

/*其他編輯頁最下連結隱藏*/
.other_select_page .promotion_title {
    display: none;
}
@media screen and (max-width: 1200px)  {
       .footer_logo a img {
            max-width: 60%;
    }
    .copy{margin: -35px 3% 0 auto;}
}
@media screen and (max-width: 1000px)  {
    .footer_info{padding-right: 0;}
    .footer_info li:nth-child(1){width: 100%;grid: none;}
    .copy{width: 90%; max-width: 100%; padding: 10px 0; margin: 0 auto; text-align: center; line-height: 1.2;}
}
@media screen and (max-width: 768px){
.footer_info li:nth-child(2) {width: 100%; margin-left: 0px;}
}
 @media screen and (max-width: 600px) {
 .footer_info {padding: 0px ;}
}
/*●●●●●●●●●●●●●●●●●●●●●●●●   相簿管理(有分類)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
.albumSwiper.swiper {
   padding: 10px 0;
}
.module_i_album .title_i_box {
     DISPLAY: NONE;
}
.page {margin: 5px auto;}

.i_album_classList ul li a {
	letter-spacing: 3PX;
	margin-bottom: 1px;
	padding-top: 5px;
	padding-right: 28px;
	padding-bottom: 5px;
	padding-left: 28px;
}
.i_album_classList ul li a:hover {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;    
}
.module_i_album {
    padding: 20px 20px; padding-top: 10px;}
.module_i_album section {
    width: 100%;
    max-width: 100%;
}
.pageIndex  #content_main{overflow: unset;}
.i_album_list_box{margin: 0 auto; max-width: 1200px; width: 100%; padding: 0px;}
.module_i_album .title_i_box h6 {
    font-size: 35px;
    font-family: 'Fira Sans Extra Condensed', 'sans-serif', '微軟正黑體';
}
.i_album_classList ul li { margin: 0px;}
.i_album_list {grid-template-columns: repeat(3, 1fr);}
.pic-list {grid-gap: 0px;}
.module_i_album .title_i_box h4 {padding-top: 0px;}
.i_album_list li a p {  position: unset;    height: auto;}
.i_album_list{display: flex;flex-wrap: wrap; grid-gap: 0vw;}
.i_album_list .item:hover .show_name {color: #666;}
.i_album_list .show_name {text-align: center;font-weight: 500;}
.overlay {-webkit-transform: scale(1);transform: scale(1);}
.i_album_list .show_pic img{min-height: 45vw;object-fit: cover;}
.i_album_list li img{transition: all .5s;}
.i_album_list li:hover img{ filter: brightness(0.6);}


/*次分類*/
.album_class_page .main_part {max-width: 1000px;}
.subalbum-menu h2 {color: #555;text-align: center;display: block;}
.subalbum-menu h2 .block{display: none;}
.i_album_list{display: flex;flex-wrap: wrap;}
.i_album_list li {width:calc(100% / 2); padding: 0.5%;margin: 0;}
.i_album_list li p{text-align: center;margin-top: 0px;color: #555;letter-spacing: 2px;}
.i_album_list li div{aspect-ratio: 4 / 3;}
.i_album_list li img{object-fit: cover;transition: all .5s;}
.i_album_list li .item:hover .pic img {filter: grayscale(0);}
/*相片頁*/
.album_descrip {font-size: 14px;margin-bottom: 6px;padding: 1%;}
.pic-list .show_pic { aspect-ratio: auto;}
.album_info_page .main_part {max-width: 1050px;}
.pic-list{display: flex;flex-wrap: wrap;}
.pic-list .item {padding: 0;margin: 10px;width: 100%;padding: 1%;margin: 0;}
.pic-list .item h6{font-weight: 500;padding: 0px;}
/*.pic-list .show_pic img {min-height: 20vw;}*/
.album_fixed_title {background: transparent;font-size: 15px;margin-bottom: 5px;}
.other_album_choice li {background: #555;border-radius: 3px;font-size: 12px;}
.animated-arrow {
	background: transparent;
	color: #E64500;
	padding-bottom: 25px;	
}
.show-list { grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));grid-gap: 8px;}
.i_album_list li a p span{position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    font-family: 'Fira Sans Extra Condensed', 'sans-serif', '微軟正黑體';
    font-size: 20px;
    width: 100%;
    max-width: 90%;
    height: auto;
    line-height: 160%;
    text-align: center;
    opacity: 0;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
	  white-space: normal; /* 覆盖可能的 nowrap 设置 */
    word-wrap: break-word; /* 允许长单词换行 */
    word-break: break-word; /* 更积极的换行策略 */
    display: -webkit-box; /* 旧版Flexbox兼容 */
    -webkit-box-orient: vertical; /* 垂直方向 */
    -webkit-line-clamp: 2; /* 限制最多2行 */
    overflow: hidden; /* 隐藏超出部分 */
}

.i_album_list li:hover a p span { opacity:1;  transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);}
.i_album_list li:hover a p span .pic img { transform: translate(-50%,-50%) filter: brightness(0.4);}
.other_subalbum li a p {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    font-family: 'Fira Sans Extra Condensed','sans-serif','微軟正黑體';
    font-size: 24px;
    width: 100%;
    max-width: 90%;
    height: auto;
    line-height: 160%;
    text-align: center;
    opacity: 0;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
/*滑動特效*/
.other_subalbum li:hover a p { opacity:1;  transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);}
.other_subalbum li a p .pic img { transform: translate(-50%,-50%) filter: brightness(0.4);}


@media screen and (max-width: 768px){
	/*主分類*/
	.i_album_list .item {width: 50%;}
	.i_album_list .show_pic img{min-height: 35vw;}
	/*次分類*/
	/* .i_album_list li{width: 100%;} */
	.i_album_list li img{min-height: 35vw;}
	/*相片頁*/
	/*.pic-list .item {width: 50%;}*/
	.pic-list .show_pic img {min-height: 35vw;}
	.i_album_classList ul li a {padding: 5px 7px;letter-spacing: 3PX;}
	.i_album_list li a p span{font-size: 18px;  white-space: normal;
        -webkit-line-clamp: 2; /* 限制2行 */
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; /* 超出部分显示省略号 */
        line-height: 1.3; /* 调整行高以适应两行 */
        padding: 0 5px; /* 添加一些内边距 */}
}

@media screen and (max-width: 450px) { 
	/*相簿*/
	.i_album_list .show_pic img{min-height: 140px;}
	.i_album_list li img{min-height: 140px;}
	.pic-list .show_pic img {min-height: 140px;}
	.i_album_list li {width:calc(99% / 2); padding: 0.65%;margin: 0;}
	.show_content {padding: 0px ;}
	.module_i_album { padding: 10px 10px;}
	.i_album_list li a p span{font-size: 12px;}
		
}
	










/*●●●●●●●●●●●●●●●●●●●●●●●●   文章分類管理   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*文章管理/外層＝＝*/
.blog_search {display: none;}
.blog_page h4.blog_category_title  {display:none;}
h4.blog_category_title { font-size: 22px;  border-bottom: 1px #f4f4f4 solid;  padding: 0px ;}
h4.blog_category_title span{font-size: 24px;}

/*文章管理/外層＝＝*/
/*側邊*/
.blog_le, .blog_ri { padding: 0px;}
.blog_search input[type=search] { border-radius: 0;   background: #ffffff;}
.blog_le .accordion { border-radius: 0;  border: 0px #ccc solid;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: #333 !important;}
.submenu a:hover {    background: #A7998C;}
.blog_le .accordion li .link:last-child { border-bottom: 1px solid #f6f8f7;}
.blog_le .accordion li .link:first-child { border-top: 1px solid #f6f8f7;}
h5.blog_le_t {display: none;}
h5.blog_le_t em {display: none;}
blog_page article_a bodyDesktop h4.blog_category_title {padding: 15px 0;}
/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr 1fr ;}

.i_blog_ri p { display: none;}

/*功*/
.blog_subbox{grid-template-columns:1fr 1fr ;}
.blog_subbox:before{content:none;}
/*右*/
.module_i_news ul, .blog_subbox {  display: grid;  gap: 10px;}
.module_i_news li , .subbox_item {  width: 100%;padding-bottom: 20px;}
.module_i_news li a , .subbox_item a {  padding: 5px;}
.subbox_item a {grid-template-columns: auto;grid-gap: 0px;}
.subbox_item a:after {  background: rgb(255 255 255 / 70%);  border: 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: 65%;  height: 0;}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */
.blog_list_le {  overflow: hidden;}
.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%);}
	
	
.subbox_item:hover .blog_list_le img { transform: translate(-50%, -50%) scale(1.1);  transition: 0.5s;}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 0;
    opacity: 0;
    font-size: 15px;
    color: #ffffff;
    transition: all .6s;
    background: #d64d2a;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.blog_page .blog_list_ri h5 {   font-size: 16px;  padding: 0;   -webkit-line-clamp: 1;   margin: 10px 0px;}
.blog_page .blog_list_ri em { font-size: 12px; }
.blog_list_ri p { font-size: 14px; color: #444444;  line-height: 150%;  -webkit-line-clamp: 2;  letter-spacing: 1px;}


/*文章管理/內層＝＝*/
.blog_back a { padding: 7px 15px;}
.blog_back a.article_btn_back{background: #EA5F00;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next { color: #ffffff; }
.promotion_title span { border: none; padding: 0; margin: 0;}
.promotion_title em { width: 100%; border: none; padding: 0 0px 20px;  margin: 0; }
.promotion_title h2 {  width: 100%; border-bottom: 1px solid #e5e5e5;  padding: 0 0 15px;     font-weight: 600;}
.lastPage { background: #333333;}
.news_related_list { max-width: 1250px;}
.news_related {
    background: #f9f9f9;}
@media screen and (max-width: 1200px) {
.module_i_news ul{grid-template-columns:1fr 1fr 1fr;}
}

@media screen and (max-width: 1024px) {
.module_i_news ul{grid-template-columns:1fr 1fr;}
}

@media screen and (max-width: 980px) {
.blog_subbox{grid-template-columns:1fr 1fr;}
.pageIndex .module_i_news .title_i_box h4:after {  left: 32px;}
}

@media screen and (max-width: 768px) {
h4.blog_category_title{font-size: 24px;}
h4.blog_category_title span{font-size: 20px;}

.pageIndex .module_i_news .title_i_box h4 {  font-size: 28px; letter-spacing: 0px;}
.module_i_news {  padding: 60px 10% 50px 10%;}
}


@media screen and (max-width: 600px) {
.module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
.i_blog_le, .blog_list_le {  padding-bottom: 75%;}
h4.blog_category_title{font-size: 20px;}
h4.blog_category_title span{font-size: 18px;}

.module_i_news .title_i_box { margin-bottom: auto; width: 100%; -webkit-writing-mode: inherit;}
.pageIndex .module_i_news ul {width: 100%;}
.pageIndex .module_i_news .title_i_box h4:after { position: relative; top: -10px; left: 0; display: inline-block; width: 100%;}

}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/

.link a {  width: 100%;  display: block; }





/*●●●●●●●●●●●●●●●●●●●●●●●●   促銷方案&小撇步文章分享   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*首頁*/
.news_part .title_i_box h4{color: #555;}
.news_list ul li a:hover {background: #eee;}
/*詳細頁*/
.show_content .edit{line-height: 180%;font-weight: 300;}
.promotion_title {position: relative;border-bottom: 1px solid #eee;padding-bottom: 50px;}
.promotion_title em {display: block;border: none;font-size: 14px;font-weight: 300;padding: 0;}
.promotion_title span {border: none;color: #555;padding: 0;margin: 0;
position: absolute;right: 0;bottom: 10px;font-weight: 300;letter-spacing: 2px;}
.promotion_title span:before{content: "發布時間";display: block;font-weight: 400;}
.promotion_title h2{display: block;font-weight: 400;font-size: 24px;}
.other_promotion {margin-top: 200px;}
.other_promotion:before{content: "Read More";display: block;color: #aaa;padding:10px 15px;}
.other_promotion li{border-bottom: 1px solid #ddd;width: 100%;margin-left: 0;}
.other_promotion li:last-child{border-bottom: none;}
.other_promotion li a {display: flex;width: 100%;margin: 0;font-weight: 300;padding: 25px 15px;border: none;}
.other_promotion li a:before{display: none;}
.other_promotion li a:after{display: none;}
.other_promotion li a:hover {background: transparent;}
.other_promotion .pmtTime {width: 150px;}
.other_promotion .pmtTime span{float: left;letter-spacing: 3px;}
.other_promotion .pmtTitle{width: calc(100% - 160px);}
.other_promotion .pmtTitle span{display: none;}
.other_promotion .pmtTitle h3 {font-size: 14px;height: auto;min-height: auto;margin: 0;padding-left: 30px;
letter-spacing: 4px;font-weight: 300;color: #000;position: relative;}
.other_promotion .pmtTitle h3:before{content: "〉";font-size: 12px;color: #fff;transition: all .5s;
position: absolute;left: 10px;top: 50%;transform: translateY(-50%);}
.other_promotion li a:hover h3:before{color: #888;}

@media screen and (max-width: 768px){
	.promotion_title h2 {font-size: 18px;}
}
@media screen and (max-width: 450px){
	.other_promotion li a {flex-wrap: wrap;}
	.other_promotion .pmtTitle {width: 100%;}
	.other_promotion .pmtTitle h3 {padding-left: 0;}
	.other_promotion .pmtTitle h3:before{display: none;}
}
/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/









/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
@media screen and (max-width: 1300px){
	/*固定設定= = = = = = = = */
	.pic-list{column-count: 2;}
	/*文章*/
	.other_album_choice li{width: 30%;}
}
@media screen and (max-width: 1200px){
	.nav-menu>li>a {padding: 10px 20px;}
	/*相簿*/
	.i_album_list .show_name{font-size: 18px;}
	
}

@media screen and (max-width: 768px) {
	/*預設= = = = = = = = */
	/* 開啟手機板下方按鈕所需設定= = = = = = = = */
.subbox_item{width: 100%;}
	
}

@media screen and (max-width: 600px) { 
	
     /*相簿*/
	.pic-list{column-count: 1;}
	.other_album_choice li{width: 46%;margin: 5px auto;}
	/*文章*/
	.subbox_item{width: 100%;}

}
/*聯絡我們MAP區改滿版編輯區*/
.blank_letter {
    padding-top: 0;
    font-size: 18px;
    padding: 10px 0;
    color: #333;
    background-position: left bottom;
    background-repeat: no-repeat;
    border-bottom: 1px #666 solid;
}
.contact_page .main_part {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 0px;
}


.list_before.info li {
    padding-left: 32px;
    color:#252525;
}

.list_before {
    margin-top: 20px;
    margin-bottom: 20px;}
.contact_form li .form__label {
    color: #252525;
    width: 130px;
    margin-left: -140px;
}
.contact_le_map a {
    background: #fff;
    color: #fff;
}
.contact_form li.last cite {
    background: #4d5054;
    color: #fff;
    width: 220px;
}

.contact_content .information_left {
    width: 100%;
    order: 1;
}
.information_left, .information_right {
     padding: 0px;
}
.contact_content .information_right {
    width: 100%;
    padding-left: 0px;
}

.contact_le_nomap {
    transition: all .5s;
}
.contact_le_nomap:hover {
    filter: grayscale(0);
    transition: all .5s;
}


.contact_form li input.noborder {
    border: none;
    background: #0000000a;
    color: #54524D;
    transition: all 0.3s;
}
.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #54524D3d;
    padding: 10px 0;
    padding-left: 130px;
}

/* .contact_form li:nth-child(9) .form__label{
    width: 130px;
    margin-left: -100px;
}
.contact_form li:nth-child(9){
} */
.contact_form li textarea.noborder {
    background: transparent;
    border: 1px #54524D solid;
    color: #54524D;
    transition: all 0.3s;
}
.contact_content form {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.form__insert input{
    margin: 0 10px;
    color: #54524D;
}
.contact_form li.last blockquote {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #54524D solid;
    width: 150px;
}

.contact_content {
	border: 10px solid #ececed;
	padding: 20px;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
	margin-bottom: 50px;
}
.contact_le_map {display:none;}
.contact_form li .form__insert {width: 100%;}
.contact_form li {width: 100%; padding-left: 0px; padding: 0 0px 10px 0px;}
.contact_form li .form__label {width: 100%; margin-left: 0px;    text-align: left;}
.contact_content .information_right {padding: 0px;}
@media screen and (max-width: 768px) {
    .contact_form li.last cite {
        width: 160px;
    }
   .contact_content .information_left {
    margin-bottom: 0px;} 
	.fix_ri{display:none;}
}
@media screen and (max-width: 600px) {
.form__insert input{
    margin:  0px;}

}

}
@media screen and (max-width: 320px) {

.contact_form li.last blockquote { width: 125px;}
.contact_form li.last cite {width: 125px;    }
}

.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}
.lastPage { font-size: 13px;}

.blog_box_edit * {
    line-height: 180%;
}

#bottom_menu li a em {display: none;}
.stellarnav .menu-toggle:after {font-size: 10px;}
.add2,.tel2{display:none;}
.footer_info li p.add:before {
    content: '地址 |';
}
.footer_info li p.tel:before {
    content: '市話 |';
}
.footer_info li p.phone:before {
    content: '手機 |';
}
.footer_info li p.mail:before {
    content: '信箱 |';
}

.i_album_classList ul li.active a {
    background: #fff;
}