@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #232323;  color: #fff;}
::selection{  background-color: #232323;  color: #fff;}
:root {
    --MainColor: #11080b;
    --SubColor:#e5b2b9;
    --SubColor02:#eac12b;
    --SFontEN: "Poppins", sans-serif;
    --TitleColor:#004d77;
    --f54: 54px;
    --f48: 48px;
    --f42: 42px;
    --f40: 40px;
    --f36: 36px;
    --f32: 32px;
    --f28: 28px;
    --f24: 24px;
    --f22: 22px;
    --f20: 20px;
    --f18: 18px;
    --f17: 17px;
    --f16: 16px;
}

.path{display: none;}

/*頁碼
.page strong, .page a:hover {    background: var(--SubColor);}
.page li.activeN {    color: var(--SubColor);}
*/

/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {    background: #E1D9D0;    width: 7px;}
::-webkit-scrollbar-button {
    display: none;
    background: #E1D9D0;
    border-radius: 0;
}
::-webkit-scrollbar-track-piece {    background:#E1D9D0;}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    border-radius: 4px;    background-color: #004d778f;}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #004d77; }

/* 軌道背景底色 */
::-webkit-scrollbar-track {    box-shadow: transparent;}

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 
*/

/*共用按鈕*/
.lastPage {
    color: #fff;
    border: 3px solid transparent;
    border-radius: 60px;
    background-color: var(--TitleColor);
    background-image: linear-gradient(to bottom right, #004d77, #020a0e), linear-gradient(125deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 53%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100%, 200%;
    background-position: 0px, -250px;
}
.animated-arrow {
    position: relative;
    transition: ease-in-out 2s;
    margin: 2rem;
    color: #fff;
    border: 3px solid transparent;
    border-radius: 60px;
    background-color: var(--TitleColor);
    background-image: linear-gradient(to bottom right, #004d77, #020a0e), linear-gradient(125deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 53%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100%, 200%;
    background-position: 0px, -250px;
    -webkit-animation: 4s border-glint linear backwards infinite;
    animation: 4s border-glint linear backwards infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    box-shadow: rgba(0, 0, 0, 0.6) 8px 8px 8px;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.25s, text-shaddw 0.25s;
    overflow: hidden;
}
.animated-arrow:hover {
    cursor: pointer;
    background-image: linear-gradient(to bottom right, #001520, #004d77), linear-gradient(125deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 53%);
    box-shadow: rgba(0, 0, 0, 0.7) 5px 5px 5px;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5);
    transition: box-shadow 0.25s, text-shaddw 0.25s;
}
.animated-arrow:before {
    content: " ";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(125deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 52%);
    -webkit-animation: 4s glint linear backwards infinite;
    animation: 4s glint linear backwards infinite;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

@-webkit-keyframes border-glint {
    0% {    background-position: 0px, -250px;  }
    25% {    background-position: 0px, -200px;  }
    75% {    background-position: 0px, 50px;  }
    100% {    background-position: 0px, 50px;  }
}
@keyframes border-glint {
    0% {    background-position: 0px, -250px;  }
    25% {    background-position: 0px, -200px;  }
    75% {    background-position: 0px, 50px;  }
    100% {    background-position: 0px, 50px;  }
}

@-webkit-keyframes glint {
    0% {    left: -120%;  }
    8% {    left: 50%;  }
    100% {    left: 50%;  }
}

@keyframes glint {
    0% {    left: -120%;  }
    8% {    left: 50%;  }
    100% {    left: 50%;  }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.header_area {    background: rgb(1, 1, 1);    position: fixed;    padding: 0;}
.main_header_area .container {    max-width: 100%;}
.nav-header {    max-width: 150px;    grid-row: unset;}
/*.navigation {    grid-template-columns: 1fr;    justify-items: left;}*/

.nav-brand {
    padding: 10px;
    display: flex;
    align-items: center;
}
.nav-header, .sticky .nav-header {    max-width: 80px;}

/*首頁*/
.pageIndex.bodyDesktop .header_area {    height: 0;    padding: 0; background: transparent; }
.pageIndex.bodyDesktop .nav-brand img {
    position: absolute;
    max-width: 175px;
    /*width: 30%;*/
    top: clamp(3vw, 3vw, 100vh);
    animation: ani_fadein 1.5s 1s both;
    transition: all 0.5s;
    left: 2%;
    filter: drop-shadow(2px 4px 10px black);
    width: 10vw;
}
.pageIndex .nav-brand {    padding: 20px 0 0 20px; transition: all 0.5s;}

@keyframes ani_fadein {
    0% {      opacity:0;    }
    100% {      opacity:1;    }
}

/*下滑*/
.pageIndex .header_area.sticky, .header_area.sticky {    background: rgb(1 1 1 / 82%);}
/*.sticky .nav-header {    max-width: 80px; transition: all 0.5s;}*/
.sticky .nav-brand {    padding: 10px; transition: all 0.5s;} 

.pageIndex.bodyDesktop .header_area.sticky {
    height: 90px;
    transition: 0.5s;
}
.pageIndex.bodyDesktop.headerSticky .nav-brand img {
    top: 10px;
    max-width: 70px;
    width: 100%;
    left: 10px;
    width: 10vw;
}

/*上方選單右邊設定 臉書/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}
*/
.tp_links {    display: none;}

.me_tp_features {
    position: absolute;
    top: 17px;
    right: 1%;
    background: #fff;
    max-width: max-content;
    padding: 11px 20px 9px;
    border-radius: 50px;
    box-shadow: inset 2px 2px 4px #939393;
    display: flex;
    align-items: center;
    justify-content: center;
}
.me_tp_features a {    color: var(--MainColor);}
.box_search {    margin-bottom: 0; margin-right: 10px; }
.pageIndex .me_tp_features {    top: 21px;}

/* 浮動按鈕 */
.info_fix_links{    display: flex !important;}
.linksBtn{display: none;}
.info_fix_links a:hover {    background: white;}
.info_fix_links {    perspective: 700px;}

.info_fix_links a {
    background: white;
    border-radius: 16px;
    border: 4px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #000;
    transform-style: preserve-3d;
    animation: dice-soft-roll 1.4s ease-in-out infinite;
}
/* 地面陰影 */
.info_fix_links a::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 16px;
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: shadow-bounce 1.6s ease-out forwards;
}

.info_fix_links a:hover {
    animation: dice-wobble-tilt-right 1.3s ease-in-out infinite;
    box-shadow: 0 14px 25px rgba(0,0,0,0.25);
}

.info_fix_links a:hover i {    animation: dice-bounce 1.6s cubic-bezier(.28, .84, .42, 1) forwards;}

a.info_fix_default.info_fix_mail {    display: none;}
a.info_fix_default.info_fix_fb {    order: 4;}
a.info_fix_default.info_fix_line {    order: 2;}
a.info_fix_default.info_fix_ig {    order: 3;}
a.info_fix_default.info_fix_phone {    order: 1;}

@keyframes dice-soft-roll {
    0%   { transform: translateY(0) rotate(0deg); }
    20%  { transform: translateY(-6px) rotate(4deg); }
    40%  { transform: translateY(2px) rotate(-3deg); }
    60%  { transform: translateY(-4px) rotate(2deg); }
    80%  { transform: translateY(1px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* 🎲 真實彈跳 */
@keyframes dice-bounce {
    0%   { transform: translateY(-10px) rotate(-40deg); opacity: 0; }
    10%  { opacity: 1; }
    25%  { transform: translateY(0px) rotate(20deg); }
    40%  { transform: translateY(-5px) rotate(-10deg); }
    60%  { transform: translateY(0px) rotate(5deg); }
    75%  { transform: translateY(-2px) rotate(-3deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* 陰影壓縮 */
@keyframes shadow-bounce {
    0%   { transform: translateX(-50%) scale(0.8, 0.4); opacity: 0.1; }
    25%  { transform: translateX(-50%) scale(1.2, 0.5); opacity: 0.35; }
    40%  { transform: translateX(-50%) scale(0.9, 0.4); opacity: 0.28; }
    60%  { transform: translateX(-50%) scale(1.1, 0.45); opacity: 0.32; }
    75%  { transform: translateX(-50%) scale(0.9, 0.4); opacity: 0.25; }
    100% { transform: translateX(-50%) scale(1, 0.4); opacity: 0.2; }
}

/* 🔸 微翻 + 微晃 + 微抖動畫 */
@keyframes dice-wobble-tilt-right {
    0% {    transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);  }
    20% {    transform: translateY(-6px) rotateX(6deg) rotateY(10deg) rotateZ(0deg);  }
    40% {    transform: translateY(3px) rotateX(-3deg) rotateY(6deg) rotateZ(0deg);  }
    60% {    transform: translateY(-3px) rotateX(3deg) rotateY(8deg) rotateZ(0deg);  }
    80% {    transform: translateY(1px) rotateX(-1deg) rotateY(4deg) rotateZ(0deg);  }
    100% {    transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);  }
}

/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/*第一層*/
/*下拉線條箭頭
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--FontColor) var(--FontColor) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
*/
.stellarnav > ul > li > a{transition:all 0.3s;}
.stellarnav > ul > li:hover > a{color: var(--TitleColor);}

/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;    transition: all 0.3s;border-left:1px solid transparent;}
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: var(--TitleColor);	padding-left:10px;border-color:var(--TitleColor) ;}

/*下拉第二層箭頭*/
.stellarnav li li.has-sub > a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent var(--MainCOlor) var(--MainCOlor) transparent;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */



/*聯絡我們*/
.contact_form li.last cite {    background: var(--TitleColor);}

/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */

.swiper-banner .swiper-slide img {
    width: 100%;
    animation: none;
    animation: banner-up 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.pageIndex .swiper-wrapper:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/victory/01cover-icon.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0%;
    top: 0;
    z-index: 51;
    animation: float_2 5s infinite;
    animation-direction: alternate;
}

.pageIndex .swiper-wrapper::after {
    content: "";
    display: block;
    width: 160px;
    height: 120px;
    position: absolute;
    right: 22%;
    top: 35%; 
    background-image: 
        url(https://pic03.eapple.com.tw/victory/01cover-icon04.png),
        url(https://pic03.eapple.com.tw/victory/01cover-icon05.png);
    background-size: 60px auto, 50px auto; 
    background-repeat: no-repeat;
    background-position: left center, right center; 
    /* 總動畫時間：掉落跳彈(2.5s) + 暫停(6s) = 8.5s */
    animation: diceB 8.5s ease-in-out infinite;
}

@keyframes diceB {
    /* 掉落跳彈階段 (佔整個週期的約 0% 到 30%) */
    /* 0%: 起始位置，在上方 */
    0% { 
        transform: translateY(-200px) rotate(0deg); 
        animation-timing-function: ease-in; /* 加速下降 */
    }

    /* 3%: 第一次撞擊地面 (底部) - 假設跳彈過程約 3% 的時間 */
    3% { 
        transform: translateY(0) rotate(5deg); 
        animation-timing-function: ease-out; 
    }

    /* 6%: 第一次彈起 */
    6% { 
        transform: translateY(-50px) rotate(-5deg);
        animation-timing-function: ease-in; 
    }

    /* 9%: 第二次撞擊地面 (底部) */
    9% { 
        transform: translateY(0) rotate(10deg); 
        animation-timing-function: ease-out; 
    }

    /* 11%: 第二次微幅彈起 */
    11% { 
        transform: translateY(-15px) rotate(-2deg); 
        animation-timing-function: ease-in; 
    }
    
    /* 14%: 靜止在底部，彈跳完成 (對應 8.5s 總時間的約 1.2 秒處) */
    14% { 
        transform: translateY(0) rotate(0deg); 
        animation-timing-function: ease-out; 
    }
    
    /* 暫停階段 (從 14% 延長到 99%，保持靜止 6 秒) */
    /* 99%: 靜止狀態持續到幾乎週期的最後 */
    99% {
        transform: translateY(0) rotate(0deg);
    }

    /* 100%: 結束，準備從 0% 重複，再次掉落 */
    100% {
        transform: translateY(0) rotate(0deg); 
    }
}

@keyframes float_2{
0% { transform:translate(0px,15px) scale(1.05);}
30% {transform:translate(0px,40px);opacity: .7;}
40% {transform:translate(0px,30px);opacity: 1;}
100% {transform:translate(20px,20px);}

}
@keyframes banner-up {
    0% {        opacity: 0;        transform: translate(0, 10vh);    }
    100% {        opacity: 1;        transform: translate(0, 0);
    }
}

.pageIndex .swiper-wrapper .swiper-slide {
    background-image:  url(https://pic03.eapple.com.tw/victory/01cover.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: fadein 5s;
}

@keyframes fadein {
    0%   { transform: scale(1.1, 1.1); filter: blur(5); }
    100% { transform: scale(1, 1); filter: blur(0); } 
}

@media screen and (max-width: 1024px) {
    .pageIndex .swiper-wrapper::after {
        height: 45px;
        right: 20%;
        background-size: 40px auto, 30px auto;
        width: 100px;
    }

}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
.bannerindex {        padding-top: 135px;    }
.pageIndex .swiper-wrapper:before {    top: -2%;}
}
@media screen and (max-width: 600px) {
.pageIndex .swiper-wrapper::after {
    width: 80px;
    height: 30px;
    background-size: 25px auto, 30px auto;
}
.pageIndex .swiper-wrapper:before {
    top: -16%;
    left: -3%;
}
}
/*大圖*/
/*
輪播第二次時，偽元素都只有顯示相同的
再請將個別大圖的指定名稱[data-swiper-slide-index="每一張的數字"]寫進去
例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after
大圖的指定名稱是從0開始，5張大圖的畫最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]*/

.pageIndex .bannerindex .swiper-slide.swiper-slide:before, 
.pageIndex .bannerindex .swiper-slide.swiper-slide:after {
    content: ""; position: absolute;  z-index: 999; pointer-events: none;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(https://pic03.eapple.com.tw/victory/01cover-b.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    top: 0;
    left: 0;
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide-active:before { 
    animation: slide-in-left 8s ease-in-out infinite;
}

/* 關鍵影格動畫：左滑入後暫停 */
@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50%); /* 從左側 100% 距離外開始 */
    }

    20% { 
        opacity: 1;
        transform: translateX(0); /* 定點 */
    }

    99% {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* 100%：結束，準備回到 0% 重新開始滑入 */
    100% {
        opacity: 0; /* 讓元素在循環開始前瞬間消失，避免閃爍或回彈 */
        transform: translateX(0);
    }
}

.pageIndex .bannerindex .swiper-slide:nth-child(1).swiper-slide:after {
    position: absolute;
    content: "";
    background: url(https://pic03.eapple.com.tw/victory/ban_scroll.jpg);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / 1 * 0.25);
    top: 50%;
    left: 48%;
    transform: translateX(-50%) rotate(-4deg);
    z-index: -1;
    animation: move 50s linear infinite;

    /* 🎯 由左到右淡出 */
    -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 59%) 30%, rgb(255 255 255 / 0%) 60%);
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 59%) 30%, rgb(255 255 255 / 0%) 60%);
    filter: drop-shadow(2px 4px 10px black);
}

@keyframes move {
    0%   { background-position: 0; }
    100% { background-position: 2000px; }
}


/* -------------------------
延遲靜止版 bounce-in-top
------------------------- */
@keyframes bounce-top-hold {
    0% {
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
        opacity: 1;
    }
    15% {
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
    }
    18.33% { 
        transform: translateY(0); 
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
        opacity: 1;
    }
    20% { 
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
    }
    23% { 
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
    }
    25% { 
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
    }
    25% { 
        transform: translateY(0);/* 最終姿勢 */
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
        opacity: 1; 
    }

  /* 18.33%–100%：完全靜止 */
    100% { 
        transform: translateY(0); 
        -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; 
        opacity: 1; 
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    /* background: #fff; */
    width: 100%;
    min-height: 250px;
    background: url(https://pic03.eapple.com.tw/victory/ban.jpg);
    position: relative;
    overflow: hidden;
    background-position: bottom center;
    /* background-size: 65vh; */
    padding: calc(13vw + 30px) calc(3vw + 30px) calc(5vw + 70px) 5%;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner:after {
    content: "";
    display: block;
    width: 32vw;
    height: 190px;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    background-image: url(https://pic03.eapple.com.tw/victory/ban_icon01.png), url(https://pic03.eapple.com.tw/victory/ban_icon02.png);
    background-size: 9vw auto, 8vw auto;
    background-repeat: no-repeat;
    background-position: left center, right center;
    animation: diceban 8.5s ease-in-out infinite;
}
.banner h5 {
    color: #fff;
    letter-spacing: 4px;
    font-size: var(--f36);
    text-shadow: 1px 2px 12px #000;
}

@keyframes diceban {
    0% { 
        transform: translateX(-50%) translateY(-200px) rotate(0deg); 
        animation-timing-function: ease-in; 
    }
    3% { 
        transform: translateX(-50%) translateY(0) rotate(5deg); 
        animation-timing-function: ease-out; 
    }
    6% { 
        transform: translateX(-50%) translateY(-50px) rotate(-5deg);
        animation-timing-function: ease-in; 
    }
    9% { 
        transform: translateX(-50%) translateY(0) rotate(10deg); 
        animation-timing-function: ease-out; 
    }
    11% { 
        transform: translateX(-50%) translateY(-15px) rotate(-2deg); 
        animation-timing-function: ease-in; 
    }
        14% { 
        transform: translateX(-50%) translateY(0) rotate(0deg); 
        animation-timing-function: ease-out; 
    }
        99% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg); 
    }
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/*footer*/
.footer {
    padding-top: 60px;
    background: #fff;
    border-top: 1px solid var(--MainColor);
}
.footer .center {    max-width: 780px;}
.footer_info {
    grid-gap: 0 60px;
    grid-template-columns: 200px 1fr;
    align-items: flex-start;
    justify-items: start;
    padding-right: 0;
}
.footer_logo {
    max-width: 150px;
    grid-row: span 4;
}
.footer_logo {    max-width: 150px;}
.box_link {
    position: relative;
    right: 0;
    max-width: 100%;
    flex-direction: unset;
    gap: 8px;
    order: 1;
    left: 0;
    grid-column: 2;
}

.box_link a {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .5s;
    background: var(--MainColor);
    color: #fff;
    border-color: var(--MainColor);
}
.box_link a:hover {
    background: var(--TitleColor);
    border-color: var(--TitleColor);
}

.footer_info ul {
    grid-column: 2;
    grid-row: span 3 / 1;
}
.footer_info li {    padding: 0;    padding-top: 10px;}
p.mail, a.me_tp_mail {    display: none;}
.footer_info li:nth-child(2){display: none;}
.footer_info li p, .footer_info li p a {
    color: var(--MainColor);
    font-size: 15px;
    font-weight: bold;
    line-height: 200%;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {    padding: 60px 20px;}

/*
.news_part .title_i_box h4 {
    color: var(--TitleColor);
    font-weight: bold;
}
.news_part .title_i_box h4:before {
    content: "NEWS";
    display: block;
    font-family: var(--SFontEN);
}
.news_list ul li p {
    color: var(--FontColor);
}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px; padding-top: 80px; }
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}


/*購物車調整*/
.pageIndex .products-list, .products-list {    grid-gap: 30px;}
.products-list .pic {    border-radius: 30px;}
.products-list .pic:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -144%;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(125deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 52%);
}
.products-list .item a:hover .pic:before {
    -webkit-animation: 4s glint linear backwards infinite;
    animation: 4s glint linear backwards infinite;
}

/*購物車側邊選單*/
.product-layer-two > li {
    border-bottom: none;
    padding-bottom: 0;
}
.product-layer-two li a {
    background: transparent;
    color: var(--FontColor);
    border-bottom: 1px solid var(--SubColor02);
    padding: 11px 11px 11px 35px;
    position: relative;
}
.product-layer-two li.active a {
    border: transparent;
    background: var(--TitleColor);
    color: #fff;
}
.product-layer-two > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 37px;
    height: 37px;
    background: url(https://pic03.eapple.com.tw/victory/ban_icon02.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
    animation: dice-soft-roll 1.4s ease-in-out infinite;
}
.product-layer-two > li > a:hover:before {
    animation: dice-bounce 1.6s cubic-bezier(.28, .84, .42, 1) forwards;
}

/*顏色*/
.products-list .more {
    border: 1px solid var(--TitleColor);
    color: var(--TitleColor);
}
.products-list .item a:hover .more {
    background: var(--TitleColor);
}
.products-list .name {
    color: var(--MainColor);
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%; padding-top: 80px; }
.pd_tabTitle li.activeTab a {    color: var(--TitleColor);    font-weight: bold;}
.pd_tabTitle li.activeTab::after {    background: transparent;}
.pd_tabInner_contain {    line-height: 200%;    color: var(--MainColor);}

/*按鈕顏色*/
.inquiry_a1{background: var(--SubColor02);}
.inquiry_a2{background: #004d778f}
.inquiry_a3{background: var(--TitleColor);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: var(--TitleColor);    background-color: #f2f2f2;}
.nextaction {    background-color: var(--TitleColor);}

/*商品側邊規格*/
.sidebarBtn {    border: none;}
.sidebarBtn h2 {    color: var(--MainColor);}
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #c10000;}
.mobile_product_name{font-size: 24px;}

/*相關推薦*/
.prod_related {
    background: #004d7714;
    padding: 80px 20px;
}
.prod_related h6 span:before {
    font-size: var(--f28);
    color: var(--TitleColor);
}
.related_list {    margin-top: 40px;}

.related_list li a {   padding: 9px; box-shadow: 2px 2px 12px 4px #9393933d; }
.related_list li a p {
    color: var(--MainColor);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}


/*購物車-首頁*/
.prod_part {
    padding: 100px 20px 60px;
}
.i_prod_tit span, .i_video_tit span {
    font-size: 24px;
    font-weight: bold;
    color: var(--TitleColor);
    line-height: 1;
}
.i_prod_tit h2, .i_video_tit h2 {
    font-size: var(--f42);
    color: var(--SubColor02);
    font-family: var(--SFontEN);
    line-height: 1.2;
}

@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) {
    .payment_form {    flex-direction: column;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*3個一排
.blog_subbox {    grid-template-columns: repeat(3, 1fr);} 
*/


/*文章內層*/
/*文章內層封面
.articel_mainPic img{display: none;}*/
.blog_back a.article_btn_back {    background: var(--MainColor);}
.blog_back a.article_btn_prev {    background: var(--SubColor);}
.blog_back a.article_btn_next {    background: var(--SubColor);}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    background: #f3f3f3;
    padding: 25px 15px;
}
.news_related h6 span:before {
    font-size: 24px;
    color: #6d7980;
}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s 100ms cubic-bezier(.42,0,.58,1);
}*/

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/

.pic-list .item a img {    transition: .4s ease;}
.pic-list .item a:hover img {
    transform: scale(1.05);
    transition: .4s ease;
    filter: grayscale(1);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media (max-width:1024px) {
    :root {
        --f54: 48px;
        --f48: 40px;
        --f42: 38px;
        --f40: 36px;
        --f36: 32px;
        --f32: 28px;
        --f28: 24px;
        --f24: 22px;
        --f22: 20px;
    }
    .me_tp_features {        margin: 0;    }
}


@media screen and (max-width: 768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }

/* 開啟手機板下方按鈕所需設定
#bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
    display: block;
    float: left;
}

/*header*/
.nav-header, .sticky .nav-header {        max-width: 75px;    }
.nav-brand {    padding: 10px 0;}
    .me_tp_features {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid var(--MainColor);
    }
.pageIndex .nav-brand {    padding: 10px 0 10px 0;}
.pageIndex .me_tp_features {    top: 0;}

/*漢堡選單*/
.stellarnav.mobile.left > ul {    border: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--TitleColor);
    color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px var(--MainColor);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/
.stellarnav.mobile .menu-toggle {        display: none;    }

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}
}


@media (max-width:600px) {
    :root {
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }


.footer_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer_logo {    max-width: 120px;}
.box_link {
    justify-content: center;
    margin-top: 10px;
}
    ul.show-list, .pic-list {    grid-template-columns: 1fr;}

    /*聯絡我們表單*/
    .contact_form li {    grid-gap: 0;}
    .contact_form li .form__label {    background: transparent;}
}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


