@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,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 Serif TC",  "Inter", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix{   display: none;}
.main_part{ margin: 0px auto 0px;  max-width: 1500px;}

@media screen and (max-width:768px) {
    .main_part { padding: 10px 10px 10px ;}
}




/* 新版1.0要有這個 才不會跑版 */
.bannerindex {
    padding-bottom: 0;
    margin: auto;
    height: auto;

}
.bannerindex .swiper-banner {
   height: auto;
   position: relative;
}




/* 開場動畫 */
.bannerindex::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(7px);
    z-index: 1000000000000010000000;
    animation: action-bg 4.3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
}

.bannerindex::after{
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/yutangid/open-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 10%;
    height: 0;
    padding-bottom: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100000000000001000000000;
    transform: translate(-50%,-50%) ;
    pointer-events: none;
    animation: action-logo 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}


.swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards ;
}

@keyframes action-bg {
    0%{
        backdrop-filter: grayscale(1)  blur(7px);
    }
    100%{
        backdrop-filter: grayscale(0)  blur(0px);
    }
}


@keyframes action-banner {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
    
}

@keyframes action-logo {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.pageIndex .bannerindex .swiper-wrapper .swiper-slide:nth-of-type(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/yutangid/bantext1.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
    opacity: 0;

}

.pageIndex .bannerindex .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/yutangid/bantext2.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000000000000;
    opacity: 0;

}

.pageIndex .bannerindex .swiper-wrapper .swiper-slide.swiper-slide-active::after{
    animation:font-in-text 4.2s cubic-bezier(.25, .8, .25, 1) forwards;
}

@keyframes font-in-text {
    0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.pageIndex .bannerindex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/yutangid/banline.png);
    width: 0%; 
    height: 100%; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: 100000000000000;
    overflow: hidden;
}

.pageIndex .bannerindex .swiper-wrapper .swiper-slide.swiper-slide-active::before {
    animation: line-grow 4s cubic-bezier(.25, .8, .25, 1) forwards;
    animation-delay: 1.2s;
}

@keyframes line-grow {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}


.pageIndex .bannerindex .swiper-wrapper .swiper-slide img {
    transform: none !important;
}


@media screen and (max-width:1024px) {
    .main_header_area{ background: #262626 ;}
}

@media screen and (max-width: 768px) {

.bannerindex {
    padding-bottom: 0;
    margin: auto;
    height: auto;
}

.bannerindex .swiper-banner {
   height: auto;
    position: static;}
} 




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* 選單攔 */
.main_header_area .container{
    max-width: 100%;
    margin: auto;
}
.bannerindex{
    position: static;
    height: auto;
}
.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
	background: #f0f0f000;
}
.header_area .main_header_area {
    background: transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    position: relative;
}
.header_area.sticky .main_header_area {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
	grid-gap: 0px;
}

/* 選單 */

.me_tp_features {
    display: none;
}
.stellarnav {
    padding: 0px 10%;
    background-color: #fff;
    height: max-content;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .stellarnav{
    background-color: transparent;
}
.sticky .stellarnav {
    background: #827c78d4;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    height: auto;
    align-items: center;
    display: grid;
}

.sticky .stellarnav ul{    justify-content: space-around;}
.stellarnav > ul > li > a b:nth-child(1) {font-family:   "Noto Serif TC",  "Inter", sans-serif;}
.stellarnav > ul > li > a b:nth-child(2) {font-family: "Inter", sans-serif;}

.stellarnav::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #494949;
    position: absolute;
    bottom: 0;
    left:   0;
}
.pageIndex .stellarnav::before{
    background: #ffffff4d;
    width: 0%;
    animation: nav-line 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.7s;
}
.sticky .stellarnav::before{
    background: #ffffff00;
}

.stellarnav > ul > li > a {
    padding: 0;
    color: #494949;
    font-size: 15px;
    letter-spacing: 3px;
    text-indent: 3px;
    font-family: "Montserrat", serif;
}
.pageIndex .stellarnav > ul > li > a {
    color: #fff;
}
.sticky .stellarnav > ul > li > a{
    color: #fff;
}
.stellarnav li.has-sub > a:after {
    display: none;
}



.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stellarnav > ul > li > a b:nth-of-type(2){
    font-weight: 500;
}
.header_area.sticky{    background: rgb(255 255 255 / 0%);}
.header_area{padding:0px;}




@keyframes nav-line {
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
    
}




/* 動畫 */
.stellarnav > ul > li{
    padding: 0;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .stellarnav > ul > li{
    padding: 10px 0;
    opacity: 0;
}
.sticky .stellarnav > ul > li{
    padding: 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




.pageIndex .stellarnav > ul > li:nth-of-type(1){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.8s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(2){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(3){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.2s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(4){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.4s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(5){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.6s;
}
.pageIndex .stellarnav > ul > li:nth-of-type(6){
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.7s;
}




@keyframes nav-down {
    0%{
        opacity: 0;
        transform: translate(0,-20px);
    }
    100%{
        opacity: 1;
        transform: translate(0,0);
    }
}





/* LOGO */

.nav-header {
    position: relative;
    padding-top: 10px;
    max-width: 300px;
}
.nav-brand {
    position: relative;
    width: 210px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .nav-brand {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation: nav-logo-3 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 3s;
}

.sticky .nav-brand{
    width: 195px;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    margin-top: -5px;
}

.nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(0.3);
}
.pageIndex .nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}
.sticky .nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}
.nav-header::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .nav-header::before {
    content: "";
    width: 0%;
    animation: nav-logo 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2.6s;
}




.nav-header::after {
    content: "";
    display: block;
    background-color: #ffffff00;
    border:  1px solid;
    border-color: transparent #49494900 #49494900 transparent;
    position: absolute;
    top: 0%;
    right:  0%;
    border-radius: 0 0 20px 0;
    width: 100.1%;
    height: 100.1%;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .nav-header::after {
    background-color: transparent;
    border-color: transparent;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.nav-header:hover:before{
    background-color: #ffffff50;
    transition: all 0.5s;
}

.sticky .nav-header::before {
    background: #827c78d4;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.sticky .nav-header:hover:before {
    background: #A89A8A;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

/*下拉*/

.stellarnav > ul > li > ul {
    text-align: center;
    background: #827c78d4;
    opacity: 0;
    top: 45px;
    pointer-events: none;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


/*下拉*/
.stellarnav > ul > li > ul {
    text-align: center;
    background: #00000061;
    opacity: 0;
    top: 45px;
    pointer-events: none;
    transform: scale(1,0);
    transform-origin: 0 0;
    transition:all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.pageIndex .stellarnav > ul > li > ul {
    top: 65px;
}
.stellarnav > ul > li:hover > ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1,1);
    transition:all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.sticky .stellarnav > ul > li > ul{
    top: 45px;
    transition:all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@media screen and (min-width: 768px) {
    .stellarnav > ul > li > ul > li > ul{
        display: block !important;
    }
}
.stellarnav > ul > li > ul > li > ul{
    text-align: center;
    background: #00000061;
    opacity: 0;
    pointer-events: none;
    transform: scale(0,1);
    transform-origin: 0 0;
    transition:all 0.3s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav > ul > li > ul > li:hover > ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
    transition:all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.stellarnav li a{    color: #fff;}
.stellarnav li li{    border: 0}




@keyframes nav-logo{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}

@keyframes nav-logo-2{
    0%{
        width: 0;
        height: 0;

    }
    50%{
        width: 1px;
        height: 100.1%;
    }
    100%{
        width: 100.1%;
        height: 100.1%;
    }
}

@keyframes nav-logo-3{
    0%{
        opacity: 0;
        left: -100px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}



@media screen and (max-width: 768px) {

    .stellarnav .menu-toggle span.bars span{ background: #fff;}
    .stellarnav .menu-toggle:after{ color: #fff;}
    .sticky .stellarnav { background: #a89a8ac9;}
.nav-header{ max-width: 160px; }
.nav-brand{width: 150px;}
.sticky .nav-brand{ width: 140px;}
.stellarnav{ padding: 0px 1% ;}
.stellarnav.mobile {
        position: absolute;
        left: auto;
        top: 0;
        right: 0;
        width: auto;
        display: inline-block;
    }
.stellarnav .menu-toggle {
        padding: 10px 8px;
    }
.stellarnav.mobile ul{    background: #fff;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{ background: #F6F5F4 ; color: #A89A8A; }
.stellarnav a.dd-toggle .icon-plus:before,.stellarnav a.dd-toggle .icon-plus:after{border-bottom: solid 3px #E4E4E4; }
.stellarnav.mobile > ul > li > a.dd-toggle{ top: 12px;}
.stellarnav .icon-close:after,.stellarnav .icon-close:before{ border-bottom: solid 3px #A89A8A;}
.stellarnav.mobile li.open{ background: #e5ded6db;}
.pageIndex .stellarnav > ul > li > a{ color: #000;}
.pageIndex .stellarnav > ul > li:nth-of-type(1){animation: none;}
.pageIndex .stellarnav > ul > li{opacity: 1;}

}

/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*footer*********************************************************************/

.footer_menu a:nth-of-type(1) {
  display: none;
}

.footer .center{ max-width: 1400px; padding: 0px 60px ;}

.footer_info li:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 0px 20px 0px;
}

.footer_info li:nth-child(2) {
  padding: 0px;
  padding-top: 30px;
}

.footer_info li p,.footer_info li p a{ color: #181818;}

.footer_info li p.phone{ order: 1;}
.footer_info li p.tel{ order: 2;}
.footer_info li p.fax{ order: 3;}
.footer_info li p.line{ order: 4;}
.footer_info li p.mail{ order: 5;}
.footer_info li p.add{ order: 6;}


.footer {
background: #F6F5F4;
}

.footer_info {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-right: 0px;
}

.footer_menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.footer_menu a {
  margin: 0;
  text-align: justify;
  transition: all 0.3s;
  border: none;
    padding: 10px 15px;
background: #C8B8A6;
font-size: 13px;
color: #fff;
}

.footer_menu a:hover {
    background: #A89A8A;
}

.box_link {
  display: none;
}

.copy {
  background: transparent;
  color: #bcbcbc;
  border: none;
  font-size: 12px;
  padding: 15px 0 25px;
}

.copy a {
  color: #bcbcbc;
  transition: all 0.3s;
}

.copy a:hover {
  color: #C8B8A6;
}

.footer_logo img {
  width: 300px;
}

@media screen and (max-width: 1024px) {
  .footer_info li:nth-child(1) {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .footer_info {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .footer_logo img {
    width: 220px;
  }
  .footer_menu {
    justify-content: center;
  }
}

@media screen and (max-width: 1480px) {
  .footer_menu {
    grid-template-columns: repeat(auto-fit, minmax(min(60px, 100%), 1fr));
  }
}

@media screen and (max-width: 1024px) {
  .footer_info li:nth-child(1) {
    padding-left: 73px;
  }
  .footer_info li:nth-child(2) {
    padding: 35px 0px 0px 57px;
  }
  .footer_info{ padding: 0 0px;  }

}

@media screen and (max-width: 768px) {
    .footer .center{ padding: 0px 40px;}
  .footer_info li:nth-child(1) {
    width: 100%;
  }
  .footer_info li:nth-child(2) {
    width: 100%;
    text-align: center;
  }
  .footer_menu {
    margin: 0;
  }
  .box_link {
    position: relative;
    right: 0;
    top: 0;
    text-align: left;
    padding: 15px 0;
  }
  .copy {
    padding: 8px 3% 0 3%;
    text-align: center;
    border-top: 1px solid #d8d8d8;
    font-size: 12px;
  }
  .footer {
    padding: 40px 0 30px;
  }
  .footer_info {
    flex-direction: column;
    grid-gap:4px
  }
  .footer_info ul {
    text-align: center;
    margin: 10px 0;
    border: none
  }
  .footer_logo {
    width: 220px;
    margin: 10px auto;
    justify-content: center;
  }
  .copy {
    border-top: 1px solid #d8d8d833;
  }
  .footer_info li:nth-child(1) {
    border-left: none;
    padding: 0px 0px 10px;
  }
  .footer_info li:nth-child(2) {
    padding: 10px 0px 10px;
  }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2025.12.18  */
.product_page .main_part { max-width:1500px;}

.product_page .show_content,
.product_info_page .show_content { display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; width: 100%;}
ul.page { width: 100%;}

.ProdFilter_Item_Show { width: 100%;}
.Prods_Menulists { width: 100%; padding: 0;}
.Prods_Wrap { width: calc(100% - 270px);}

/* 篩選器-左手邊 / 產品分類-上面
.ProdFilter_ { order: 2;}
.Prods_Menulists { order: 1;}
.Prods_Wrap { order: 3;}
.ProdFilter_ { width: 250px; letter-spacing: 1px;}
.ProdFilter_ li { width: 100%;}
.ProdFilter_ li > a { background: #f3f3f3; border: none; border-bottom: 3px #ddd solid;}
.ProdFilter_ dl { position: static; width: 100%; display: block;}
*/

/* 產品分類-左手邊 / 篩選器-上面 */

.ProdFilter_ { order: 1; margin-bottom: 25px;}
.Prods_Menulists { order: 2;}
.Prods_Wrap { order: 3;}
.Prods_Menulists { width: 250px; letter-spacing: 1px;}
.Prods_Menulists ul {}
.Prods_Menulists > ul > li { width: 100%; flex-wrap: wrap;}
.Prods_Menulists ul ul { position: static; border: none;}
.Prods_Menulists ul li ul li {}
.Prods_Menulists li.has-sub.open > a {}

.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: 1024px) {
.product_main { display: block; width: 100%;}    
.sidebarBtn { display: block; width: 100%;}
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
/* 篩選器-左手邊 / 產品分類-上面
.Prods_Wrap { width: 100%;}
.ProdFilter_ { width: 100%;}
.ProdFilter_Item_Show { width: calc(100% - 110px);}
.ProdFilter_ { order: 1;}
.Prods_Menulists { order: 2;}
.ProdFilter_ li > a span { color: #333;}
*/

.Prods_Wrap { width: 100%; margin-top: 20px;}
.ProdFilter_ { width: 100%;}
.Prods_Menulists { opacity: 0; display: none;}

}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 2025.12.26 中間放大*/
.BannerHome02 .swiper-slide-active img { transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide img { transition: transform 5s ease-out; will-change: transform; transform: scale(1);}
.BannerHome02 .swiperBan02 .swiper-slide-active img { transform: scale(1.06);}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}
.banner.banDesign { background-color:#333;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@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) { 
}




