@charset "utf-8";

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kings&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
.path{display:none;}
/* 開場動畫 */
.bannerindex::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;   
    z-index: 1000;
    animation: fadeOut 1s ease-in-out forwards;
    pointer-events: none;
}

.swiper-wrapper {
    transform: scale(0.8); /* 初始縮小 */
    opacity: 0; /* 初始透明度 */
    animation: scaleIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/*大圖/＝＝＝＝＝*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}

/* 基礎樣式 */
.pageIndex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

/* 第一張幻燈片背景圖 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(1)::before {
    background-image: url(https://pic03.eapple.com.tw/0983372302/p1.png);
}

/* 第二張幻燈片背景圖 */
.pageIndex .swiper-wrapper .swiper-slide:nth-child(2)::before {
    background-image: url(https://pic03.eapple.com.tw/0983372302/p2.png);
}

/* 直排輪滑入動畫 - 第一張幻燈片 */
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::before {
    animation: 
        rollerSkateIn 1.8s cubic-bezier(0.3, 0.7, 0.4, 1.2) both,
        rollerWobble 2.5s ease-in-out 1.8s infinite;
}

/* 直排輪滑入動畫 - 第二張幻燈片 */
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2)::before {
    animation: 
        rollerSkateInReverse 1.6s cubic-bezier(0.3, 0.7, 0.4, 1.2) 0.3s both,
        rollerWobble 2.5s ease-in-out 1.9s infinite;
}

/* 直排輪滑入效果（從左側） */
@keyframes rollerSkateIn {
    0% {
        transform: translateX(-100%) rotateY(180deg) skewY(15deg);
        opacity: 0;
        filter: blur(10px);
    }
    70% {
        transform: translateX(10%) rotateY(0) skewY(-5deg);
        opacity: 0.9;
        filter: blur(2px);
    }
    100% {
        transform: translateX(0) rotateY(0) skewY(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* 直排輪滑入效果（從右側） */
@keyframes rollerSkateInReverse {
    0% {
        transform: translateX(100%) rotateY(-180deg) skewY(-15deg);
        opacity: 0;
        filter: blur(10px);
    }
    70% {
        transform: translateX(-10%) rotateY(0) skewY(5deg);
        opacity: 0.9;
        filter: blur(2px);
    }
    100% {
        transform: translateX(0) rotateY(0) skewY(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* 直排輪滑動時的搖擺效果 */
@keyframes rollerWobble {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateY(-5px) rotateZ(2deg);
    }
    50% {
        transform: translateY(0) rotateZ(0deg);
    }
    75% {
        transform: translateY(-3px) rotateZ(-1deg);
    }
}

/* 輪子軌跡效果（偽元素） */
.pageIndex .swiper-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 20%, 
        rgba(255,255,255,0.3) 80%, 
        rgba(255,255,255,0) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 10001;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    animation: wheelTrack 1.5s ease-out 0.5s forwards;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2)::after {
    animation: wheelTrack 1.5s ease-out 0.8s forwards;
}

@keyframes wheelTrack {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}

/* 響應式設計 */
@media screen and (max-width: 768px) {
    .bannerindex { 
        padding: 0; 
        margin: 0;
    }
    
    /* 移動端減少動畫幅度 */
    @keyframes rollerSkateIn {
        0% {
            transform: translateX(-50%) rotateY(90deg);
            opacity: 0;
        }
        100% {
            transform: translateX(0) rotateY(0);
            opacity: 1;
        }
    }
    
    @keyframes rollerSkateInReverse {
        0% {
            transform: translateX(50%) rotateY(-90deg);
            opacity: 0;
        }
        100% {
            transform: translateX(0) rotateY(0);
            opacity: 1;
        }
    }
    
    .pageIndex .swiper-slide::after {
        height: 4px;
    }
}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

/* 商品下拉超過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個--結束 */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: fixed;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: all .3s;
    
}

.main_header_area .container {
    max-width: 100%;
}

.navigation {
    grid-template-columns: 130px 1fr;
}
/* 修复点击功能的核心设置 */
.nav-header {
    position: relative;
    z-index: 100;
    cursor: pointer;
    pointer-events: auto;
    transform-style: preserve-3d;
}

/* 基础样式（保持原有动画效果） */
.nav-header {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    transform: translateX(-100%) rotate(-180deg);
    transition: all .3s;
    animation: 
        rollerIn 1.2s cubic-bezier(0.2, 0.8, 0.4, 1) forwards,
        rollerMove 3s ease-in-out infinite 1.2s;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 150, 255, 0);
}

/* 关键修复：确保伪元素不拦截点击 */
.nav-header::before,
.nav-header::after {
    pointer-events: none;
}

/* 确保内部链接可点击 */
.nav-header a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 110;
}

/* 滑入动画（保持原有效果） */
@keyframes rollerIn {
    0% {
        transform: translateX(-100%) rotate(-180deg) scale(0.5);
        opacity: 0;
        filter: blur(10px);
    }
    40% {
        transform: translateX(30%) rotate(180deg) scale(1.1);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
    }
    60% {
        transform: translateX(10%) rotate(360deg) scale(1);
        filter: blur(0);
    }
    80% {
        transform: translateX(-5%) rotate(340deg);
    }
    100% {
        transform: translateX(0) rotate(360deg);
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
    }
}

/* 持续动画（保持原有效果） */
@keyframes rollerMove {
    0%, 100% {
        transform: translateX(0) rotate(360deg);
        box-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
    }
    25% {
        transform: translateX(15px) rotate(370deg);
        box-shadow: 0 0 25px rgba(0, 200, 255, 0.8);
        filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
    }
    50% {
        transform: translateX(0) rotate(360deg);
    }
    75% {
        transform: translateX(-10px) rotate(350deg);
        box-shadow: 0 0 15px rgba(100, 200, 255, 0.6);
    }
}

/* 悬停效果（优化点击区域） */
.nav-header:hover {
    animation-play-state: paused;
    transform: translateX(0) rotate(360deg) scale(1.05);
    filter: 
        drop-shadow(0 0 8px rgba(0,100,255,0.5))
        brightness(1.1);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.4, 1.5);
}

/* 轮纹效果（保持原有效果） */
.nav-header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, transparent 45%, #eee 45%, #eee 55%, transparent 55%),
        linear-gradient(45deg, transparent 45%, #eee 45%, #eee 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #eee 45%, #eee 55%, transparent 55%);
    background-size: 100% 100%;
    opacity: 0.4;
    animation: wheelSpin 4s linear infinite;
    z-index: -1;
}

/* 轮子转动动画 */
@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 速度线特效（优化后） */
.nav-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transform: skewX(-20deg);
    animation: speedLine 2s ease-in-out infinite 1.5s;
    z-index: -1;
}

@keyframes speedLine {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 0.7; }
    100% { left: 150%; opacity: 0; }
}

/* 确保内部元素可点击 */
.nav-header img,
.nav-header span {
   
    z-index: 120;
    pointer-events: none;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
}
/* 搜尋欄位 */
input::placeholder {
    color: rgba(51, 51, 51, 0.5);
}


.box_search input[type=text]:focus {
    color: #333;
}

.tp_links {
    display: none;
} /* header聯絡按鈕--隱藏 */

.me_tp_features {
    padding-right: 25px;height: 0px;
}
.stellarnav > ul > li > a {
	font-family: 'Noto Sans TC', sans-serif;
	font-size: 15px;
	color: #fff;
	letter-spacing: 3px;
	line-height: normal;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}

.stellarnav li.has-sub > a:after {
    display: none;
}

.stellarnav ul ul {
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(3px);
}

.stellarnav li li {
    border: 0;
}

.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 12px 15px 12px 10px;
}

.stellarnav li li a {
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

/* 下滑設定 */
.header_area.sticky {
    background-color: #2676c2;
    opacity: 1;
    transform: translateY(0); /* 滑入畫面 */
    transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* 彈性過渡 */
    height: 100px;
}

.header_area.sticky .nav-header {
    transform: translateX(0) scale(1); /* 滑入畫面並恢復原大小 */
    transition: all .3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* 彈性過渡 */
}


.me_tp_features a { color: #fff;}

/* hover */
.stellarnav * {
    transition: all .3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    color:#FFAD5C;
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    border-top: 6px solid #;
} /* 主選單三角形 */
.stellarnav li li:hover > a, 
.stellarnav li li > a:hover, 
.stellarnav.desktop li.has-sub li a:hover, 
.stellarnav.desktop li.has-sub li:hover > a   {
    color: ;
    background: rgb(255 255 255 / 30%);
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */

.stellarnav li:nth-child(6),.stellarnav li:nth-child(1){ display:none; } 

@media screen and (max-width: 1024px) {
    .nav-header {
        width: 90px;
        height: 90px;
        padding: 1px;
    }
    .stellarnav > ul > li > a {
        padding: 0 14px;
    }
    .stellarnav > ul > li.has-sub > a {
        padding-right: 0;
    }
	 .nav-header {
        position: absolute;}
	 .stellarnav {
        padding-top: 42px;
    }
}

   

@media screen and (max-width: 768px) {
    .header_area {
        opacity: 1;
    }
    .navigation {
        flex-direction: row;
    }
    .nav-header {
        -webkit-animation: bounce-in-top 1.1s both;
	    animation: bounce-in-top 1.1s both;
    }
    .header_area.sticky .nav-header {
        animation: none;
    }
   .header_area.sticky {
    transform:none; /* 滑入畫面 */
   }

    /* 漢堡鈕設定--開始 */
    .stellarnav.mobile {
        left: unset;
        right: 0;
    }
    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(1) {
        background: ;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        margin: 0 auto 4px 0;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(3) {
        margin: 0 auto 4px 0;
    }
    .stellarnav .menu-toggle:after {
        color: #fff;
    }
    .stellarnav.mobile.left > ul {
        right: 0;
        left: unset;
    }
    .stellarnav.mobile.right .close-menu, 
    .stellarnav.mobile.left .close-menu {
        color: transparent;
        background: transparent;
        padding-top: 20px;
        padding-left: 15px;
    }
    .stellarnav .icon-close {
        display: block;
    }
    .stellarnav .icon-close:before, 
    .stellarnav .icon-close::after {
        width: 25px;
        border-bottom: ;
    }/* 漢堡鈕設定--結束 */


    /* 選單設定--開始 */
    .stellarnav a.dd-toggle .icon-plus:before, 
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px ;
    }
    .stellarnav.mobile > ul > li > a {
        color: var(--color1);
    }
    .stellarnav.mobile li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        color: var(--color1);
        padding: 10px 10px 10px 40px;
    }
    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile ul ul {
        background: transparent;
    }
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0;
    }
    .stellarnav.mobile li.open li.open > a {
        background: #D6EBE9;
    }
    .stellarnav.mobile li.open li.open > a.dd-toggle {
        background: transparent;
    }
    .stellarnav.mobile ul ul ul {
        background: transparent;
    }
    /* 選單設定--結束 */

    /* hover--開始 */
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:before, 
    .stellarnav.mobile a.dd-toggle:hover .icon-plus:after {
        color: ;
    }
    .stellarnav li li:hover > a, 
    .stellarnav li li > a:hover, 
    .stellarnav.desktop li.has-sub li a:hover, 
    .stellarnav.desktop li.has-sub li:hover > a {
        color: ;
        background: transparent;
    } /* 次分類一般變色 */ /* hover--結束 */
	.header_area.sticky {height: 68px;}
	  .stellarnav { padding-top: 0px; }
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
	.box_search {display:none;}
  
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/
.footer {
  padding: 60px 0 40px;
  background-color: #1a75c5;
  background-image: url(https://pic03.eapple.com.tw/0983372302/f_bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  text-align: center;
}

/* 半透明遮罩提升文字可读性 */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22 103 185 / 60%);
  
}

/* 内容容器 */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 简约分隔线 */
.footer-divider {
  height: 1px;
  width: 100px;
  background: rgba(255, 255, 255, 0.3);
  margin: 25px auto;
  transition: all 0.3s ease;
}

.footer:hover .footer-divider {
  width: 150px;
  background: rgba(255, 255, 255, 0.6);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
  }
}

.footer .center {  max-width: 86%;}
.footer_info {
    display: flex;
    padding: 0;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.footer_info ul {  display: flex;  flex-direction: column-reverse;}

.footer_info li:nth-child(1) { padding-top: 0;position: absolute;  top: 50%;display: flex;  flex-direction: column;text-align: left;}
.footer_info li:nth-child(2) { padding-top: 0;}
.footer_info li p,
.footer_info li p a {
    color: #fff;
    font-size: 13px;
    line-height: 230%;
    font-weight: 400;
}
.footer_menu a:first-child {  display: none;}
.footer_menu a:nth-child(2) {  padding: 0 10px; padding-left: 0;}
.footer_menu a {  margin: 0;  text-align: left;  padding: 5px 0;  transition: all 0.3s;  color: #96bfdf;  border: none;  background: transparent;  font-size: 14px;  padding-right: 11px;  text-transform: uppercase;font-weight: 600;font-size: 13px;}
.footer_menu a:hover {  background: transparent; opacity: .8; color:#fff;}
.copy {   color: #fff;  border: none;  text-align: right;  padding: 35px 0 25px;   max-width: 87%;  margin: auto;  font-size: 12px;}
.copy a {  color: #fff;  transition: all 0.3s;z-index: 99999999999999999;  position: relative;}
.copy a:hover {  color: #b1b1b1;}
.box_link {  display: flex;  right: 0%;  top: 100%;   width: 100%;  justify-content: flex-start; display:none;}
.box_link a {
    transition: all 0.3s;
    border: none;
    color: gray;
    margin: 0 2px;
    width: auto;
    text-align: right;
    font-size: 20px;
    font-size: 16px;
}
.box_link a:hover {  background: transparent;  opacity: .8;}
.box_link a:first-child { padding-left: 10px;}
.footer_info li p.tel:before { content: '手機：';}
.footer_info li p.mail:before { content: '信箱：';}
.footer_info li p.add:before { content: '地址：';}
p.tel {  order: 0;}
p.line {  order: 1;}
p.mail{ order:2;}
p.add{ order:3;}
/*Logo/＝＝＝＝＝*/

.footer_logo {  width: 160px;  margin: 0;}
.footer_logo img {  max-width: 180px;  width: 100%; display: none;}
.footer_logo>a {
    background: url(https://pic03.eapple.com.tw/0983372302/F_LOGO.svg) no-repeat;
    display: inline-block;
    width: 100%;
    height: 100px;
    background-size: contain;
    background-position: top right;
    margin-top: 10px;
	
}


@media screen and (max-width: 990px) {
.footer_info li:nth-child(2) {  width: 100%;}
.copy {  margin: 68px 61px 12px 75px;text-align: left;}
}
@media screen and (max-width: 788px) { 
.copy {  margin: 68px 61px 12px 66px;}
}
@media screen and (max-width: 768px) {


/*logo*/
.footer_logo { width: 220px;}
.footer_info li:nth-child(1) {   top: 88%;}
.footer_info ul {  margin-bottom: 35px;}
/*footer*/
.copy { margin: 90px 0px 0 53px;text-align: left;padding-top: 55px; }

}

@media screen and (max-width: 600px) {
/*footer*/
.footer_info {  display: flex;  padding: 0;  flex-direction: column;  align-items: flex-end;  align-items: flex-start; margin-bottom: 53px;}
.footer_logo {  display: none;}
.box_link { display: none;}
 #to_top {    background-color: #ffffff;  font-size: 10px;     width: 50px; height: 50px; padding-top: 12px;}
 #to_top i.top { width: 14px;  height: 14px;}
.total_view {  line-height: 1.8em;}
.footer_menu a {  padding-right: 5px;}
}
@media screen and (max-width: 470px) {
.copy {    margin: 110px 0px 0 33px; }
.footer_menu a { margin: 0px 0px 0px 3px;}
}
@media screen and (max-width: 400px) {
.copy {  margin: 120px 0px 0 27px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 768px) {
#bottom_menu {display: none;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





/*大圖/＝＝＝＝＝*/
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;}
.swiper-slide img { height:auto;}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

/*內頁BANNER 設定*/
.banner h5 {width: 90%;margin: 0 auto;font-size: 2.0vw;color: #000;text-shadow: 0 0 10px rgba(0, 0, 0, .2);
position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);letter-spacing: 3px;}
.banner h5:after {content: "GEORGE"; font-size:16px;color:#000; }
.banner { background-image: url(https://pic03.eapple.com.tw/0983372302/ban.jpg); background-position: center; width: 100%; background-size: cover;height: 400px;
 background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: none;
    position: relative;
    z-index: 1;animation: borderGlow 3s ease-out infinite;
	
   }

.banner::before {
    content: "";
    background-image: linear-gradient(180deg, #00000000 40%, rgb(180 180 180 / 31%) 65%), url(https://pic03.eapple.com.tw/0983372302/ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
    animation: bgScroll 20s linear infinite;
    width: 110%;
    height: 400px;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
	
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, white 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, white 1px, transparent 1px);
    background-size: 200px 200px;
    animation: sparkle 3s linear infinite;
    opacity: 0.3;
}

@keyframes sparkle {
    0% { background-position: 0 0, 100px 100px; }
    100% { background-position: 200px 200px, 300px 300px; }
}



@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}

.banB{display:none;} 
@media screen and (max-width: 600px) {  
.banner,.banner::before {height: 250px;}
.banner h5 {font-size: 5.5vw;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/


/*文章外層*/
.subbox_item a {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding:20px 0 45px;
    
}
.blog_subbox {
   grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
    grid-gap: 10px;
}
.subbox_item a:after {
    top: auto;
    bottom: 0px;
    background: #e0e0e0;
    opacity: 1;
    border: none;
    transition: all .5s;
    height: 1px;
}

.subbox_item a:hover:after{background: #a1a993;}

.subbox_item a:before {
    content: '◆';
    bottom: -8px;
    right: auto;
    left: 0px;
    opacity: 0;
    transition: all .6s;
    font-size: 14px;
}

.subbox_item a:hover:before {
    opacity: 1;
    left: 98%;
    transition: all .5s;
}

.blog_list_ri h5 {
    font-weight: 400;
    letter-spacing: 1px;
    color: #4b4b4b;
    font-size: 18px;
}
.blog_list_ri {
    position: relative;
 }
.blog_list_ri em {
    position: absolute;
    bottom: -24px;
    letter-spacing: 1px;
    font-size: 13px;
    color: #b8b8b8;
}

.blog_list_ri p {
    font-size: 14px;
    color: #666;
    -webkit-line-clamp: 2;
    letter-spacing: 1px;
}

.blog_list_le img {
    border-radius: 20px;
}

/*文章內頁*/

.blog_box_edit * {
  font-family: "Noto Sans TC", serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #3b3b3b;
}

.blog_back a.article_btn_back {
  background: #3a78af;
  color: #fff;
}

.blog_back a.article_btn_prev,.blog_back a.article_btn_next {
  background:#b3b3b3;
}

h4.blog_category_title {
    color: #1e1e1e;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
}

.blog_page h4.blog_category_title{display: none;}

.blog_back {
    width: 100%;
}

/*相關文章*/

.news_related h6 {
    margin: 0px auto 40px;
    text-align: justify;
}

.news_related h6 span:before {
 
  color: #393939;
  font-weight: 400;
  letter-spacing: 3px;
}

.news_related {
    background: #fff;
    padding: 10px 15px 70px;
}

.news_related_list li a {
    padding: 7px;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
   
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 30px; }
#to_top { bottom: 37px;left:auto;right: 20px;}
}

@media screen and (max-width: 600px) { 
}

.linksBtn {background-color: #2E76BC;}

.linksBtn a {background-color: #6ccfda;}
.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
}

.blank_letter {
    font-family: "Noto Sans";
    font-weight: 500;
    padding-top: 0;
    font-size: 24px;
    padding: 30px 0;
    color: #474747;
    background-position: left bottom;
    background-repeat: no-repeat;
    border-bottom: 1px #474747 solid;
}
.list_before.info li {
    padding-left: 32px;
    color: #474747;
}
.contact_form li .form__label {
    color: #474747;
    width: 130px;
    margin-left: -140px;
}
.contact_le_map a {
    background: #474747;
    color: #fff;
}
.contact_form li.last cite {
    background: #474747;
    color: #fff;
    width: 220px;
}
.contact_form li.last input[type="submit"] {
    color: #fff;
}

.contact_content .information_left {
    width: 100%;
    margin-bottom: 50px;
}
.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: #474747;
    transition: all 0.3s;
}
.contact_form li {
    margin-bottom: 0px;
    border-bottom: 1px solid #4747473d;
    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 #474747 solid;
    color: #474747;
    transition: all 0.3s;
}
.contact_content form {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.form__insert input{
    margin: 0 10px;
    color: #474747;
}
.contact_form li.last blockquote {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #474747 solid;
    width: 150px;
}

.contact_content {
    margin: auto;
    padding: 0px 10px;
    max-width: 1200px;
}

.contact_editbox {
    padding: 0;
}

@media screen and (max-width:1024px) {
	 .contact_content {
      padding: 7%;
}
}

@media screen and (max-width: 768px) {
    .contact_form li.last cite {
        width: 160px;
    }
  
}
@media screen and (max-width: 600px) {
.contact_form li .form__label {
     margin-left:0px;width: 100%;
}
.contact_form li {
     padding-left: 0px;
}
.form__insert input {
    margin: 0px;
}
}

.show-list {
   width: 100%;
   margin: 0px auto;
   column-count:3;
   /*欄數*/
   display: block;
   column-gap: 10px;
   /*每欄間隔*/
}

.show-list .item {
     padding: 5px;
        box-sizing: border-box;
        margin: 0 auto 5px;
        break-inside: avoid;
        /*定義頁面、列或是區域發生中斷時的元素表現方式。 auto->元素中斷、acoid->元素不中斷*/
   }
   
.show-list .show_pic  {
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%;
		aspect-ratio: auto;
  }


/*購物車首頁*/

/*首頁只顯示8則*/
.prod_part .products-list .item:nth-of-type(n+9) {
	display:none;
}

.module_i_news .title_i_box h4 {
    font-size: 15px;
    font-weight: bold;
    color: #205B91;
    font-family: "微軟正黑體C", sans-serif;
	 font-family: "Archivo Black", serif;
}
.module_i_news .title_i_box h6 { color: #205B91;font-size: 45px;}



/*購物車列表*/
.products-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.products-list .item a {
    padding-bottom: 50px;
}

.products-list .more {
    
    background: #2E76BC;
	color: #FFF;
}

.products-list .item a:hover .more {

    background:  #791e13;
}

.products-list .pic img, .related_list li figure img {
    transition: .5s;
    transform: scale(1);
}

.products-list a:hover .pic img, .related_list li:hover figure img {
    transform: scale(1.05);
}
.products-list .name {
      -webkit-line-clamp: 1;
       height: 1.5em; 
}
.products-list .pic::before, .related_list li figure::before {
    content: "+";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    z-index: 999;
    text-align: center;
    line-height: 1.2;
	letter-spacing: 0px;
    border-radius: 50%;
    color: #FFFFFF;
    border: 2px #FFFFFF solid;
    opacity: 0;
    transition: .5s;
}

.products-list .pic::after, .related_list li figure::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .5s;
}

.products-list a:hover .pic::before, .products-list a:hover .pic::after, .related_list li:hover figure::before, .related_list li:hover figure::after  {
    opacity: 1;
}








/*購物車詳細*/

.sidebarBtn {
    border: unset;
}

.inquiry_a1, .inquiry_a2, .inquiry_a3, .lastPage {
    background: #791e13;
	transition: all .5s;
}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover, .lastPage:hover {
    background: #465169;
}





.prod_related {
    background: unset;
}

.related_list li figure {
    position: relative;
}

.related_list li a p {
    margin-top: 15px;
	text-align: left;
}







/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */
.prod_part {
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 100px;
	padding-left: 20px;
}
.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}


.product-layer-two li a {
    line-height: 200%;
	background: unset;
	color: #222;
	border: unset;
	transition:.5s;
}

.product-layer-two li i {
    top: 5px;
	color: #222;
	transition:.5s;
}
.product-layer-two li > a, .product-layer-two li.active > a {
	border: unset;
}
.product-layer-two li:hover > a, .product-layer-two li.active > a {
    color: #FFF;
    background:#2E76BC;
    padding-left: 25px;
}

.product-layer-two li:hover i, .product-layer-two li.active i {
	color: #FFF;
}


.product-layer-two li ul { position:static; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#1e8a46;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; }
.product-layer-two > li ul > 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 > a:before { content: ""; position: absolute; width: 8px; height: 8px; background: transparent; left: 10px; margin-left: 0px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);transition:.5s;}
.product-layer-two li li:hover > a:before { background:#1e8a46;}

.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;}


.product_info_page .edit {
    margin: auto;
    padding: 20px 0;
    font-size: 16px;
    line-height: 33px;
}
@media screen and (max-width: 1200px) {
	.related_list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-gap: 10px;
    }
}
@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;font-size: 20px;}

.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) {
	/*手機版購物車-首頁、列表頁、相關產品排列統一*/
	.pageIndex .products-list, .products-list, .related_list {
		grid-template-columns: 1fr;
		grid-gap: 20px;
		max-width: 500px;
		margin: auto;
	}
            
}

.shop_search_btn {background: #000000;}

.info_fix_links a {
    /* 原有樣式保持不變 */
    display: flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    transition: all .3s ease;
    background: rgb(0 0 0);
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
    position: relative;
}

/* 直排輪主題滑過效果 */
.info_fix_links a:hover {
    background: linear-gradient(135deg, #1a5b92 0%, #3a7bb8 100%);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: rollerSkate 0.8s ease-in-out infinite alternate;
}

@keyframes rollerSkate {
    0% {
        transform: translateY(-8px) rotate(-5deg);
    }
    25% {
        transform: translateY(-8px) translateX(5px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) translateX(0) rotate(5deg);
    }
    75% {
        transform: translateY(-8px) translateX(-5px) rotate(0deg);
    }
    100% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

/* 直排輪輪子效果 */
.info_fix_links a:hover::before,
.info_fix_links a:hover::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    bottom: 2px;
    opacity: 0.8;
    animation: wheelSpin 0.5s linear infinite;
}

.info_fix_links a:hover::before {
    left: 5px;
}

.info_fix_links a:hover::after {
    right: 5px;
}

@keyframes wheelSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 滑動軌跡效果 */
.info_fix_links a:hover span {
    position: relative;
}

.info_fix_links a:hover span::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(1px);
    animation: trail 0.8s ease-in-out infinite;
}

@keyframes trail {
    0%, 100% {
        width: 30px;
        opacity: 0.5;
    }
    50% {
        width: 40px;
        opacity: 0.2;
    }
}
.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}

/*相簿/＝＝＝＝＝*/
/*作品展示*/
.work_page .main_part , .work_class_page .main_part, .work_info_page .main_part{    max-width: 1400px; width: 90%;    margin: 0 auto;}
/*相簿管理*/
.album_page .main_part , .album_class_page .main_part, .album_info_page .main_part{    max-width: 1400px; width: 90%;    margin: 0 auto;}
.show-list .show_name {
  letter-spacing: 1px;
  font-weight: 400;
  color: #404040;
}
/*版面*/
ul.show-list, .other_subalbum, ul.pic-list {    display: grid;    grid-template-columns: 1fr 1fr 1fr;    gap: 20px;}
ul.show-list:before , ul.pic-list:before{content:none;}



.show-list .item, .other_subalbum li, .pic-list .item {
    width: 100%;
    margin: 0;
    background: transparent;
}
.show-list .show_pic , .other_subalbum li a div , .pic-list .show_pic{    display: block;    position: relative;    overflow: hidden;    height: 0;}
.show-list .show_pic , .other_subalbum li a div , .pic-list .show_pic    {    padding-bottom: 75%;}/*相簿圖片長寬比例，75% →100:75 = 4:3 */
.show-list .show_pic img , .other_subalbum li a img, .pic-list .show_pic 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%);
	border-radius: 15px;
	}

/**/

.overlay {
    z-index: 9999;
    width: 0%;
    border-radius: 15px;
    transform: none;
    transition: all .7s;
    background: #ffffff8c;
}

.show-list .item:hover .overlay {
  width: 100%;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    transition: all .7s;
}

/**/



.show-list .item:hover .show_name {  color: #404040;}
.other_album_choice li {    background: #3b3b3b;}
.other_album_choice li a:hover i.fa-solid.fa-right-from-bracket {
display: none;
}
.fa-right-from-bracket::before {
  display: none;
}
.other_album_choice li a i.fa-solid.fa-right-from-bracket {
  display: none;
}
.album_fixed_title {
background: transparent;
}
.other_album_choice li:hover {
  transform: translateY(-5px);
  transition: all .4s;
}
.subalbum-menu h2 {
    color: #525252;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 45px;
    letter-spacing: 2px;
    position: relative;
}

.subalbum-menu h2:before {
    content: 'WORKS';
    position: absolute;
    bottom: 75px;
    font-size: 13px;
    letter-spacing: 4px;
}

.other_subalbum li p {
    margin-top: 0px;
    padding: 20px 0 0;
    letter-spacing: 1.5px;
    color: #666666;
    text-align: center;
    font-size: 15px;
}

.pic-list .item h6 {
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 13px;
    text-align: center;
    font-size: 14px;
}
.block {
  display: none;
}

.album_fixed_title span:before {
    content: 'MORE';
    letter-spacing: 2px;
}

.fa-image::before {
    font-size: 15px;
}

@media screen and (max-width: 1200px){

  .album_page .main_part, .album_class_page .main_part, .album_info_page .main_part {
    width: 95%;
}

}

@media screen and (max-width: 768px){

  .album_page .main_part, .album_class_page .main_part, .album_info_page .main_part {
    width: 100%;
}

ul.show-list, .other_subalbum, ul.pic-list {
  grid-template-columns: 1fr 1fr;
}

}

@media screen and (max-width: 600px){


.main_part {
padding: 0px 20px;
}

ul.show-list, .other_subalbum, ul.pic-list {
  grid-template-columns: 1fr;
}

.blog_list_ri h5 {
padding: 10px 0px 0px;
font-size: 18px;
}


.blog_subbox {
grid-gap: 25px;
}

.blog_list_ri p {
font-size: 14px;
letter-spacing: 0.5px;
}

.subbox_item a:before {
height: 29px;
font-weight: 400;
font-size: 15px;
}

.subbox_item a:hover:before {
height: 25px;
}

.blog_list_le {
  width: 50%;
}

}


@media screen and (max-width: 500px){

  .subbox_item a:before {
    content: '';
    background: #ffffff;
    height: 25px;
    }

    .subbox_item a:hover:before {
      background: #616161;
    }

    .blog_list_le {
      width: 100%;
  }

  .subbox_item a {
    flex-wrap: wrap;
    padding: 17px 17px 50px;
}

}