@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');

body{
	overflow-x:hidden;
	font-family: 'Oxanium', "Noto Sans TC","微軟正黑體","arial","sans-serif";
	font-weight: 400;
  background:  #fff;
}

body{overflow-y: scroll; overflow-x:hidden; max-height: 100%;}
body::-webkit-scrollbar {width: 4px;}
body::-webkit-scrollbar-track {box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);}
body::-webkit-scrollbar-thumb {background-color: #555555; border: 1px solid #555555;}

/*
關於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;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/

/* 開場動畫 */
.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/oscarfilm/logo-01.png);
    width: 526px;
    height: 245px;
    /* background-position: -526px 0 ; */
    background-position: 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    pointer-events: none;
    animation: banner-logo 2s forwards;
}
.bannerindex::after{
    content: "";
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 100;
    animation: banner-bg 2s forwards;

}


@media screen and (max-width: 768px) {
    .bannerindex::before {
        animation: banner-logo-768 2s forwards;

    }
}

@media screen and (max-width: 500px) {
    .bannerindex::before {
        top: 35%;
        animation: banner-logo-500 2s forwards;
    }
    .swiper-banner::before{
        animation: banner-line-white-500 2s forwards;
    }
    
    .swiper-banner::after{
        animation: banner-line-brown-500 2ms forwards;
    }
    
}


@keyframes banner-logo{
    0%{
        opacity: 0;
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -526px 0 ;
    }
    25%{
        opacity: 1;
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 526px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 526px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}
@keyframes banner-bg{
    0%{

    }
    50%{
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes banner-img {
    0%{
        transform: scale(1.4);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes banner-line-white{
    0%{
        width: 420px;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-logo-768{
    0%{
        opacity: 0;
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -410px 0 ;
    }
    25%{
        opacity: 1;
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 410px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 410px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-logo-500{
    0%{
        opacity: 0;
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -300px 0 ;
    }
    25%{
        opacity: 1;
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 300px; 
        height: 245px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 300px; 
        height: 245px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-line-white-500{
    0%{
        width: 250px;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown-500{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


/*大圖閃光*/
.swiper-banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, transparent 10%, rgba(17, 17, 17, 0.025) 40%, #bfbfbf0e 55%, transparent 60%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 1000000;
  animation: bglight 3s infinite cubic-bezier(0.18, 0.45, 0.24, 0.91);
  animation-delay: 3.0s;
}

@keyframes bglight {
  0% {
      transform: translate(-100%, 0%);
  }
  100% {
      transform: translate(100%, 0%);
  }
}


/*bgblur*/
.swiper-banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 999999;
  animation: bgblur 0.8s linear forwards;
  pointer-events: none;

}

@keyframes bgblur {
0% {
  backdrop-filter:blur(7px);
  background: #000000;
}
100% {
  backdrop-filter: blur(0px);
  background: none;
}
}

/*第1張大圖動畫*/
.swiper-wrapper .swiper-slide:nth-child(1)::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/oscarfilm/bg-01.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}

.swiper-wrapper .swiper-slide:nth-child(2)::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/oscarfilm/bg-02.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}

.swiper-wrapper .swiper-slide.swiper-slide-active:nth-child(1):before {
    animation: left-in 1.5s forwards cubic-bezier(0.68, 0.1, 0.265, 1);
}
.swiper-wrapper .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: left-in 1.5s forwards cubic-bezier(0.68, 0.1, 0.265, 1);
}

@keyframes left-in {
    0% {
        transform: translate(-100%, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}


@media screen and (max-width: 768px) {
    .swiper-banner .swiper-slide img {
        position: relative;
        max-width: none;
        width: 200%;
        left: -20%;
        height: auto;
    }

    .swiper-wrapper .swiper-slide:nth-child(1)::before {
        background-image: url(https://pic03.eapple.com.tw/oscarfilm/bg-03.png);
        top: 195px;
        left: 30px;
        width: 80%;
        max-width: 80%;
    }

    .swiper-wrapper .swiper-slide:nth-child(2)::before {
        background-image: url(https://pic03.eapple.com.tw/oscarfilm/bg-04.png);
        top: 195px;
        left: 0px;
        width: 80%;
        max-width: 80%;
    }

}

@media screen and (max-width: 650px) {
    .swiper-wrapper .swiper-slide:nth-child(1)::before {
        top: 130px;
        width: 90%;
        max-width: 90%;
    }
    .swiper-wrapper .swiper-slide:nth-child(2)::before {
        top: 27px;
        width: 90%;
        max-width: 90%;
        padding-bottom: 80%;
    }
}

@media screen and (max-width: 550px) {
    .swiper-wrapper .swiper-slide:nth-child(1)::before {
        top: 160px;
    }
}

@media screen and (max-width: 500px) {
    .swiper-banner .swiper-slide img {
        width: 200%;
        left: -40%;
        height: auto;
    }

    .swiper-wrapper .swiper-slide:nth-child(1)::before {
        top: 110px;
        width: 120%;
        max-width: 120%;
        padding-bottom: 80%;
    }

    .swiper-wrapper .swiper-slide:nth-child(2)::before {
        top: 30px;
        width: 120%;
        max-width: 120%;
    }
}



/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*點點樣式*/
.swiper-pagination-bullets.swiper-pagination-horizontal {bottom: var(--swiper-pagination-bottom, 55px);}
.swiper-pagination-bullet {width: 40px; height: 5px; border-radius: 0px; background: #ffffff;}
.swiper-pagination-bullet-active {background: #A9D0F5;}

/*隱藏大圖輪播點點按鈕*/
.swiper-pagination-clickable .swiper-pagination-bullet {
	display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO*/
.nav-header {display: block; width: 100%; text-align: left; max-width: 100px;}
.pageIndex .nav-brand {width: 100%; display: block; transition:all 0.3s; opacity: 0; animation: headerslowly 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards; animation-delay: 2.0s;}
.nav-brand {width: 100%; display: block; transition:all 0.3s; animation: headerslowly 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;}
.nav-brand img {width: 100%; transition: 0.3s ease;}
.pageIndex .nav-brand img {max-width: 140px; padding-top: 0px; transition: 0.3s ease; filter: brightness(15);}
/*.pageIndex .nav-brand:after {content: ''; background: url(https://pic03.eapple.com.tw/trianglelife/menulogo-W.png) no-repeat;background-size:contain; width: 100%; height: 65px; transition: 0.3s ease; position: absolute;}
.pageIndex .header_area.sticky .nav-brand:after {content: ''; background: url(https://pic03.eapple.com.tw/trianglelife/menulogo.png) no-repeat;background-size:contain; width: 100%; height: 50px; max-width: 200px; transition: 0.3s ease; position: absolute;}*/
/*.nav-brand:after {content: ''; background: url(https://pic03.eapple.com.tw/trianglelife/menulogo.png) no-repeat;background-size:contain; width: 100%; height: 50px; max-width: 200px; transition: 0.3s ease; position: absolute;}*/
.pageIndex .header_area.sticky .nav-brand img {max-width: 100px; transition: 0.3s ease; filter: none;}
.stellarnav {margin-top: 0px; transition: 0.3s ease;}
.pageIndex .header_area.sticky .stellarnav {margin-top: 0px; transition: 0.3s ease;}
.header_area {padding: 0px; background: none;}

@media screen and (max-width: 1024px) {
.pageIndex .header_area.sticky .nav-brand {margin-top: 7px;}
.pageIndex .header_area.sticky .stellarnav {margin-top: 5px;}

}
@media screen and (max-width: 768px) {
.pageIndex .header_area.sticky .stellarnav {margin-top: 0px;}
}


@keyframes headerslowly {
0% {
  opacity: 0;
  left: -100px;
}
100% {
  opacity: 1;
  left: 0;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*主選單*/
.pageIndex .header_area.sticky .main_header_area {
  background: rgb(255 255 255 / 90%);
  height: 74px;
  opacity: 1;
  border-bottom: 0px solid #ececec;
  transition: 0.6s ease;
  border-bottom: 0px solid #ececec; transition: 0.6s ease;}
.pageIndex .main_header_area {background: rgb(0 0 0 / 90%); height: 0px; opacity:1; border-bottom: 0px solid #ececec; transition: 0.6s ease;}
.main_header_area{background: #fff; height: 74px; /*border-bottom: 1px solid #ececec;*/ transition: 0.6s ease;}
.navigation {padding: 16px 0 0px 0px; grid-template-columns: 100px 1fr;}
.pageIndex .header_area.sticky .navigation {padding: 15px 0 0px 0px; transition: 0.6s ease;}

/*選單最大寬度設定*/
.main_header_area .container {max-width:95%; padding-left: 30px;}

/*第一層*/
.pageIndex .stellarnav {width: 100%; transition: 0.3s ease; opacity: 0; animation: headerslowly 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards; animation-delay: 2.0s;}
.stellarnav {animation: headerslowly 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;}
.pageIndex .stellarnav > ul > li > a > b {color: #fff; transition:all 0.3s; text-shadow: 1px 1px 10px #4d4d4d;animation-delay:unset; }
.pageIndex .stellarnav > ul > li > a > b {font-weight:400;font-size: 13px; color: #ffffff; transition:all 0.3s; padding: 0px 0px 0px 0px; text-shadow: none; letter-spacing: 0px; animation-delay:unset;}
.stellarnav > ul > li > a > b {font-weight:400;font-size: 13px; color: #212529; transition:all 0.3s; padding: 0px 0px 0px 0px; text-shadow: none; letter-spacing: 0px; animation-delay:unset;}
.pageIndex .header_area.sticky .stellarnav > ul > li > a > b {color: #212529; text-shadow: none; transition:all 0.3s;}
.pageIndex .header_area.sticky .stellarnav > ul > li > a > b:hover {color: #A9D0F5; text-shadow: none; transition:all 0.3s;}
.stellarnav > ul > li > a b:hover {color: #A9D0F5; transition:all 0.3s;}
.stellarnav li.has-sub > a:after {display:none;}
.stellarnav li.has-sub > a b{padding: 0px 0px 0 0px;}
.stellarnav > ul > li.has-sub > a {padding-right: 0px; padding-left: 0px;}
.pageIndex .header_area .stellarnav > ul > li > a{color: #fff;}
.pageIndex .header_area.sticky .stellarnav > ul > li > a{color: #212529;}
.stellarnav > ul > li > a {width: 140px;}

/*第二層*/
.stellarnav > li {text-align: center;}
.stellarnav li a {color: #212529;}
.stellarnav li li > a , .stellarnav li li.has-sub > a {padding: 12px 10px; letter-spacing:1px; transition: all 0.3s; border-left:1px solid transparent; font-size: 13px; font-weight: 400; letter-spacing: 0px; animation-delay:unset;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #ffffff; padding-left:12px;border-color:#007bff; background: #007bff;}
.stellarnav>ul {padding-top: 0px; transition: 0.3s ease;}
.pageIndex .header_area.sticky .stellarnav>ul {padding-top: 0px; transition: 0.3s ease;}
.stellarnav ul ul {margin-top: 0px; width: 150px; background: none;}
.stellarnav li li {width: 100%; border: 0px; border-bottom:1px solid #007bff; background: #a9d0f5a6;}
.stellarnav ul ul ul {right: 100%; top: -1px;}
.stellarnav > ul > li.drop-left > ul {right: unset;}
.stellarnav li.drop-left ul ul {top: 0px; right: 150px;}

/*SubMenu*/
.shop_search_btn {background: #A9D0F5; border-radius: 0;}
.tp_links {display: none;}
.tp_links a{transition:all 0.3s;}
.tp_links a:hover {color: #A9D0F5;}
.me_tp_features {display: block; margin: 25px 0 0 0; height: 30px; text-shadow: 1px 1px 10px #444000; padding-right: 12px; display: none;}
.me_tp_features a {font-size: 15px;}
.pageIndex .me_tp_features a.tp_btn_cart , .pageIndex .me_tp_features a.tp_btn_notice {color: #fff; text-shadow: 1px 1px 10px #444000;}
.pageIndex .header_area.sticky .me_tp_features a.tp_btn_cart , .pageIndex .header_area.sticky .me_tp_features a.tp_btn_notice {color: #A9D0F5;  text-shadow: none; }
.me_tp_features a.tp_btn_cart , .me_tp_features a.tp_btn_notice {color: #A9D0F5;  text-shadow: none; }
.box_search input[type=text] {border-radius: 0; border: solid 0px #ccc;}
.box_search {margin-right: 5px;}
.me_tp_features a.tp_btn_cart b {background: #A9D0F5; color: #fff; padding: 0px 4px; margin-left: 2px; border-radius: 100px; font-size: 14px;}
.me_tp_features a.tp_btn_cart b::before , .me_tp_features a.tp_btn_cart b::after {display: none;}

/*隱藏文章下拉選單*/
@media screen and (min-width: 768px) {
.stellarnav > ul > li.drop-left:nth-child(7) > ul {display: none !important;}
}
.stellarnav > ul > li.drop-left > ul {display: none !important;}
.stellarnav > ul > li.drop-left:nth-child(7) a.dd-toggle .icon-plus {display: none !important;}

/*主選單按鈕下底線*/
/*.stellarnav > ul > li {position: relative;}
.stellarnav > ul > li:not(.tp_links) > a:after { 
  width: 0px;
  position: absolute;
  height: 1px;
  content: "";
  background: #b5b6b7;
  left: 50%;
  bottom: 0px;
  transform: translate(-50% , 0);
  transition: ease 0.3s;}
.stellarnav > ul > li > a:after {
    width: 0px;
    position: absolute;
    height: 1px;
    content: "";
    background: #b5b6b7;
    left: 50%;
    bottom: 0px;
    transform: translate(-50% , 0);
    transition: ease 0.3s;}
.stellarnav > ul > li:hover > a:after {width: 60%; transition: ease 0.3s; background:#b5b6b7;}*/


@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;}*/
}

@media screen and (max-width: 1440px) {
.pageIndex .header_area.sticky .main_header_area {height: 114px;}
.main_header_area {height: 114px;}
.header_area.sticky .main_header_area {height: 114px;}
.stellarnav > ul > li > a {width: 120px;}
}

@media screen and (max-width: 1350px) {
  /*.main_header_area .container {max-width: 100%;}
  .stellarnav li {width: 110px;}*/
}
@media screen and (max-width: 1180px) {
  .stellarnav {width: 100%;}
  .stellarnav li.has-sub > a {padding: 0px 0px 0px 0px;}
  .stellarnav > ul > li > a {width: 100px;}
  .stellarnav > ul > li > a {margin: 0 0px;}
}
@media screen and (max-width: 1024px) {
  .pageIndex .stellarnav {width: 100%; margin-top: 7px;}
  .stellarnav {margin-top: 0px;}
  .stellarnav>ul {text-align: center; margin-top: 0px; margin-top: 0px; padding-top: 0px;}
  .main_header_area {height: 150px;}
  .header_area.sticky .stellarnav>ul {padding-top: 0px;}
  .header_area.sticky .main_header_area {height: 150px;}
  .nav-header {text-align: center;}
  .me_tp_features {margin: 0px 0 0 0; margin-top: 57px;}

  .stellarnav li {text-align: center;}
  
  .nav-brand {margin-top: 0px;}
  .nav-brand:after {transform: translateX(-100px);}
  .pageIndex .nav-brand:after {transform: translate(-100px, -20px) !important;}
  .pageIndex .me_tp_features a.tp_btn_cart, .pageIndex .me_tp_features a.tp_btn_notice {text-shadow:none;}
  .pageIndex .stellarnav > ul > li > a > b {text-shadow: none;}
  .main_header_area .container {padding-left: 0px;}
  .navigation {padding: 22px 0 0px 0px;}
  .pageIndex .nav-brand:after {height: 100%; max-width: 200px; transform: translate(-100px, -20px);} 
}
@media screen and (max-width: 768px) {
.pageIndex .stellarnav { margin-top: 0px;}
.stellarnav {margin-top: 0px;}
.stellarnav > ul > li > a{text-shadow:none;}
.header_area.sticky .main_header_area {height: 70px;}
.main_header_area {height:70px;}
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {display: inline-block;}
.pageIndex .header_area.sticky .main_header_area {height: 74px;}
.navigation {padding: 18px 0 0px 0px;}
.pageIndex .nav-brand:after {transform: translate(-70px, -20px) !important;}
.pageIndex .stellarnav > ul > li > a > b {color: #212529;}

/*漢堡選單展開*/
.stellarnav.mobile > ul > li > a {padding: 24px 43px 20px 15px; width: 100%;}
.stellarnav.mobile > ul > li.has-sub > a {padding: 24px 43px 20px 15px;}
.stellarnav.mobile > ul > li > a.dd-toggle {padding: 18px 16px !important; text-align: right;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {background: #fff; border-right: 1px #fff solid; box-shadow: 1px 1px 10px #fff;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #fff;}
.stellarnav.mobile > ul > li {border-bottom: 1px #a9d0f5 solid;}
.stellarnav li {width: 100%; text-align: left;}
.stellarnav > ul > li.has-sub > a {padding-right: 10px; padding-left: 10px;}
.stellarnav > ul > li > a:hover {color: #A9D0F5;}
.stellarnav.mobile li.open li.open {background: #007bff;}
.stellarnav ul ul ul {right: unset; left: 100%; top: 0px;}
.stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 3px #007bff;}
.stellarnav a.dd-toggle .icon-plus:before {border-bottom: solid 3px #007bff;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {color: #ffffff; border-color: #007bff; background: #007bff;}
.stellarnav .icon-close:after {border-bottom: solid 2px #007bff;}
.stellarnav .icon-close:before {border-bottom: solid 2px #007bff;}
.stellarnav a {color:#007bff;}

.stellarnav.mobile ul {background: #A9D0F5;}
.stellarnav.mobile li.open {background: #fff;}
.stellarnav li li {border: 1px #fff solid; background: #fff;}
.stellarnav li a {color: #212529;}
.stellarnav > ul > li > a > b {color: #ffffff;}
.stellarnav.mobile > ul > li > a b {font-size: 14px; padding: 2px;  color: #212529;}
.stellarnav.mobile > ul {border-top: 0px;}
.stellarnav .menu-toggle span.bars span{ width: 40px;}
.stellarnav .menu-toggle:after{ font-size: 16px;}
.pageIndex .stellarnav .menu-toggle span.bars span{background: #fff;}
.pageIndex .stellarnav .menu-toggle:after { color: #fff;}
.header_area.sticky  .stellarnav .menu-toggle span.bars span {background: #212529;}
.header_area.sticky .stellarnav .menu-toggle:after { color: #212529;}

.pageIndex .header_area.sticky .stellarnav > ul > li > a > b {color: #212529;}
.pageIndex .header_area.sticky .stellarnav > ul > li > a > b:hover {color: #a9d0f5;}

.main_header_area .container {max-width: 100%;}

/*主選單按鈕下底線*/
.stellarnav > ul > li:not(.tp_links) > a:after ,
.stellarnav > ul > li > a:after {display: none;}
}

@media screen and (max-width: 570px) {
.stellarnav .menu-toggle {
    padding: 15px 10px;
    }
}

@media screen and (max-width: 375px) {
.box_search {margin-right: 0px; display: block; max-width: 160px; width: 100%; margin: 0 auto; margin-bottom: 5px;}
/*.pageIndex .main_header_area {height: 90px;}
.pageIndex .header_area.sticky .main_header_area {height: 90px;}
.header_area.sticky .main_header_area {height:90px;}
.main_header_area {height:90px;}*/
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 主分類超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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: 200px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
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;    border-left: none;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:transparent; color:#007BFF;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 0px;}
.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_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {
    background: #f2f2f2;
    padding: 10% 60px;
    background-image: url(https://pic03.eapple.com.tw/oscarfilm/ban.jpg);
    background-size: cover;
    padding: 196px 120px 96px;
    max-height: 480px;
    background-position: bottom;
}

.banner h5 {
    position: relative;
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.12em;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
}

.banner h5:after {
    content: "Products";
    width: fit-content;
    /* height: 48px; */
    animation: imgSlideUpAnimation 1s 0.1s ease-in-out forwards;
    color: #007BFF;
    border-radius: 2px;
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 60px;
    line-height: 1.4;
}

.banner.banA {}
.banner.banB {display: none;}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

.product_page_a .banner h5:after {
    content: "Products";
}

.album_a .banner h5:after {
    content: "Case";
}
.article_a .banner h5:after {
    content: "News";
}

.banC.banner h5:after {
    content: "Contact";
}


@keyframes imgSlideUpAnimation{
0% {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
}


@media screen and (max-width: 1024px) {
    .banner {
        margin-top: 0;
        background-position: left bottom;
    }
}

@media screen and (max-width: 768px) {
     .banner {
        background-position: 10% 100%;
        margin: 0;
        padding-right: 40px;
        padding-left: 40px;
        padding-top: 120px;
        padding-bottom: 60px;
    }

}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/
.path p {
    display: none;
}

.services_page .edit {
    padding: 0px;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */


.product_page .main_part {
    width: 100%;
    max-width: 90%;
    margin: auto;
    padding: 0;
    padding: 150px 0;
}

.product_menu_list {
    margin-bottom: 0;
}




/* 選單 */
.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-right: 10%;
}
.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: fit-content;
    text-align: left;
    border-left: 1px solid #21252942;
    transition: all 0.5s;
}
.product-layer-two li::before {
    content: "";
    display: inline-block;
    background-color: #007BFF;
    width: 1px;
    height: 0;
    position: absolute;
    left: 0;
    bottom:  0;
    transition: all 0.5s;
}
.product-layer-two li:hover:before {
    bottom:  inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;
}
.product-layer-two li a {
    color: #212529;
    border: 0;
    padding: 15px 20px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
}
.product-layer-two li:hover > a { 
    background: transparent;    
    color: #007BFF;
    padding-left: 30px;
}
.product_page .show_content {
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}


.page {
    color: #212529;
    width: 100%;
}
.product-layer-two li.active > a {
    background: transparent;
    color: #007BFF;
    border: 0;
    border-left: 2px #007BFF solid;
    font-weight: normal;
}

.products-list .price b {
    color: #007BFF;
    font-size: 16px;
    width: calc(50% - 10px);
}
.products-list .price b.ori_price{
    color: #eb7171;

}

.product-layer-two li i {
    top: 10px;
    color: #007BFF;
    transition: 0.3s;
    /* left: 150px; */
    width: 100%;
    justify-content: flex-end;
}

.fa-circle-plus::before, .product-layer-two li i.close::before {
    transition: all .3s;
}

.fa-circle-plus::before {
    content: "\2b";
}

.product-layer-two li i.close::before {
    content: "\f068";
    transform: rotate(-180deg);
}

/* 內容 */

.product_info_page .swiper-wrapper .swiper-slide.swiper-slide-active:nth-child(1):before{display: none;}

.product_info_page .swiper-wrapper .swiper-slide.swiper-slide-active:nth-child(2):before{display: none;}

.products-list .more {
    border: 1px solid #212529 !important;
    color: #212529;
    width: 90%;
    margin: 0 auto;
}
.products-list .item a:hover .more {    background: #007BFF;    border-color: #212529;	color: #ffffff;}
.products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 220px);
    flex: 1;
    margin-left: 20px;
    padding: 0;
    grid-gap: 1%;
    height: auto;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: none;
}
.products-list .item {
    width: calc(100% - 30px);
    display: inline-block;
    vertical-align: top;
    padding: 8%;
    margin: 0.05%;
    background: transparent;
    border-radius: 0;
    transition: all 0.5s;
}
.products-list .item:hover {
    background: #a9d0f52e;
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .item a img {
    height: auto;
    transition: all 0.5s;
}
.products-list .item a:hover img {
    transform: scale(1.05);
    transition: all 0.5s;
}

.products-list .name {
    font-size: 16px;
    color: #212529;
    height: auto;
    padding: 5%;
}
.products-list .name::before {
    content: "";
    text-align: center;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #212529;
    margin: 10px 0;
}
.products-list .pic {
    display: block;
    position: relative;
    text-align: center;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}
.products-list .item a:hover .pic{
    transition: all 0.5s;
}

ul.page {
    width: 100%;
    margin: 80px auto 20px auto;
    color: #007BFF;
}

.page strong, .page a:hover {
    background: #007BFF;
    color: #fff;
}

ul.page li.activeN {
    width: 35px;
}



/*內頁*/
.product_info_page .main_part {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 50px 0px;
}
.lastPage {background: #a9d0f5;}
.nextaction {    background-color: #c1b09c;}
.lastaction {    color: #fff;    background-color: #c1b09c;}

.bx-wrapper .bx-viewport {
    border: none;
    left: 0px;
    background: transparent;
}
.product_pic #bx-pager a {
    border: none;
}
.product_info_page .product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    width: 10%;
    margin-right: 10%;
    position: absolute;
    left: 100px;
}
.product-wrapper {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebarBtn {
    padding: 5% 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    border: 0;
    background: transparent;
}
.sidebarBtn h2 {
    color: #007BFF;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
    font-size: 24px;
}
.sidebarBtn  {
    color: #212529;
}
.product_info li span {
    color: #212529;
}
#bx-pager h6{
    display: none;
}
ul.prod li h3.prod-thumb {
    background: transparent;
    color: #007BFF;
    padding: 0;
    text-align: left;
}
ul.prod li h3.prod-thumb::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #007BFF;
    margin: 10px 0;
}
ul.prod {
    list-style: none;
    display: block;
    width: 100%;
}
ul.prod li .prod-panel {
    color: #212529;
    text-align: left;
}
ul.prod li {
    margin-bottom: 40px;
    color: #212529;
}
.toShare {
    border-top: 1px solid #007BFF;
}


.pd_tabTitle {
    font-size: 40px;
    color: #666666;
}
.pd_tabTitle li.activeTab::after {
    height: 5px;
    background: #007BFF;
}
.pd_tabTitle li {
    border-bottom: none;
}



/*  */
.half_box {
    width: 100%;
    float: left;
    padding-right: 0px;
}
ul.prod li span{
    color: #212529;
}
.qaform .breakF {
    border: 1px #212529 solid;
    background: #00000061;
    color: #fff;
}
.half_box li.btn_blankTop {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
}
.productBtn{
    text-align: center;
    width: 40%;
    background-color: transparent;
    background-image: none;
    margin-top: 10px;
    padding-left: 0;
    border: 1px #212529 solid !important;
    color: #212529;
    transition: all 0.5s;
}
.productBtn:hover{
    background-color: #00000071;
    transition: all 0.5s;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #007BFF  !important;
}

/*  */

.prod_related {
    background: #a9d0f533;
    padding: 25px 15px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #007BFF;
}
.related_list li a {
    display: block;
    padding: 5%;
    background: #fff;
    border-radius: 30px;
}
.related_list li a p {
    font-size: 15px;
    color: #4A4A4A;
    margin: 10px 0;
}
.related_list li{
    transition: all 0.5s;
}
.related_list li:hover{
    transform: scale(1.05);
    transition: all 0.5s;
}
.mobile_product_name {
    display: none;
}
.product_menu_list {
    margin-bottom: 0;
}
.product_main {
    position: relative;
    left: 0px;
}
.prod_tabs {
    margin-top: 0;
}
@media screen and (max-width: 1440px) {
    .product_main {
        left: 100px;
    }
}

@media screen and (max-width: 1100px) {
    .products-list {
       grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
  .products-list .item {
      width: auto;
}
}

@media screen and (max-width: 768px) {
    .product-layer-two {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        justify-content: space-between;
        align-items: flex-end;
    }
    .product-layer-two li {
        width: calc(100% / 3);
    }
    .product-layer-two li a {
        text-wrap: pretty;
        word-break: keep-all;
    }
    .product-layer-two li:hover > a {
        padding-left: 20px;
    }
    .products-list {
        width: 100%;
        padding: 20px 0;
        margin-top: 30px;
    }
    .product_info_page .product-layer-two {
        display: none;
    }
    .product-wrapper {
        left: 0px;
    }
    .product_info_page .show_content {
        width: 100%;
        padding: 5%;
    }
    .product_main {
        position: relative;
        left: 0;
    }
    .product_menu_list{
        display: none;
    }
    .product_page .main_part {
        padding: 0px 0; 
    }
    
}

@media screen and (max-width: 700px) {
    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }    
}

@media screen and (max-width: 500px) {
    .products-list {
        grid-template-columns: repeat(1, 1fr);
    } 
    .products-list .item {
        width: 100%;
    }
    .product_page .main_part {
        max-width: 85%;
    }
    .product-layer-two li {
        width: calc(100% / 2);
    }
    .products-list .more {
        font-size: 14px;
    }
    .products-list .item {
        width: 100%;
    }
    .product_info_page .main_part {
        width: 100%;
        max-width: 85%;
        margin: auto;
        padding: 50px 0px;
    }
    
}


/*首頁購物車*/

.pageIndex .products-list {
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.i_prod_tit h2 {
    font-size: 60px;
    display: flex;
    align-items: center;
    gap: 0.3em;
    color: #007aff;
    line-height: 1;
    justify-content: center;
}
.i_prod_tit h2:before {
    content: '';
    background: url(https://pic03.eapple.com.tw/oscarfilm/os-1.png) no-repeat;
    height: 50px;
    display: block;
    vertical-align: middle;
    max-width: 50px;
    word-break: initial;
    width: 100%;
    position: relative;
    background-size: contain;
}
.i_prod_tit h2:after {
    content: '';
    background: url(https://pic03.eapple.com.tw/oscarfilm/os-1.png) no-repeat;
    height: 50px;
    display: block;
    vertical-align: middle;
    max-width: 50px;
    word-break: initial;
    width: 100%;
    position: relative;
    background-size: contain;
}

.pageIndex .productsListBox{
    padding: 50px 0 30px;
}



@media (max-width: 1024px) {
    .i_prod_tit h2{
        font-size: 48px;
    }
    .i_prod_tit h2:before {
    height: 48px;
    max-width: 48px;
    }
    .i_prod_tit h2:after  {
    height: 48px;
    max-width: 48px;
    }
    .pageIndex .products-list {
    grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .i_prod_tit h2 {
        font-size: 36px;
    }
    .i_prod_tit h2:before {
    height: 36px;
    max-width: 36px;
    }
    .i_prod_tit h2:after {
    height: 36px;
    max-width: 36px;
    }
    .pageIndex .products-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/*首頁文章*/
.module_i_news {padding: 50px 20px 50px; background: #ffffff;}

.module_i_news .title_i_box h4 { }

.module_i_news .title_i_box h6 {
    font-size: 60px;
    display: flex;
    align-items: center;
    gap: 0.3em;
    color: #007aff;
    line-height: 1;
    justify-content: center;
}

.module_i_news .title_i_box h6:before {
    content: '';
    background: url(https://pic03.eapple.com.tw/oscarfilm/os-1.png) no-repeat;
    height: 50px;
    display: block;
    vertical-align: middle;
    max-width: 50px;
    word-break: initial;
    width: 100%;
    position: relative;
    background-size: contain;
}
.module_i_news .title_i_box h6:after {
    content: '';
    background: url(https://pic03.eapple.com.tw/oscarfilm/os-1.png) no-repeat;
    height: 50px;
    display: block;
    vertical-align: middle;
    max-width: 50px;
    word-break: initial;
    width: 100%;
    position: relative;
    background-size: contain;
}

.module_i_news ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 50px 0 0;
}

.module_i_news li {
    display: flex;
    flex-wrap: wrap;
     position: relative;
    text-align: left;
    background: #fff;
    border: 1pt solid #FFF;
    box-shadow: 1px 1px 25px rgb(0 0 0 / 4%);
    border-radius: 0px;
    padding: 20px;
}

.module_i_news li a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.module_i_news li a:before{ color: #007bff;}

.module_i_news li a:after{border: none;}

.module_i_news_list{ padding: 0px 0 30px;}

.module_i_news .title_i_box{ margin-bottom: 0px;}

.animated-arrow{background: #007bff;}


@media (max-width: 1100px) {
    .module_i_news .title_i_box h4 {
        top: -50px;
    }

    .module_i_news .title_i_box h4:before {
        font-size: 50px;
        line-height: 50px;
        top: 80px;
    }

    .module_i_news .title_i_box h4:after {
        top: 50px;
    }

}

@media (max-width: 1024px) {
    .module_i_news .title_i_box h4 {
        top: -50px;
    }
    .module_i_news .title_i_box h6 {
        font-size: 48px;
    }
    .module_i_news .title_i_box h6:before {
    height: 48px;
    max-width: 48px;
    }
    .module_i_news .title_i_box h6:after {
    height: 48px;
    max-width: 48px;
    }
}

@media (max-width: 768px) {
    .module_i_news .title_i_box h6 {
        font-size: 36px;
    }
    .module_i_news .title_i_box h6:before {
    height: 36px;
    max-width: 36px;
    }
    .module_i_news .title_i_box h6:after {
    height: 36px;
    max-width: 36px;
    }
}

@media (max-width: 480px) {
    .module_i_news .title_i_box h4 {
        top: -40px;
    }

    .module_i_news .title_i_box h4:before {
        font-size: 40px;
        line-height: 40px;
        top: 70px;
    }

    .module_i_news .title_i_box h4:after {
        top: 40px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章側邊選單*/

h5.blog_le_t { font-family: 'Oxanium', "Noto Sans TC","微軟正黑體","arial","sans-serif";}

h5.blog_le_t em {
  font-family: "Noto Sans TC", serif;
}

h5.blog_le_t {
  color: #212529;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
}

.blog_le .accordion li .link i {
  color: #999999;
}

.blog_search input[type=search] {
  border-radius: 0px;
}

.blog_le .accordion {
  border: none;
  background: #ffffffbf;
  border-radius: 0px;
}

.submenu {
  background: #ffffff;
  font-size: 14px;
  border: none;
}

.accordion li .link a {
  font-weight: 400;
  letter-spacing: 2px;
  color: #212529;
}

/*文章設定*/


.blog_list_ri h5 {
  font-weight: 400;
  color: #212529;
  display: flex;
  font-size: 18px;
}

.blog_list_ri em { color: #6C757D;}

.blog_list_ri p { color: #6C757D;}

.subbox_item a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 20px;
  background: #fff;
  border: 1pt solid #FFF;
  box-shadow: 1px 1px 25px rgb(0 0 0 / 4%);
}

.blog_subbox {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
  background-color: transparent !important;
}

.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
  background: #007bff;
}

.submenu a i {
  color: #bdd0d9;
}

.blog_page .main_part {
  max-width: 1600px;
  padding-top: 80px;
}

.submenu li.on_this_category a, .submenu a:hover {
  background: #f5f5f5;
  color: #444;
  padding-left: 35px;
}
.blog_back a.article_btn_prev,.blog_back a.article_btn_next { background: #b3bfc5;}
.blog_back a.article_btn_back {background: #6E6E6E;}

.path p, .path p a {
display: none;
}

.subbox_item a::after  {
  width: 0%;
  height: 100%;
  transition: .5s ease-in-out;
  border: none;
  z-index: -1;
  border-radius: 15px;
}
.subbox_item a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  top: 0px;
  left: 0px;
  transition: .5s ease-in-out;
}

.subbox_item a:hover .blog_list_le img {
  transform: translate(0%, 0%) scale(1.05);
  filter: none;
  transition: all .6s;
}

.subbox_item a:before{color: #007bff;}

.subbox_item a:hover:before {
  clip-path: inset(0 0 0 0);
}

.blog_list_le img {
  z-index: 999;
}

h4.blog_category_title {
  color: #444;
  font-size: 21px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-bottom: none
}

.blog_in_page h4.blog_category_title {
  color: #444;
  font-size: 21px;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-bottom: 1px solid #007bff;
}

/*文章內文*/


.toShareNews b, .toShareNews a, .toShareNews a object, .toShareNews a i {
  font-weight: 400;
}

.blog_box_edit * {
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #444;
}

.blog_back a.article_btn_prev{
    background: #007bff;
}

.blog_back a.article_btn_back {
    background: #a9d0f5;
}

.blog_back a.article_btn_next {
    background: #007bff;
}

/*相關文章*/

.lastPage:hover {
  background: #007bff;
  transition: .3s ease-in-out;
}

.lastPage{
  transition: .3s ease-in-out;
}

.news_related {
  padding: 25px 15px;
  background: rgb(255 255 255 / 16%);
  backdrop-filter: saturate(93%) blur(10px);
  border-top: 2pt solid #fff;
}

.news_related h6 {
  max-width: 1200px;
  margin: 20px auto 40px;
  text-align: center;
}

.news_related h6 span:before {
  color: #212529;
  font-weight: 400;
}

.news_related_list li a {
  transition: .3s ease-in-out;
  padding: 0px;
}

.news_related_list li a img {
  transition: .3s ease-in-out;
}

.news_related_list li:hover a img {
  transition: .3s ease-in-out;
  padding: 15px;
  border-radius: 30px;
}

.news_related_list li:hover a p{
  transition: .3s ease-in-out;
  background: #007bff;
  color: #fff;
}

.news_related_list li a p {
  transition: .3s ease-in-out;
  padding: 10px;
}



@media screen and (max-width: 600px){
  .blog_subbox {
grid-gap: 25px;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿*/
.other_album_choice li {
    background: #ccc;
}
/*相簿下方隱藏*/
.other_album_choice{display:none;}
.album_fixed_title{display:none;}


.show-list .item a .show_pic {
    transition: all .8s;
}
.overlay {
  background: transparent;
  left: 0;
  top: 0;
  opacity: 1;
  transform: scale(0);
  z-index: 1;
  transition: all 0.3s;
}

.overlay:hover {
  background: linear-gradient(0deg, #007bff8c, #2a5e7400);
  opacity: 1;
  animation: tracking-in-expand-fwd .5s cubic-bezier(.215,.61,.355,1.000) both;
}

.overlay:hover:after {
  content: 'MORE +';
  width: 30%;
  position: absolute;
  bottom: 4%;
  right: -4%;
  height: 11%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}


@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
            transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}


/* .show-list .item a:hover .show_pic {filter: grayscale(0);} */
.show-list .show_pic {
    aspect-ratio: 37 / 25;
}
.show-list .item a .show_pic img {
    transform: scale(1);
    transition: all .8s;
}
.show-list .item a:hover .show_pic img {
    transform: scale(1.05);
    /* opacity: 0.8; */
}

.album_page .banner {
    position: relative;
    background: transparent;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    display: flex;
    padding: 0;
    min-height: fit-content;
}
.album_page .banner h5 {
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--SubColor);
    font-family: var(--SFont);
    width: fit-content;
    padding: 50px 0 0;
}


/* = = = 分隔線 相本分類= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*相本列表*/
.album_page #page, .album_class_page #page, .album_info_page #page{

}
.album_page #content, .album_class_page #content, .album_info_page #content{
    background: transparent;
}

.album_page .show_content, .album_info_page .show_content{ 
    width: 100%;    
    text-align: center;
}

/* 主分類相簿名 */
.subalbum-menu h2 {
    color: #212529;
    font-size: 24px;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
}
/*大分類頁*/
.album_class_page .show_content, .album_info_page .show_content {width: 100%;}
.album_descrip { display: none;}

.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: clamp(20px, 4%, 50px);
    gap: 30px;
}

.album_class_page .show-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

ul.show-list, .other_subalbum, ul.pic-list {
    gap: 20px;
    border-top: 1pt solid #007bff;
    padding-top: 40px;
}

.show-list .item {
    text-align: center;
    width: 100%;
    background: transparent;
}
/* 次分類相簿名 */
.other_subalbum li a p {
    margin: 0;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .1em;
    color: #212529;
    width: 100%;
    text-align: center;
}

.other_subalbum li a p:hover {
    color: #007bff;
}


/*相本內頁-.album_info_page*/
.album_info_page{}
.album_descrip p {
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
    color: #333;
    font-size: 20px;
    letter-spacing: 0.12em;
}
/*相簿瀑布流*/
.album_info_page .pic-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 10px;
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    /* row-gap: clamp(20px, 4%, 50px);
    column-gap: clamp(20px, 4%, 50px); */
    grid-gap: 10px;
}
.album_info_page .pic-list .item { width: 100%;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0;
    margin: 0;
}
.album_info_page .pic-list .show_pic {
    height: auto;
    padding: 0;
    aspect-ratio: 4 / 4;
}
.pic-list .item h6 {
    padding: 0;
}



@media (max-width: 1440px){
.album_info_page .pic-list{ 
    -moz-column-count:3; 
    -webkit-column-count:3;  
    column-count:3;
}
}
@media screen and (max-width: 1280px){
    /* .album_page .show-list .item{width: 49%;}
    .album_info_page .pic-list .item {width: 49%;}	 */
    .show-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 980px){
    .main_part {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .show-list {
        grid-template-columns: 1fr ;
    }
}

@media screen and (max-width: 600px){
    .album_class_page .show_content{width: 100%;}
    .album_page .show-list .item{width: 100%;}	
    .album_page .show-list .item{margin:auto;}
    .show-list .item{margin:auto;}
    .show-list {gap: 20px;}
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_editbox {padding: 0;}
.contact_content {max-width: 1400px;padding: 20px 10px 50px;}
.contact_content > form {display: flex;justify-content: space-between;}
.contact_content .information_left {width: 30%;}
.contact_le_nomap { height:350px;}
.contact_content .information_right {width: 65%;padding-left: 20px;}
.list_before.info li {padding-left: 80px;}
.list_before.info li::before {width: 45px;letter-spacing: 5px;font-size: 15px;font-weight: normal;}
.note { order: 2; font-size: 14px;letter-spacing: 1px; margin-left: 20px;}
.contact_form {display: flex;flex-wrap: wrap;justify-content: space-between;}
.contact_form li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0px 20px 0px;
    margin: 0;
    padding-left: 0;
    border-bottom: unset;
    flex-direction: row;}
.contact_form li .form__label {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
    flex-direction: row-reverse;}
.contact_form li .form__insert {display: flex; align-items: center;width: 100%;line-height: 100%;}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    border: unset;
    border-bottom: 1px solid #ccc;
    background: unset;}
.noborder { padding: 10px 5px;}
.form select {
    width: 100%;    
    padding: 10px 5px;
    border: 1px #ddd solid;
    margin-right: 0; 
    margin-bottom: 0;    
    color: #007bff;}
.form select option {color: #007bff;}
.captcha {width: 100%;}
input[type="checkbox"], input[type="radio"] {     margin: 0 5px 0 10px;}
.contact_form li.last { 
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;}
.contact_form li.last blockquote {
    border-radius: 0px;
    border: 1px #ddd solid;
    color: #007bff;
    margin-right: 20px;
    width: 50%;}
.contact_form li.last cite {
    border-radius: 0px;
    background: #007bff;
    border: 1px #007bff solid;
    width: 50%;}

/*隱藏*/
li.info_TEL {
    display: none;
}

li.info_PHONE {
    display: none;
}


@media screen and (max-width: 768px) {
.contact_form {justify-content: center;}
.contact_content > form {    flex-direction: column;}
.contact_content .information_left, .contact_content .information_right {width: 100%;padding: 0;}
.contact_form li {width: 100%;}
.list_before.info {margin-top: 30px;}
.contact_le_nomap {height: auto;}
}

@media screen and (max-width: 600px) {  
.contact_form li .form__label {background: transparent;  width: 20%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer {
    background:#ffffff;
    background-size: 100px 50px;
    padding-top: 50px;
    -webkit-animation: noise 1.5s steps(5) alternate infinite;
    animation: noise 1.5s steps(5) alternate infinite;
    box-shadow: 1px 1px 15px rgb(24 1 38 / 20%);
}
.footer_logo { max-width: 150px;  display: none;}
.footer .center { max-width: 85%;}
.footer_info {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.footer_info ul {
    display: flex;
    flex-direction: column-reverse;
}
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
}
.footer_info li p, .footer_info li p a {
    color: #212529;
}
.footer_info li p a:hover {
    color: #007BFF;
}

.footer_menu {    position: relative;}
.footer_menu:after {
    content: "";
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #a9d0f5b8;
    width: 0%;
    animation: nav-line 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.7s;
}

.footer_menu a:first-child {    display: none;}
.footer_menu a {
    background: transparent;
    border: none;
    color: #212529;
    position: relative;
    padding: 20px 12px;
    margin: 0;
    transition: all .5s;
}
.footer_menu a:hover {    
    background: transparent;
    color: #007BFF;}

.footer_menu a:after {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #007BFF;
    width: 0;
    top: 95%;
    transform: translate(-50%, 50%);
    transition: all .5s;
}
.footer_menu a:hover:after  {   width: 20px;}

/*隱藏*/
.footer_info li:nth-child(2) {
    display: none;
}


.footer_info li p.tel {
    display: none;
}
.footer_info li p.phone {
    display: none;
}


@keyframes nav-line {
    0%{        width: 0;    }
    100%{        width: 100%;    }
    
}

.box_link {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    top: 36%;
    justify-content: center;
    text-align: center;
}
.box_link a:hover {
    background: #007BFF;
}
.box_link a {
    background: #A9D0F5;
    border: none;
    font-size: 15px;
    border-radius: 0;
    width: 30px;
    height: 30px;
    color: #ffffff;
    margin: 5px;
    transition: all .8s;
}

/*隱藏*/
.box_link a.me_tp_call {
    display: none;
}

a.me_tp_ig {
    /* display: none; */
}

/*a.me_tp_call, a.me_tp_call {    display: none;}*/

.copy {
    border: none;
    padding: 15px 20px;
    margin-top: 45px;
    color: var(--MainColor);
}


.copy a:hover {
    color: #a9d0f5;
}

@keyframes noise {
    0% {
        background-position: -88px 166px
    }
    20% {
        background-position: 222px -333px
    }
    40% {
        background-position: -111px 444px
    }
    60% {
        background-position: 33px -66px
    }
    80% {
        background-position: -138px 212px
    }
    100% {
        background-position: 317px -197px
    }
}


@media (max-width: 1024px) {
    .footer_info {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 0px; }
#to_top { bottom:60px;}
#bottom_menu { display: none;}
.box_link { display: none;}
}

@media screen and (max-width: 600px) { 
}




