@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.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 {}
*/

/* header商品下拉超過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個--結束 */


/*預設解除背景輪播*/
#content_main { 
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_bg01.jpg); 
    background-repeat: repeat-y;
    margin:0;
}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */

@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
}
/*預設解除背景輪播--結束*/


   
@media screen and (max-width: 600px) { 
}
 /* 開啟手機板下方按鈕所需設定--結束 */    


/* = = = 全域設定 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*LOGO進入畫面*/

body.pageIndex::before {
    content: '';
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(https://pic03.eapple.com.tw/pmpm/web_anim_bg.jpg);
    background-repeat: repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation: fade-out 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}
body.pageIndex::after{
    content: "";
    pointer-events: none;
    display: block;
    width: 15%;
    height: 0;
    padding-bottom: 100%;
    background-image: url(https://pic03.eapple.com.tw/pmpm/enter_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 100000000;
    animation: fade-in 2.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

@-webkit-keyframes fade-out {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fade-out {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}
@keyframes fade-in {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 網頁捲軸設定 */

::-webkit-scrollbar {
    width: 5px;
    background: #fff;
} /* 寬度 */

::-webkit-scrollbar-button {
    background: var(--color2);
    height: 8px;
} /* 滾動條上下箭頭 */

::-webkit-scrollbar-thumb {
    background-color: var(--color3);
} /* 捲軸顏色 */

:-webkit-scrollbar-track-piece {
} /* 捲軸沒有軌道的地方 */

::-webkit-scrollbar-track {
    background-color: var(--color2);
} /* 捲軸軌道 */



/* = = = 全域設定 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
:root {
    --Mainfont: "Comfortaa", "Noto Sans TC", sans-serif;
    color: var(--color1);
    --Mfweight: 600;
    /* font-weight: var(--Mfweight); */
    /* background: var(--color3); */
    letter-spacing: 0.1em;
    transition: all .3s;
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);

    --color1:#ffffff;
    --color2:#000000;
    --color3:#ad9638;
    --color4:#C10100;
    /* --color3:#a18452; */

    --f47:47px;
    --f40:40px;
    --f36:36px;
    --f32:32px;
    --f30:30px;
    --f28:28px;
    --f26:26px;
    --f24:24px;
    --f22:22px;
    --f20:20px;
    --f18:18px;
    --f16:16px;
}

/* body {
    cursor: url(https://pic03.eapple.com.tw/pmpm/cursor_style.svg)30 30, auto;
}  */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面設定 */

body {
    font-family: var(--Mainfont);
    background: #000000;
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_bg01.jpg);
    background-repeat: repeat-y;
    /* border: solid 7px #bd8e3d; */
}
.main_part {
    max-width: 1500px;
}
.other_select_page .promotion_title, 
.other_select_page .other_promotion, 
.other_select_page ul.page {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*--------頁碼設定----------*/
ul.page { 
    width: 100%;
    font-family: var(--Mainfont);
    font-weight: 600;
}

/* 停留在該頁時 */
.page strong {
    background: #6a3906;
}

/* 其他頁 */
.page li {
	margin: 0;
}
.page li a, .page li strong {
    width: 35px;
    height: 35px;
}
.page li a {
    color: #4C5259;
}

/* hover-點擊其他頁 */
.page a, 
.page a:hover {
    transition: all .2s;
}
.page a:hover {
    color: #aacc03;
    background: transparent;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 麵包屑導覽--隱藏 */
.path {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.header_area {
    position: fixed;
    background: rgb(0 0 0 / 80%);
    backdrop-filter: blur(3px);
    padding: 0;
}
.main_header_area .container {
    max-width: 100%;
    padding: 0 2%;
}

/* .me_tp_features */
.me_tp_features {
    display: none;
}
input::placeholder {
    color: rgba(51, 51, 51, 0.5);
}
.box_search input[type=text]:focus {
    color: #333;
}
.tp_links {
    display: none;
} /* header聯絡按鈕--隱藏 */


/* 下滑設定 */
.header_area *,
.header_area.sticky * {
    transition: all .3s;
}
.header_area.sticky {
    background: transparent;
}
.header_area.sticky .container {
    background: rgb(0 0 0 / 80%);
    backdrop-filter: blur(3px);
}
.header_area.sticky .nav-header {
    max-width: 130px;
}
.header_area.sticky .stellarnav {
    padding-top: 0;
}
.header_area.sticky .stellarnav > ul > li > a {
    padding: 10px 8px;
}
.header_area.sticky .stellarnav > ul > li.has-sub > a {
    padding-right: 17px;
}

/* 選單--開始 */
.stellarnav {
    padding-top: 7px;
}
.stellarnav > ul > li > a {
    font-family: var(--Mainfont);
    font-size: 15px;
    font-weight: 600;
    color: var(--color1);
    letter-spacing: 0.2em;
    background: linear-gradient(to right,color-mix(in srgb,var(--color3) 60%,transparent) 0%,color-mix(in srgb,var(--color3) 60%,transparent) 50%,var(--color3) 50%,var(--color3) 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position .4s ease-out;
    padding: 18px 8px;
    height: auto;
}
.stellarnav ul ul {
    background: rgb(0 0 0 / 50%);
}
.stellarnav li li {
    border: 0;
}
.stellarnav li li a {
    font-size: 14px;
    color: #c1c1c1;
}
.stellarnav li li > a, 
.stellarnav li li.has-sub > a {
    padding: 12px 15px 12px 10px;
}
.stellarnav li.has-sub > a:after {
    content: '+';
    font-size: 18px;
    -webkit-text-fill-color: var(--color3);
    border: 0;
    padding-bottom: 2px;
}

/* hover */
.stellarnav * {
    transition: all .3s;
}
.stellarnav > ul > li.has-sub > a:after * {
    transition: all .3s;
}
.stellarnav > ul > li.has-sub > a:after,
.stellarnav > ul > li.has-sub > a:hover:after {
    transition: all .3s;
}
.stellarnav > ul > li > a:hover,
.stellarnav > ul > li:hover > a {
    background-position: 0 0;
} /* 主選單一般變色 */
.stellarnav > ul > li.has-sub > a:hover:after,
.stellarnav > ul > li.has-sub:hover > a:after{
    transform: translateY(-50%) rotate(-180deg);
    opacity: 0;
} /* 主選單三角形 */
.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: #fff;
    background: rgb(173 150 56 / 40%);
    padding-left: 18px;
} /* 次分類一般變色 */
.stellarnav li li.has-sub > a:hover:after,
.stellarnav li li.has-sub:hover > a:after{
    border-left: 6px solid #;
} /* 次分類三角形 */

/* @media screen and (max-width: 1300px) {
    .stellarnav {
        background: rgba(0, 0, 0, 0);
        width: 45%;
        height: 0%;
        max-width: 750px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 0;
        padding-top: 6vw;
        transition: all .8s;
        transition-timing-function: ease-out;
        filter: sepia(1);
        -webkit-filter: sepia(1);
    }
    .stellarnav.active {
        height: 100%;
        background: rgba(0, 0, 0, .8);
        filter: sepia(0);
        -webkit-filter: sepia(0);
        backdrop-filter: blur(6px);
        z-index: 0;
        transition: all .5s;
        transition-timing-function: ease-in-out;
    }
    .stellarnav .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50px;
        height: auto;
        padding: 4% 0 2% 0;
        position: fixed;
        right: 0;
        top: 0;
    }
    .stellarnav > ul {
        display: none !important;
    }
    .stellarnav.active > ul {
        display: block !important;
        max-width: 400px;
        margin: 2vw auto 0 6vw;
        width: calc(100% - 16vw);
    }
    .stellarnav.active > ul > li {
        width: 100%;
    }
    .stellarnav > ul > li > a {
        padding: 10px 8px;
    }
} */

@media screen and (max-width: 768px) {
    .header_area,
    .header_area.sticky .container {
        backdrop-filter: unset;
    }
    .header_area {
        padding: 10px;
    }
    .nav-header {
        width: 110px;
    }

    /* 漢堡鈕設定--開始 */
    .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.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 li li.has-sub a {
        padding: 10px 43px 10px 40px;
    }
    .stellarnav.mobile li li > a {
        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--結束 */
}

@media screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;
    }
}

/* = = = 大圖 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.bannerindex {
    position: static;
    height: auto;
}
.pageIndex .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}
.pageIndex .swiper-slide:before,
.pageIndex .swiper-slide:after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    pointer-events: none;
}

/* 大圖1 */
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before, 
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1)::after {
    animation: vibration 2s linear infinite both;
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before {
    animation: slide-in-elliptic-right-fwd ease-in-out 2s;
}
.pageIndex .swiper-slide:nth-child(1):before {
    background-image: url(https://pic03.eapple.com.tw/pmpm/ban01_item01.png);
    width: 42%;
    top: 8%;
    left: 0;
    aspect-ratio: 904 / 999;
    mix-blend-mode: screen;
}
.pageIndex .swiper-slide:nth-child(1):after {
    background-image: url(https://pic03.eapple.com.tw/pmpm/ban01_item02.png);
    width: 44%;
    bottom: -0;
    right: 0;
    aspect-ratio: 1085 / 716;
    mix-blend-mode: screen;
}

/* 大圖2 */
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: slide-top 2s 0.3s both;
}
.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: shinny 0.4s infinite linear alternate;
}
.pageIndex .swiper-slide:nth-child(2):before {
    background-image: url(https://pic03.eapple.com.tw/pmpm/ban02_text.png);
    width: 24%;
    top: 22%;
    right: 28%;
    aspect-ratio: 504 / 225;
}
.pageIndex .swiper-slide:nth-child(2):after {
    background-image: url(https://pic03.eapple.com.tw/pmpm/ban02_light.png);
    width: 50%;
    bottom: -1%;
    right: 1%;
    aspect-ratio: 1006 / 909;
    mix-blend-mode: screen;
}

/* animation */
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shinny {
    0% {
        opacity: 1;
    }
    100% {
        opacity: .5;
    }
}

@keyframes vibration {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@-webkit-keyframes slide-in-elliptic-right-fwd {
    0% {
        -webkit-transform: translateX(-100%) rotateY(-30deg) scale(0);
        transform: translateX(-100%) rotateY(-30deg) scale(0);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
    }

    100% {
        -webkit-transform: translateX(0) rotateY(0) scale(1);
        transform: translateX(0) rotateY(0) scale(1);
        -webkit-transform-origin: -600% 330%;
        transform-origin: -600% 330%;
    }
}

@keyframes slide-in-elliptic-right-fwd {
    0% {
        -webkit-transform: translateY(100%) rotateY(-30deg) scale(0.3);
        transform: translateY(100%) rotateY(-30deg) scale(0.3);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    100% {
        -webkit-transform: translateY(0) rotateY(0) scale(1);
        transform: translateY(0) rotateY(0) scale(1);
        -webkit-transform-origin: -600% 330%;
        transform-origin: -600% 330%;
    }
}



.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 3%;
} /* 大圖點點 */


/* = = = 首頁促銷方案 & 首頁文章1 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.news_part .title_i_box h4, 
.module_i_news .title_i_box h4 {
    position: relative;
    width: fit-content;
    font-size: 26px;
    font-weight: 600;
    color: var(--color3);
}
.news_part .title_i_box h4::before, 
.module_i_news .title_i_box h4::before {
    content: '';
    position: absolute;
    left: -110px;
    bottom: -55px;
    width: 200px;
    height: 187px;
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_shinny.jpg);
    background-size: contain;
    aspect-ratio: 200 / 187;
    z-index: -1;
    animation: shinny_title 1s infinite cubic-bezier(0.37, 0.22, 0.4, 0.89) alternate;
    mix-blend-mode: screen;
}
.animated-arrow * {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.animated-arrow {
    width: 150px;
    height: 44px;
    font-size: 14px;
    color: var(--color4);
    background: var(--color1);
    border-radius: 7px;
    overflow: unset;
}
.animated-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .8rem;
    z-index: -1;
    background: var(--color1);
}
.animated-arrow i {
    display: none;
}

@keyframes shinny_title {
    0% {
        opacity: 1;
    }
    33% {
        opacity: .5;
    }
    80% {
        opacity: .8;
    }
    100% {
        opacity: 1;
    }
}

/* hover */
.animated-arrow:after,
.animated-arrow:hover:after {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.animated-arrow:hover:after {
    -webkit-animation: ripple 1.8s cubic-bezier(.3,0,.1,1) infinite 0.0001s;
    animation: ripple 1.8s cubic-bezier(.3,0,.1,1) infinite 0.0001s;
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
        opacity: 0.4;
    }

    to {
        -webkit-transform: scale(1.2,1.8);
        transform: scale(1.2,1.8);
        opacity: 0;
    }
}

/* = = = 首頁促銷方案 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* .news_part .title_i_box h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 150px;
    height: 150px;
    color: #fff;
    border: solid 1px #fff;
    border-radius: 50%;
    padding: 20px;
    margin: 0 auto;
}
.news_part .title_i_box h4:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 10px;
    animation: move-rotation 6s linear infinite;
}


@keyframes move-rotation {
    0%{
      transform: rotate(0deg) translateX(75px) rotate(-0deg);
    }
    100%{
      transform: rotate(360deg) translateX(75px) rotate(-360deg);
    }
} */

.news_part {
    padding: 120px 20px 50px;
}


/* 標題 */
.news_part section {
    display: flex;
    position: relative;
    max-width: 1500px;
    font-family: var(--Mainfont);
    padding: 0 50px;
}
.news_part .title_i_box {
    width: 30%;
    margin-left: 30px;
}

/* 促銷方案-列表 */
.news_part .title_i_box {
    width: 30%;
}
.news_part .title_i_box h4 {
    color: var(--color3);
}
.news_list {
    width: 70%;
}
.news_list ul li {
    border-bottom: 1px #4f4f4f solid;
}
.news_list ul li a {
    padding: 10px 0;
}
/* .news_list ul li a:after {
    content: '';
    display: block;
    position: relative;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--color1);
} */
.news_list ul li span {
    width: 110px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color2);
    background: var(--color1);
    padding: 7px;
}
.news_list ul li p {
    width: calc(100% - 130px);
    color: var(--color1);
}
.news_list ul li p:after {
    content: '';
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
}

/* 查看更多 */
.i_news_b {
    position: absolute;
    left: 0;
    top: 80px;
    padding-left: 70px;
}

/* hover */
/* .news_list ul li a:after,
.news_list ul li a:hover:after {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.news_list ul li a:hover:after {
    left: 0;
    width: 100%;
} */
.news_list ul li a:hover {
    background: transparent;
    padding-left: 20px;
}
.news_list ul li a:hover p {
    color: var(--color1);
}
.news_list ul li a:hover p:after {
    right: 0;
}


/* = = = 促銷方案-頁面 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.promotion_title em,
.pmtTitle span {
    display: none;
}

.promotion_title h2 {
    display: block;
    color: var(--color2);
}

.other_promotion {
    display: block;
}
.promotion_title span {
    color: var(--color2);
    font-weight: var(--Mfweight);
    border: 0;
    background: var(--color1);
    padding: 7px;
}
.promotion_title em {
    display: none;
}
.promotion_title h2 {
    display: block;
    color: var(--color1);
    padding-top: 10px;
}
.other_promotion li {
    margin-bottom: 25px;
    overflow: hidden;
}
.other_promotion li a {
    border: 0;
    border-bottom: 1px #4f4f4f solid;
}
.other_promotion li a:before {
    display: none;
}
.other_promotion li a:after {
    content: '';
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
    background-image: url(
    https://pic03.eapple.com.tw/pmpm/pm_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    border: 0;
    aspect-ratio: 1 / 1;
}
.other_promotion .pmtTime {
    display: inline-block;
}
.other_promotion .pmtTime span {
    float: left;
    font-size: 13px;
    font-weight: var(--Mfweight);
    color: var(--color2);
    background: var(--color1);
    padding: 4px 7px;
}
.other_promotion .pmtTitle {
    display: inline-block;
    padding-left: 20px;
}
.pmtTitle span {
    display: none;
}
.other_promotion .pmtTitle h3 {
    width: 100%;
    color: var(--color1);
    font-weight: var(--Mfweight);
}

/* hover */
.other_promotion li a * {
    transition: all .6s;
}
.other_promotion li a,
.other_promotion li a:hover {
    transition: all .6s;
}
.other_promotion li a:hover {
    background: transparent;
    border-bottom: 1px var(--color1) solid;
}
.other_promotion li a:hover:after {
    width: 20px;
    height: 20px;
}
.other_promotion li a:hover {
    padding-left: 20px;
}
.other_promotion li a:hover .pmtTitle h3 {
    color: var(--color1);
}

/* = = = 首頁文章1 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.module_i_news {
    padding: 120px 20px 50px 20px;
}
.module_i_news .title_i_box h4 {
    position: relative;
    width: fit-content;
    font-size: 26px;
    font-weight: 600;
    color: var(--color3);
    margin: 0 auto;
}
.module_i_news .title_i_box h4::before {
    content: '';
    position: absolute;
    left: -110px;
    bottom: -55px;
    width: 200px;
    height: 187px;
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_shinny.jpg);
    background-size: contain;
    mix-blend-mode: lighten;
    aspect-ratio: 200 / 187;
    z-index: -1;
    animation: shinny_title 1s infinite cubic-bezier(0.37, 0.22, 0.4, 0.89) alternate;
}
.module_i_news section {
    max-width: 1600px;
}
.module_i_news ul {
    font-family: var(--Mainfont);
    grid-template-columns: repeat(2,1fr);
}
.module_i_news li a {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.module_i_news li a::before {
    display: none;
}
.module_i_news li a:after {
    background: rgb(0 0 0 / 50%);
    border: 0;
}
.i_blog_le {
    aspect-ratio: 16 / 9;
}
.i_blog_ri {
    position: absolute;
    bottom: -20%;
    padding: 5px 5% 5% 5%;
    opacity: 0;
    z-index: 10;
}
.i_blog_ri h5, .i_blog_ri p {
    color: #fff;
    letter-spacing: 0.1em;
}
.i_blog_ri h5 {
    border-bottom: solid 1px #fff;
    padding-bottom: 20px;
}
.i_blog_ri em {
    color: #c7c7c7;
}
.i_blog_ri p {
    line-height: 160%;
}
.i_blog_b a {
    margin-top: 40px;
}


/* hover */
/* .module_i_news li a:hover .i_blog_ri h5,
.module_i_news li a:hover .i_blog_ri p {
    bottom: 0;
    opacity: 1;
} */
.module_i_news li a:hover *,
.module_i_news li a .i_blog_le img {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.module_i_news li a:hover .i_blog_ri {
    bottom: 0;
    opacity: 1;
}
.module_i_news li a:hover .i_blog_le img {
    transform: scale(1.1);
}

/* = = = 浮動按鈕 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.fa-messenger:before {
    content: "\f39f";
}

/* = = = footer = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.footer {
    background: #000000;
}
.footer .center {
    padding: 0 2%;
}
.footer_info {
    padding: 0;
}
.box_link {
    display: none;
}
.footer_info li p.line:before {
    content: 'Line ID ';
}
.footer_info li p.tel:before {
    content: '專線 ';
}
.footer_info li p.tel2:before {
    content: '電話 ';
}
.footer_info li p.mail:before {
    content: '信箱 ';
}
.footer_info li p.fax:before {
    content: '傳真 ';
}
.footer_info li p.add:before {
    content: '地址 ';
}
.footer_info li p,
.footer_info li p a {
    color: #fff;
}
.footer_menu a {
    color: #fff;
    border: 0;
    background: transparent;
}
.footer_menu a:nth-of-type(n+11) {
    display: none
}
.copy, 
.copy a {
    color: #fff;
}
.copy {
    border: 0;
}

/* hover */
.box_link a,
.box_link a:hover,
.footer_menu a,
.footer_menu a:hover,
.copy a,
.copy a:hover {
    transition: all .3s;
}
.box_link a:hover {
    opacity: .7;
}
.box_link a,
.box_link a:hover {
    transition: all .2s;
}
.footer_menu a:hover {
    background: transparent;
    color: #777777;
}
.copy a:hover {
    color: #fbcd4f;
}

@media screen and (max-width: 768px) {
    
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */

/* 購物車頁面設定 */
.product_page .main_part { 
    max-width:1500px;
}
.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);
}
.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 { 
    position:static; margin-top:5px; 
    /*display:block !important;*/ 
    width:100%; margin-left:0;
}
.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 ul > li + li { 
    margin-top:5px;
}
.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%);
}

/* 商品分類hover */
.product-layer-two li:hover ul { 
    border: none !important; 
    /*display:block !important;*/
}
.product-layer-two li li:hover{ 
    margin-left: 15px;
}
.product-layer-two li li:hover > a { 
    background:#fff; 
    color:#ad925e;
}
.product-layer-two li li:hover > a:before { 
    background:#ad925e;
}

/* 商品列表 */
.products-list .name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}
.products-list .price b.ori_price {
    color: rgba(51, 51, 51, 0.4);
}
.products-list .price b.sp_price,
.products-list .price b {
    color: rgba(51, 51, 51, 1);
}


/* .product_info_page */
.product_info_page .product-layer-two { 
    display: none;
}
.product_info_page .products-list,
.product-wrapper { 
    width: 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;
}
.sidebarBtn {
    border: 0;
}
.product_info li:nth-of-type(1) .txt_box {
    font-size: 15px;
    letter-spacing: 1px;
}
.product_info li .txt_box {
    font-family: var(--Mainfont);
    color: #333333;
}
.product_info li:nth-of-type(1) .txt_box {
    font-size: 15px;
}
.radio-inline__label {
    background: #F7F5F2;
    border: solid 2px #F7F5F2;
    border-radius: 0;
    padding: 8px 22px;
}
.radio-inline__input:checked + .radio-inline__label {
    background: #F7F5F2;
    border: solid 2px rgb(196 196 196 / 80%);
}
.sidebarBtn .price span.ori_price {
    text-decoration: line-through;
}

/* 商品資訊&相關推薦 */
.prod_related * {
    transition: all ease-in .3s;
}
.prod_related {
    padding: 50px 15px 25px 15px;
}
.prod_related h6 {
    margin: 0 auto 30px;
}
.related_list li a {
    background: transparent;
}
.related_list li a p {
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 15px;
}

/* ------結帳頁面------ */
.rewrite_simple {
    background: #333333 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: rgb(138, 138, 138) url(../images/simple_right.png) 88% center no-repeat;
}

/* 訂單成立 */
.pay_text a.animated-arrow:nth-child(1) {
    background: #48AE4F;
}
.pay_text a.animated-arrow:nth-child(2) {
    background: #333333;
}
.order_list_tit b {
    color: #333;
}
.order_list_pro tr:first-child {
    background: #333;
}
.order_list_pro tr:first-child td {
    color: #fff;
}



@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_page .product-layer-two,
    .product_page .products-list {
        width: 100%; 
        border-right: none;
    }
    .product_page .product_menu_list {
        width: 100%; 
        order: 0; 
        min-height: unset;
    }
    .product_page .product_menu_list>h5{
        display: block;
    }
    .product-layer-two { 
        margin-right: 0; 
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
        grid-gap: 5px;
    }

    /* .product_page頁面物件順序設定 */
    .product_page .show_content > a { 
        order: 1;
    }
    .product_page ul.products-list { 
        order: 2;
    }
    .product_page ul.page { 
        order: 3;
    }

    /* .product_page */
    .product_page .product_menu_list {
        background: #F7F5F2;
        padding: 5px 15px;
    }
    .product_page .product_menu_list > h5 {
        margin: 0;
    }

    /* .product_info_page */
    .mobile_product_name {
        display: none;
    }
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 480px) {
    .product_info_page .main_part {
        padding: 10px 10px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 相簿管理 */

/* 共用 */
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1800px;
}
.album_page .show_content,
.album_class_page .show_content,
.album_info_page .show_content {
    display: flex;
    flex-direction: column;
}
.other_album {
    order: 1;
}
.album_page ul.page,
.album_class_page ul.page,
.album_info_page ul.page {
    order: 3;
}
.other_album_choice {
    border-bottom: solid 1px var(--color1);
}
.other_album_choice li {
    font-size: 17px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0 0 15px 0;
}
.other_album_choice li+li {
    border-left: solid 1px var(--color1);
}
.other_album_choice li a {
    padding: 12px 20px;
}
.other_album_choice li a i {
    display: none;
}
.other_album_choice li a:hover {
    background: rgb(60 60 60 / 60%);
}


/* .album_page */
.subalbum-menu {
    order: 2;
}
.show-list {
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
}
.show-list .show_pic {
    aspect-ratio: 16/9;
}
.overlay {
    background: rgba(0,0,0,.5);
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1;
}
.show-list .show_name {
    position: absolute;
    left: 20px;
    bottom: 12px;
    font-weight: 500;
    color: var(--color1);
    margin: 0;
    z-index: 2;
}

/* .album_page - hover */
.show-list .item:hover .overlay {
    
}
.show-list .item:hover .show_name {
    color: var(--color1);
}
.show-list .item a img,
.show-list .item a:hover img {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.show-list .item a:hover img {
    transform: scale(1.1);
}


/* .album_class_page */
.subalbum-menu h2 {
    display: none;
}
.other_subalbum li {
    background: transparent;
}
.other_subalbum li a p {
    font-family: var(--Mainfont);
    letter-spacing: 1px;
}
.other_subalbum li a p {
    position: absolute;
    left: 20px;
    bottom: 12px;
    font-size: 17px;
    color: var(--color1);
    letter-spacing: 0.15em;
    z-index: 2;
}
.album_fixed_title {
    background: transparent;
    display: none;
}

/* .album_class_page - hover */


/* .album_info_page */
.pic-list {
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
    order: 2;
    padding: 0 15px;
    margin: 30px 0;
}
.pic-list .show_pic {
    aspect-ratio: 16/9;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 文章管理 */

/* 共用--文章分類 */
.blog_le * {
    transition: all .3s;
}
.blog_le {
    display: block;
    width: 100%;
}
h5.blog_le_t {
    display: none;
}
.blog_search {
    max-width: 220px;
    margin: 0 auto;
}
.blog_search input[type=search] {
    border: solid 2px #efefef;
}
.blog_search input[type=submit] {
    background-image: url(https://pic03.eapple.com.tw/pmpm/article_search.svg);
    background-color: #efefef;
    border-radius: 50%;
}
.blog_le .accordion {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border: 0;
    border-top: solid 1px #d8d8d8;
    border-radius: 0;
    margin-top: 40px;
}
.blog_le .accordion > li {
    width: calc(100% / 6 - 10px);
}
.blog_le .accordion > li+li {
    margin-right: 12px;
}
.accordion li+li .link {
    border: 0;
}
.accordion li .link a {
    display: inline-block;
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}
.blog_le .accordion li .link i {
    display: inline-flex;
    position: relative;
    font-size: 18px;
}
.accordion li .fa-chevron-down::before {
    content: "+";
    color: var(--color1);
}
.accordion li.on_this_category .fa-chevron-down::before {
    content: "—";
}
.blog_le .accordion li.on_this_category.open i.fa-chevron-down::before {
    content: "+";
}
.submenu {
    background: rgb(60 60 60 / 50%);
}
.submenu li {
}
.submenu li+li {
    border-top: 0;
}
.submenu a {
    color: var(--color1);
    padding: 12px 12px 12px 25px;
}
.submenu a i {
    left: 10px;
    top: 45%;
}
.fa-circle-chevron-right::before {
    display: none;
}

/* 共用--文章分類 - hover */
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a {
    color: var(--color3) !important;
}
.blog_le .accordion > li:hover, 
.blog_le .accordion > li.on_this_category {
    background: transparent !important;
}
.blog_le .accordion > li:hover .link i, 
.blog_le .accordion > li.on_this_category .link i {
    color: var(--color3) !important;
}
.blog_le .accordion > li:hover .link a,
.blog_le .accordion > li:hover .link i.fa-chevron-down::before {
    color: var(--color3) !important;
}
.fa-chevron-down::before, 
.blog_le .accordion li.open i.fa-chevron-down::before {
    transition: all .3s;
}
.blog_le .accordion li.open i.fa-chevron-down::before {
    content: '—';
    transform: rotate(180deg);
}
.submenu li.on_this_category a, 
.submenu a:hover {
    color: var(--color3);
    background: rgb(73 73 73 / 40%);
}

/* 共用--文章列表 */
.blog_ri {
    width: 100%;
}
.blog_list_ri h5, 
.blog_list_ri p {
    color: #fff;
    letter-spacing: 0.1em;
}
.blog_list_ri em {
    color: #c7c7c7;
}

/* 共用--文章列表--hover */
.subbox_item a:hover *,
.subbox_item a .blog_list_le img {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.subbox_item a:hover .blog_list_le img {
    transform: scale(1.1);
}

/* 共用--blog_in_page */
h4.blog_category_title {
    color: var(--color1);
    font-weight: var(--Mfweight);
    letter-spacing: 0.2rem;
}
.blog_in_page .blog_ri {
    width: 100%;
    background: rgb(60 60 60 / 50%);
    padding: 30px 50px;
}
.blog_back {
    max-width: 500px;
    margin: 0 auto;
}
.blog_back a.article_btn_prev, 
.blog_back a.article_btn_next {
    background: transparent;
    color: transparent;
    position: relative;
}
.blog_back a.article_btn_back {
    position: relative;
    color: var(--color1);
    font-weight: bold;
    letter-spacing: 2px;
    background: transparent;
}
.blog_back a.article_btn_prev:before, .blog_back a.article_btn_next::before {
    display: block;
    position: absolute;
    width: 20px;
    top: 30%;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-size: contain;
}
.blog_back a.article_btn_prev:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_arrow.svg);
    right: 20px;
    transform: scaleX(-1);
}
.blog_back a.article_btn_next::before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_arrow.svg);
}


.news_related {
    max-width: 1440px;
    background: transparent;
    border-top: solid 1px var(--color1);
    padding: 25px 40px;
    margin: 80px auto 0 auto;
}
.news_related h6, 
.news_related_list {
    max-width: 1440px;
}
.news_related h6 span:before {
    color: var(--color1);
    font-weight: var(--Mfweight);
    letter-spacing: 0.3rem;
}
.news_related_list li a {
    background: transparent;
}
.news_related_list li a p {
    font-size: 17px;
    color: var(--color1);
    padding-top: 15px;
}
.lastPage {
    position: relative;
    width: 150px;
    height: 44px;
    font-size: 14px;
    color: var(--color4);
    background: var(--color1);
    border-radius: 7px;
    overflow: unset;
}
.lastPage:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .8rem;
    z-index: -1;
    background: var(--color1);
}

/* 共用--blog_in_page--hover */
.blog_back a:hover {
    opacity: .7;
}
.lastPage:hover:after {
    -webkit-animation: ripple 1.8s cubic-bezier(.3,0,.1,1) infinite 0.0001s;
    animation: ripple 1.8s cubic-bezier(.3,0,.1,1) infinite 0.0001s;
}
.lastPage:after, 
.lastPage:hover:after {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}


/* article_a */
.article_a .blog_subbox {
    font-family: var(--Mainfont);
    grid-template-columns: repeat(2,1fr);
}
.article_a .subbox_item a {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.article_a .subbox_item a::before {
    display: none;
}
.article_a .subbox_item a:after {
    background: rgb(0 0 0 / 50%);
    border: 0;
}
.article_a .blog_list_le {
    aspect-ratio: 16 / 9;
}
.article_a .blog_list_ri {
    position: absolute;
    bottom: -20%;
    padding: 5px 5% 5% 5%;
    opacity: 0;
    z-index: 10;
}
.article_a .blog_list_ri h5 {
    border-bottom: solid 1px #fff;
    padding-bottom: 20px;
}
.article_a .blog_list_ri p {
    line-height: 160%;
}

/* article_a - hover */
.article_a .subbox_item a:hover .blog_list_ri {
    bottom: 0;
    opacity: 1;
}

/* article_b */
.article_b .blog_subbox {
    display: flex;
    flex-direction: column;
    grid-gap: 40px;
}
.article_b .subbox_item a {
    align-items: center;
    grid-template-columns: 500px 1fr;
    grid-gap: 60px;
}
.article_b .subbox_item a:before {
    content: '';
}
.article_b .subbox_item a:after {
    content: '';
    position: absolute;
    top: 50%;
    bottom: unset;
    left: unset;
    right: 0;
    transform: translateY(-50%);
    background-image: url(
    https://pic03.eapple.com.tw/pmpm/pm_arrow_circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 50px;
    border: 0;
    aspect-ratio: 1 / 1;
    opacity: 1;
}
.article_b .blog_list_le {
    overflow: hidden;
    aspect-ratio: 16/9;
}
.article_b .blog_list_ri {
    width: calc(100% - 200px);
    line-height: 220%;
}

/* article_b --hover*/
.subbox_item a::after,
.subbox_item a:hover::after {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.article_b .subbox_item a:hover .blog_list_ri {
    opacity: .7;
}
.article_b .subbox_item a:hover::after {
    background-image: url(
    https://pic03.eapple.com.tw/pmpm/pm_arrow_circleG.svg);
}

@media screen and (max-width: 1200px) {
    .article_b .subbox_item a {
        grid-template-columns: 400px 1fr;
        grid-gap: 30px;
    }
    .article_b .blog_list_ri {
        width: calc(100% - 120px);
    }
}

@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: 0;
    }
    .article_b .subbox_item a {
        grid-template-columns: 320px 1fr;
    }
    .article_b .blog_list_ri {
        width: calc(100% - 80px);
    }
}

@media screen and (max-width: 768px) {
    .blog_search input[type=search] {
        -webkit-appearance: none;
    }
    .blog_le .accordion {
        flex-direction: column;
    }
    .blog_le .accordion > li {
        width: 100%;
    }
    .accordion li .link a {
        padding: 5px 10px;
    }
    .article_b .subbox_item a {
        grid-template-columns: 1fr;
    }
    .article_b .subbox_item a:after {
        display: none;
    }
    .article_b .blog_list_ri {
        width: 100%;
    }
    .blog_in_page .blog_ri {
        padding: 20px 30px;
    }
}

@media screen and (max-width: 480px) {
    .blog_list_ri h5 {
        font-size: 18px;
    }
}

/* = = = 影片分享 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.video_content {
    flex-direction: column;
}
.video_menu_list {
    width: 100%;
}
.video_menu_list>ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-top: solid 1px #d8d8d8;
    padding-top: 10px;
}
.video-layer-two > li {
    width: calc(100% / 6 - 10px);
    border: 0;
}
.video-layer-two li a {
    color: var(--color1);
    background: transparent;
    border: 0;
}
.video_menu_list+.video-list {
    max-width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 40px 40px;
}
.video-list .vidTitle {
    color: var(--color1);
}
.vidDesc {
    color: #b6b6b6;
}

/* hover */
.video-layer-two li a:hover {
    color: var(--color3);
}
.video-layer-two li a,
.video-layer-two li a:hover {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}

@media screen and (max-width: 768px) {
    .video_menu_list>h5,
    .video_menu_list a.vd_menu_toggle {
        color: var(--color1);
    }
    .video_menu_list>h5 {
        font-size: 20px;
    }
    .video-layer-two > li {
        width: 100%;
    }
    .video-layer-two li a {
        padding: 3px 16px;
    }
}

/* = = = 聯絡我們 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.contact_page * {
    color: var(--color1);
}
.blank_letter {
    position: relative;
    width: fit-content;
    font-family: var(--Mainfont);
    font-size: 26px;
    font-weight: 600;
    color: var(--color3);
}
/* .blank_letter::after {
    content: '';
    position: absolute;
    left: -110px;
    bottom: -55px;
    width: 200px;
    height: 187px;
    background-image: url(https://pic03.eapple.com.tw/pmpm/pm_shinny.jpg);
    background-size: contain;
    aspect-ratio: 200 / 187;
    z-index: -1;
    animation: shinny_title 1s infinite cubic-bezier(0.37, 0.22, 0.4, 0.89) alternate;
    mix-blend-mode: screen;
} */

/* 左-聯絡資訊 */
.contact_content .information_left {
    display: none;
}

/* 右-表單 */
.contact_form {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 50px; */
}
.contact_content .information_right {
    width: 100%;
}
.contact_content .information_right .blank_letter:before {
    content: '請詳細填寫需求，我們將盡快與您聯繫～';
    display: block;
    font-size: 16px;
    color: var(--color3);
    opacity: .8;
    margin-bottom: 20px;
}
.red {
    color: #e92928;
}
.star {
    font-size: 20px;
}
.contact_form {
    grid-gap: 30px;
}
.contact_form li {
    grid-template-columns: 200px 1fr;
}
.contact_form li .form__label {
    max-width: 200px;
    text-align: left;
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(100%, 1fr));
    grid-row-gap: 20px;
}
.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: rgb(255 255 255 / 10%);
    border: 0;
    padding: 15px;
}
.noborder:focus {
    outline: none;
}
.contact_form li.last {
    /* width: 100%;
    flex-direction: row;
    justify-content: center;
    grid-column: span 2; */
}

/* 送出按鈕 */
.contact_form li.last blockquote,
.contact_form li.last cite {
    width: 150px;
}
.contact_form li.last cite {
    position: relative;
    height: 44px;
    font-size: 14px;
    color: var(--color4);
    background: var(--color1);
    border-radius: 7px;
    overflow: unset;
    color: #fff;
}
.contact_form li.last cite:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .8rem;
    z-index: -1;
    background: var(--color1);
}
.contact_form li.last blockquote input {
    text-decoration: underline;
    padding: 7px 30px;
}
.contact_form li.last cite input {
    color: var(--color4);
    padding: 4px 50px;
}
.contact_form li.last cite i {
    display: none;
}
.contact_form li.last blockquote {
    border: 0;
}


/* hover */
.contact_form li.last cite:hover:after {
    -webkit-animation: ripple 1.8s cubic-bezier(.3,0,.1,1) infinite 0.0001s;
    animation: ripple 1.8s cubic-bezier(.3,0,.1,1) infinite 0.0001s;
}
.contact_form li.last cite:after, 
.contact_form li.last cite:hover:after {
    transition: .4s cubic-bezier(0.45, 0.26, 0.89, 0.7);
}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {
    letter-spacing: 2px;
}


@media screen and (max-width: 600px) {
    .contact_form {
        grid-gap: 20px;
    }
    .contact_form li {
        grid-template-columns: 1fr;
        grid-gap: 2px;
    }
    .contact_form li .form__label {
        background: transparent;
    }
    .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
        grid-row-gap: 10px;
        padding-left: 15px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* TOP按鈕 */
#to_top {
    left: unset;
    right: 10px;
    height: 120px;
    font-family: var(--Mainfont);
    font-size: 12px;
    font-weight: bold;
    color: var(--color3);
    letter-spacing: 1px;
    background: transparent;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    overflow: hidden;
    margin-bottom: 25px;
}
#to_top i.top {
    position: relative;
    width: 15px;
    height: 80px;
    margin-bottom: 5px;
    overflow: hidden;
}
#to_top i.top:before {
    width: 2px;
    height: 100%;
    background: var(--color3);
    position: absolute;
    left: 4px;
    top: 100%;
    transform: rotate(0deg);
    -webkit-animation: pagetop-line__anim 3.5s linear 0s infinite;
    animation: pagetop-line__anim 3.5s linear 0s infinite;
}
#to_top i:after {
    display: none;
}

@keyframes pagetop-line__anim {
    0% {
        opacity: 0;
        top: 100%;
    }
    5% {
        opacity: 1;
        top: 100%;
    }
    95% {
        opacity: 1;
        top: -100%;
    }
    100% {
        opacity: 0;
        top: -100%;
    }
}

/* 手機版置底按鈕 */
/* #bottom_menu li a {
    color: #fff;
}
#bottom_menu li:nth-of-type(1) {
    background: #4D4D4D;
}
#bottom_menu li:nth-of-type(1) a {
    color: #fff;
}
#bottom_menu li:nth-of-type(2) {
    background: #90A183;
}
#bottom_menu li:nth-of-type(3) {
    background: #99C681;
} */


 /* 開啟手機板下方按鈕所需設定 */
@media screen and (max-width: 768px) {
    #to_top { 
        bottom:65px;
    }
    .footer.with_shopping_mode { 
        padding:30px 0 70px; 
    }
    #bottom_menu {
        display: none;
    }
    #bottom_menu li:nth-child(1) {
        background: ;
    }
    #bottom_menu li:nth-child(2) {
        background: ;
    }
    #bottom_menu li:nth-child(3) {
        background: ;
    }
    #bottom_menu li a {
        color: #fff;
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--------內頁BANNER 設定----------*/

.banner {
    height: 26vw;
    background-color: inherit;
    background-image: url(https://pic03.eapple.com.tw/pmpm/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.banner h5 {
    font-family: var(--Mfont);
    font-size: 30px;
    color: #fff;
    letter-spacing: 0.5rem;
}
.banner h5:after {
    content: "";
    display: block; 
    position: relative;       
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000;    
}

/*促銷方案*/
.banner.banA {}
.banner.banB {}

/*聯絡我們*/
.banner.banC {}

/* 匯款通知 */
.banner.banD {}

/*相簿管理/作品展示*/
.banner.banE {}

/*商品展示*/
.banner.banF {}

/*文章管理*/
.banner.banblog {}

@media screen and (max-width: 768px) {
    .banner h5 {
        font-size: 26px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */









