@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #fe6e38;  color: #fff;}
::selection{  background-color: #fe6e38;  color: #fff;}
:root {
    --MainColor: #FFA500;
    --SubColor:#fadd43;
    --SubColor02: #1c69aa;
    --SubColor03: #f6077e;
    --darkorange:#FF8C00;
    --logocolor:#fe6e38;
    --SFontEN: "Poppins", sans-serif;
    --TitleColor:var(--logocolor);
    --FontColor:#1D1D1D;
    --f75: 75px;
    --f58: 58px;
    --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;}
/*div#page{overflow: hidden;}*/
.main_part {    padding: 80px 30px;}


/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 10px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
  /* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #fff3e8; }

  /* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #FF8C00; }
  /* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #fe6e38; }

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.pageIndex .prod_part.i_video_box {    display: none;}
.pageIndex .header_area{    position: fixed;}

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area, .header_area.sticky {
    background: #f7be16;
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    /* background-size: 200% 200%; */
    background-image: linear-gradient(45deg, #f7be16, #f7e616, #FFA500, #e73cae, #c9fff0);
    background-size: 400%;
    animation: bganimation 15s infinite;
    padding: 0;
}
.header_area.sticky  { box-shadow: 0 0 32px rgba(9, 53, 94, 0.17);}
/*.header_area:before {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(-45deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0));
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
    -webkit-animation: sector3 7s cubic-bezier(.7,0,.3,1) infinite forwards;
    animation: sector3 7s cubic-bezier(.7,0,.3,1) infinite forwards;
    pointer-events: none; 
}*/

.navigation {    grid-template-columns: 100px 1fr 360px;    align-items: center;}
.nav-header {    grid-row: 1 / span 1;}
.main_header_area .container {    max-width: 95%;}

.main_header_area {    position: relative;}
/*.main_header_area:before {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(-45deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0));
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -webkit-animation: sector1 5s cubic-bezier(.7,0,.3,1) infinite forwards;
    animation: sector1 5s cubic-bezier(.7,0,.3,1) infinite forwards;
    pointer-events: none; 
    
}
.main_header_area:after {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(-45deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0));
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    -webkit-animation: sector2 6s cubic-bezier(.7,0,.3,1) infinite forwards;
    animation: sector2 6s cubic-bezier(.7,0,.3,1) infinite forwards;
    pointer-events: none; 
}*/

@keyframes bganimation {
    0%{                background-position: 0% 50%;            }
    50%{                background-position: 100% 50%;            }
    100%{                background-position: 0% 50%;            }
}

@keyframes sector1 {
    0% {        -webkit-transform: rotate(-3deg);        transform: rotate(-3deg)    }
    50% {        -webkit-transform: rotate(17deg);        transform: rotate(17deg)    }
    to {        -webkit-transform: rotate(-3deg);        transform: rotate(-3deg)    }
}
@keyframes sector2 {
    0% {        -webkit-transform: rotate(-5deg);        transform: rotate(-5deg)    }
    50% {        -webkit-transform: rotate(15deg);        transform: rotate(15deg)    }
    to {        -webkit-transform: rotate(-5deg);        transform: rotate(-5deg)    }
}

@keyframes sector3 {
    0% {        -webkit-transform: rotate(-6deg);        transform: rotate(-6deg)    }
    50% {        -webkit-transform: rotate(14deg);        transform: rotate(14deg)    }
    to {        -webkit-transform: rotate(-6deg);        transform: rotate(-6deg)    }
}

/*上方選單右邊設定 臉書/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 {    order: 3;}
.me_tp_features a {    color: #fff;    text-shadow: 0 0 4px black;}

/*logo*/
.nav-brand img {
    max-width: 100%;
    filter: drop-shadow(0px 0px 5px var(--SubColor));
    -webkit-animation: shining 1s alternate infinite;
    animation: shining 1s alternate infinite;
    padding: 5px;
}
@keyframes shining {
        0% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        30% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        31% {            filter: drop-shadow(0px 0px 5px #FF8C00);        }
        32% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        36% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        37% {            filter: drop-shadow(0px 0px 5px #FF8C00);        }
        41% {            filter: drop-shadow(0px 0px 5px #FF8C00);        }
        42% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        85% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        86% {            filter: drop-shadow(0px 0px 5px #FF8C00);        }
        95% {            filter: drop-shadow(0px 0px 5px #FF8C00);        }
        96% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
        100% {            filter: drop-shadow(0px 0px 5px var(--SubColor));        }
    }


/*第一層*/
.stellarnav ul {    text-align: left;    padding-left: 2%;}
.stellarnav > ul > li > a {
    font-weight: bold;
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    /* background-image: linear-gradient(to right, #efec10 45%, #ffffff 55%); */
    /* background-position: 100% 50%; */
    /* background-repeat: no-repeat; */
    /* background-size: 220% 100%; */
    color: #fff;
    display: block;
    transition: .4s cubic-bezier(0.390,0.575,0.565,1.000);
    padding: 0 18px;
    line-height: 50px;
    height: 44px;
}

.stellarnav > ul > li:hover > a {
    color: #fff;
    transition: .4s cubic-bezier(0.390,0.575,0.565,1.000);
    /*animation-duration: .6s;
    animation-fill-mode: forwards;
    animation-name: filteranim;
    animation-timing-function: cubic-bezier(0.390,0.575,0.565,1.000);
    background-position: 0 50%;*/
}
.stellarnav > ul > li > a b:nth-child(2) {
    text-transform: uppercase;
    font-family: var(--SFontEN);
    color: #0736ab;
    color: #ffffff;
    text-shadow: 0 0 6px rgba(182, 211, 207, 0.9), 0 0 30px rgb(0 243 217 / 30%), 0 0 12px rgb(255 255 255 / 50%);
    -webkit-animation: shining 0.1s alternate infinite;
    animation: shining 0.1s alternate infinite;
}

/*下拉線條箭頭*/
.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 #fff #fff transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*第二層*/
.stellarnav ul ul {
    padding-left: 0;
    border: 3px solid;
    border-image-source: linear-gradient(to right, #8f41e9, #578aef);
    border-image-slice: 1;
    /* border-image: linear-gradient(45deg, gold, deeppink) 1; */
    clip-path: inset(0px round 0px);
    animation: huerotate 6s infinite linear;
    filter: hue-rotate(360deg);
    width: 180px;
    background: linear-gradient(45deg, #7900ff, #14a4ff);
}
@keyframes huerotate {
    0% {       filter: hue-rotate(0deg);    }
    100% {     filter: hue-rotate(360deg);    }
}
.stellarnav li li {    border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 15px 10px;
    transition: all 0.3s;
    font-weight: 600;
    color: #ffffff;
}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    /*background-image: linear-gradient(323deg, #f7be16, #f7e616, #FFA500, #e73cae, #4740f7);
    background-size: 400%;
    animation: bganimation 15s infinite;*/
    text-shadow: 0 0 7px #fff, 0 0 2px #fff, 0 0 10px #f6077e;
    /*background: var(--SubColor);*/
    padding-left: 15px;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:0 0 4px #fff, 0 0 8px #fff, 0 0 12px #f6077e, 0 0 20px #f6077e, 0 0 30px #f6077e
    }
    20%, 24%, 55% {               text-shadow: none;    }
}

/*下拉第二層箭頭*/
.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個--結束 */

/*footer*/
.footer {
    padding: 80px 0 0;
    background: #fadd43;
    position: relative;
    background: linear-gradient(59deg, #102199, #5500ef 35%, #e5c727 68%, #ff7600 88%);
    overflow: hidden;
}
.footer::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(35deg, #0000 1px, #0000 2px, #000 2px, #000 51px, #0000 51px, #0000 52px, #000 52px, #000 80px), repeating-linear-gradient(-35deg, #fff 1px, #fff 2px, #000 2px, #000 51px, #fff8 51px, #fff8 52px, #000 52px, #000 80px);
    mix-blend-mode: screen;
    background-size: 200% 200%;
    opacity: .5;
    animation: blink 3s infinite;
    animation-delay: .5s;
    animation-duration: 1s;
}
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(35deg, #0000 1px, #0000 2px, #000 2px, #000 51px, #0000 51px, #0000 52px, #000 52px, #000 80px), repeating-linear-gradient(-35deg, #fff 1px, #fff 2px, #000 2px, #000 51px, #fff8 51px, #fff8 52px, #000 52px, #000 80px);
    mix-blend-mode: screen;
    animation: blink 3s infinite;
    animation-delay: 1.2s;
    animation-duration: 1s;
    z-index: -1;
}
@keyframes blink {
    0%, 100% {        opacity: 0;    }
    50% {       opacity: 1;    }
}

.footer .center {    max-width: 1400px;  }
.footer_info {
    grid-template-columns: 200px 1fr 350px;
    padding-right: 80px;
    align-items: start;
    justify-items: end;
    grid-gap: 0 20px;
}
.footer_logo {    max-width: 180px;}
.footer_logo img {
    filter: drop-shadow(0px 0px 5px var(--SubColor));
    -webkit-animation: shining 1.2s alternate infinite;
}

.footer_info li p, .footer_info li p a {
    color: var(--logocolor);
    font-weight: bold;
    padding: 2px 0;
    font-size: 15px;
    color: #fff;
}

.footer_info li:nth-child(1) {    padding-top: 0;}
.footer_info li p:nth-child(1) {    padding-top: 12px;}
.footer_info li:nth-child(1):before {
    content: "contact";
    color: var(--logocolor);
    font-weight: bold;
    text-transform: uppercase;
    font-size: var(--f20);
    color: #fff;
}
.box_link {
    max-width: fit-content;
    position: relative;
    order: 1;
    flex-direction: row;
    padding-top: 35px;
    grid-column: -1 / span 1;
}
.box_link:before {
    content: "FOLLOW US";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--logocolor);
    font-weight: bold;
    font-size: var(--f20);
    color: #fff;
}

.box_link a:hover {
    background: transparent;
    /* color: #ffffff; */
    box-shadow: 0 0 20px 10px hsl(23.84deg 100% 51.64% / 64%);
}
.box_link a {
    border-radius: 100%;
    border-color: #ffffff;
    height: 40px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 6px;
    transition: .5s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
    overflow: hidden;
}

.box_link a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, #3f00ff, transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}
.box_link a:hover:before {
    transform: translateX(100%);
}

.footer_menu {    display: none;}
.copy {
    background-image: linear-gradient(45deg, #f7be16, #f7e616, #FFA500, #e73cae, #c9fff0);
    background-size: 400%;
    animation: bganimation 15s infinite;
    padding: 20px;
    border: none;
    font-size: 11px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.copy a{ color: #fff;}



/*浮動按鈕*/
.info_fix {    z-index: 999;}
.linksBtn {    display: none;}
.info_fix_links {    display: flex !important;}
.info_fix_links a {
    position: relative;
    padding: 0.75rem 1.5rem;
    margin: 1rem;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    background-color: var(--darkorange);
    border: 1px solid #ff8c00;
    border-radius: 50px;
    box-shadow: 0 0.1px 0.7px #ff8c0057, 0 0.1px 1.7px #ffa500b8, 0 0.3px 3.1px #ffa500, 0 0.4px 5.6px #ffa500, 0 0.8px 10.4px #ffa500c9, 0 2px 25px #FFA500;
    outline: transparent;
    overflow: visible;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: 0.25s;
}
.info_fix_links a:hover {
    background: var(--darkorange);
    color: white;
    transition: transform ease-in 0.1s, background-color ease-in 0.1s, box-shadow ease-in 0.25s;
}

a.info_fix_default.info_fix_phone, a.info_fix_default.info_fix_mail {    display: none;}
a.info_fix_default.info_fix_ig {    order: 4;}
a.fix_map img {
    width: 30px;
    height: 30px;
}

a.info_fix_default.info_fix_tel {    order: 1; }
a.info_fix_default.info_fix_line {    order: 2; }
a.info_fix_default.info_fix_fb {    order: 3;}
a.fix_map {    order: 5;}

.info_fix_links a:after {
    content: "\f005";
    position: absolute;
    font-family: fontAwesome;
    font-size: .5em;
    color: #ffe200;
    animation: rotate-stars 2.4s linear infinite;
    right: -6px;
    top: -5px;
}
.info_fix_links a:before{
    content: "\f005";
    position: absolute;
    font-family: fontAwesome;
    font-size: .75em;
    color: var(--darkorange);
    opacity: 0;
    z-index: -1;
}

.info_fix_links a:hover:before{    animation: rotate-particle 2.4s linear infinite; opacity: 1;}
a.info_fix_default.info_fix_line:after {    animation-delay: .5s;}
a.info_fix_default.info_fix_ig:after  {   animation-delay: .8s;}

@keyframes rotate-stars {
    0% {        transform: rotate(0deg) scale(0)    }
    50% {        transform: rotate(180deg) scale(3); opacity: .5;    }
}
@keyframes  rotate-particle {
    0% {
        scale: 1;
        opacity: 0;
        rotate: 0deg
    }

    50% {
        scale: 1;
        opacity: 1;
        rotate: 180deg
    }

    100% {
        scale: 0;
        opacity: 0;
        rotate: 360deg;
        filter: drop-shadow(-150px 0 #ff423c)drop-shadow(150px 0 #ff0edf)drop-shadow(0 150px #3cff9d)drop-shadow(-150px 0 #ffd13c)
    }
}

@keyframes twinkle{
0% {    transform: scale(.8);    opacity: 1;}
100% {    transform: scale(1);    opacity: .5;}
}

/*聯絡我們*/
.contact_content .information_left {    display: none;}
.contact_editbox {    padding: 0;}
.contact_content {
    text-align: center;
    padding: 50px 0 80px;
    /* background: #fadd433b; */
    position: relative;
    overflow: hidden;
}
.contact_content:before {
    content: "";
    position: absolute;
    top: 35%;
    right: -10vw;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    width: 60vw;
    background: #fadd43c7;
    box-shadow: -30vw 9vh 0 0 #f6077ecc, -50vw -31vh 0 8vw #54afe4a8;
    filter: blur(10rem);
    z-index: -1;
    opacity: .5;
    transform-style: preserve-3d;
    transform: rotateZ(21deg) rotateX(181.435deg);
    animation: rotatebg 3s infinite ease-in-out;
}
@keyframes rotatebg{
0% {    transform: rotate(-10deg);}
50% {    transform: rotate(10deg);}
100% {    transform: rotate(-10deg);}
}
.contact_content .information_right {    width: 100%;    max-width: 1500px;}
.contact_form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 5px 10px;
    letter-spacing: 1px;
}
.contact_form li {
    border: none;
    width: 100%;
    padding: 10px;
}
.contact_form li .form__label {
    width: 100%;
    margin: 0;
    padding: 0 0 10px;
    line-height: 160%;
    text-align: justify;
    font-weight: 700;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.contact_form li input.noborder, .contact_form li textarea.noborder {
    border: none;
}
.contact_form li:nth-last-child(-n+3) {    grid-column: span 2;}

.blank_letter {
    text-align: center;
    color: var(--logocolor);
    font-size: var(--f32);
}
.contact_form li.last {    justify-content: center;}


/*按鈕*/
.contact_form li.last blockquote, .contact_form li.last cite {
    margin: 10px;
    text-transform: uppercase;
    transition: .5s;
    text-decoration: none;
    box-shadow: 0 0 20px #ffffff;
    border-radius: 10px;
    white-space: nowrap;
    outline: none;
    border: none;
    position: relative;
}
.contact_form li.last blockquote {
    border: 3px solid #00dbde;
    cursor: pointer;
    user-select: none;
    background-size: 200% auto;
    color: #fff;
    background: #0e283138;
    backdrop-filter: blur(5px);
}
.contact_form li.last cite {
    background-size: 200% auto;
    color: #fff;
    background-image: linear-gradient(to right, rgb(252, 0, 255) 0%, #00dbde 51%, rgb(252, 0, 255) 100%);
}
.contact_form li.last cite:hover {    background-position: 100%;}
.contact_form li.last blockquote:hover, .contact_form li.last cite:hover {    box-shadow: 0 0 20px 10px #00dbde8f;}
.contact_form li.last blockquote:hover {    background: #00dbde;}

.contact_form li.last blockquote:before, .contact_form li.last cite:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 50%;
    width: 180px;
    height: 100%;
    transition: all 1s cubic-bezier(0.05,0.83,0.43,0.96);
    background: url(https://pic03.eapple.com.tw/xinwangfans/btn_star.svg);
    transform: translateX(-50%) scale(0);
    pointer-events: none;
    bottom: 0;
    right: 0;
    opacity: 0;
}
.contact_form li.last blockquote:hover:before, .contact_form li.last cite:hover:before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.animated-arrow {
    background: var(--logocolor);
}

/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {    width: 100%;}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

.bannerindex02 {
    width: 100%;
    position: relative;
    top: 100px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    max-width: 100%;
    width: 100% !important;
    margin: auto;
    background-position: right;
    padding: 0px;
    padding-bottom: 36%;
    height: 0;
    position: relative;
    background: repeat center center var(--SubColor) ;
    background-image: linear-gradient(179deg, #00000000 40%, rgb(141 41 11 / 33%) 65%), url(https://pic03.eapple.com.tw/xinwangfans/02team-ban.jpg);
    z-index: 1;
    overflow: hidden;
}
.banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(179deg, #00000000 40%, rgb(141 41 11 / 33%) 65%), url(https://pic03.eapple.com.tw/xinwangfans/02team-ban.jpg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation-name: oxxo;
    animation-duration: 5s;
    background-size: cover;
    background-position: center;
}

.banner.banC:before {
    background-image: linear-gradient(179deg, #00000000 40%, rgb(141 41 11 / 33%) 65%), url(https://pic03.eapple.com.tw/xinwangfans/ban-c.jpg);
    background-position: center;
}
.video_page .banF:before {
    background-image: linear-gradient(179deg, #00000000 40%, rgb(141 41 11 / 33%) 65%), url(https://pic03.eapple.com.tw/xinwangfans/ban-pro.jpg);
    background-position: center;
}
.product_page .banF:before {
    background-image: linear-gradient(179deg, #00000000 40%, rgb(141 41 11 / 33%) 65%), url(https://pic03.eapple.com.tw/xinwangfans/ban-f.jpg);
    background-position: center;
}
.banner.banblog:before {
    background-image: linear-gradient(179deg, #00000000 40%, rgb(141 41 11 / 33%) 65%), url(https://pic03.eapple.com.tw/xinwangfans/ban-c.jpg);
    background-position: center;
}
.banner.banC:before {
    background: url(https://pic03.eapple.com.tw/xinwangfans/01about_scroll.jpg) left center repeat-x;
    background-position: center;
    animation: leftMove01 linear 120s infinite;
}
@keyframes leftMove01 {
0% {background-position-x: 0;}
100% {background-position-x: -12280px;}
}

@keyframes oxxo {
    0% { transform: scale(1.1); }
    100% { transform: scale(1);}
}

.banner h5 {
    font-size: var(--f36);
    color: #ffffff;
    background: transparent;
    letter-spacing: .5rem;
    font-weight: bold;
    padding-top: min(max(10vw, 38vw), 35vw);
    line-height: 1;
}
.banner h5:before {
    content: "xinwang";
    display: block;
    --neon-text-light: rgba(255, 255, 255, .25);
    --neon-text-color: #04f;
    font-size: var(--f75);
    font-family: var(--SFontEN);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    position: relative;
    z-index: -1;
    /* background: linear-gradient(to right, purple, red, orange, yellow, green, blue, purple, red, orange, yellow, green, #0000ff, purple); */
    /* background-size: 200%; */
    /* background-clip: text; */
    /* -webkit-background-clip: text; */
    /* background-position: left; */
    color: transparent;
    /* animation: animate 5s infinite linear; */
    mix-blend-mode: hard-light;
    -webkit-text-stroke: 2px #fff;
    text-shadow: -0.2rem -0.2rem 1rem var(--neon-text-light), 0.2rem 0.2rem 1rem var(--neon-text-light), 0 0 2rem var(--neon-text-color), 0 0 4rem var(--neon-text-color), 0 0 6rem var(--neon-text-color), 0 0 8rem var(--neon-text-color), 0 0 10rem var(--neon-text-color);
}
.banner.banC h5:before {    content: "contact";}
.banner.banblog h5:before {    content: "news";}
.video_page .banF h5:before {    content: "PORTFOLIO";}
.product_page .banF h5:before {    content: "Product";}

@keyframes animate {
100% {    background-position: right;}
}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.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:1800px;}
/* .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;}

.product-layer-two li a {
    border: none;
    background: transparent;
    color: var(--logocolor);
    font-weight: 900;
}

.products-list .pic {    transition: all .5s;}
.products-list .pic:after {
    background-image: url(https://pic03.eapple.com.tw/xinwangfans/star.svg);
    content: '';
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    z-index: -1;
    opacity: 0;
    transform-origin: 50% 50%;
    transition: opacity 0.3s;
    position: absolute;
    animation: rotateIt 10s linear infinite;
}
.products-list .item a:hover .pic::after {opacity: .7;}
@keyframes rotateIt {
    to {  	transform: rotate(-360deg);  }
}

.products-list .item a:hover .pic img {
    transition: .8s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-animation:  star-change 5s infinite linear alternate;
}
@keyframes star-change {
    0% {    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);  }
    50% {    clip-path: polygon(50% 10%, 61% 35%, 90% 38%, 68% 57%, 75% 84%, 50% 70%, 25% 84%, 32% 57%, 10% 37%, 39% 35%);  }
    100% {    clip-path: polygon(51% 20%, 61% 35%, 80% 41%, 68% 57%, 71% 76%, 50% 70%, 30% 76%, 32% 57%, 21% 40%, 39% 35%);  }
}

/*顏色*/
.products-list .more {
    border: 1px solid var(--TitleColor);
    color: var(--TitleColor);
}
.products-list .item a:hover .more {    background: var(--TitleColor);}
.products-list .price .sp_price {    text-align: right;    color: var(--TitleColor);}
.products-list .price b {    color: var(--FontColor);}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}

/*按鈕顏色*/
.inquiry_a1{background: var(--SubColor);}
.inquiry_a2{background: var(--SubColor02);}
.inquiry_a3{background: var(--MainColor);}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {    background-color: #ADA17E;}
.lastPage {
    color: #fff;
    background: linear-gradient(45deg, #FFA500, #e73cae);
    border-radius: 10px;
}

/*商品側邊規格*/
.sidebarBtn {    border: none;}
.sidebarBtn .sp_price {    color: var(--TitleColor);}
.product_info li .txt_box {    color: var(--FontColor);    width: 100%;}
.mobile_product_name{font-size: 24px;}

/*相關推薦*/
.prod_related {
    background: #ffffff;
    padding: 60px 30px;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: var(--f28);
    color: var(--TitleColor);
}


@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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.blog_page.article_a .main_part {    max-width: 1800px;}
.blog_subbox{grid-template-columns: 1fr;}
.subbox_item a {
    grid-template-columns: 350px 1fr;
    grid-gap: 30px;
}
.blog_list_le {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}
.subbox_item a:before, .subbox_item a:after {
    content: '';
    display: block;
    position: absolute;
    transition: all .5s;
    pointer-events: none;
    height: 0px;
    border: 4px #b2975700 solid;
    width: 0;
}

.subbox_item a:before {
    right: -1px;
    bottom: -1px;
    border-top: none;
    border-left: none;
}
.subbox_item a:after  {
    left: -1px;
    top: -1px;
    border-bottom: none;
    border-right: none;
        background: transparent;
}
.subbox_item a:hover:before, .subbox_item a:hover:after {
    width: 100%;
    height: 100%;
    border-image: linear-gradient(to right, #f6077e, #578aef);
    border-image-slice: 1;
}

.subbox_item a:hover::before {
    right: 0;
    bottom: 0;
}

.blog_list_ri {    padding: 15px 0;}
.blog_list_ri h5 {
    font-weight: bold;
    color: var(--FontColor);
}


/*文章內層*/
/*文章內層封面*/
.articel_mainPic img{display: none;}
.blog_back a.article_btn_back {    background: var(--MainColor);}
.blog_back a.article_btn_prev {    background: var(--logocolor)}
.blog_back a.article_btn_next {    background: var(--logocolor);}

h5.blog_le_t {
    font-size: var(--f24);
    color: var(--TitleColor);
}
h5.blog_le_t span {
    font-family: var(--SFontEN);
    text-transform: uppercase;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: var(--TitleColor) !important; transition: all .5s;}
.blog_le .accordion {    border: none;    border-radius: 0; transition: all .5s; }
.accordion li+li .link {    border-top: 1px solid #ffa50057;}
.blog_le .accordion li {    position: relative; transition: all .5s;}
.accordion li:before {
    content: " ";
    position: absolute;
    top: 7px;
    right: 0;
    background: url(https://pic03.eapple.com.tw/xinwangfans/blog_star1.svg) no-repeat;
    background-size: contain;
    width: 31px;
    height: 100%;
}
.accordion li:after {
    content: " ";
    position: absolute;
    top: 5px;
    right: 6px;
    background: url(https://pic03.eapple.com.tw/xinwangfans/blog_star2.svg) no-repeat;
    background-size: contain;
    width: 31px;
    height: 100%;
    animation: blink 2s infinite;
    animation-delay: .5s;
}
.accordion li:hover:before {
    -webkit-animation: deco 6s infinite cubic-bezier(0.51, 0.05, 0.15, 0.58);
    animation: deco 6s infinite cubic-bezier(0.51, 0.05, 0.15, 0.58);
}
@keyframes deco {
    0% {
      opacity: 1;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    20% {
      opacity: 0;
      -webkit-transform: rotate(90deg) scale(1.5);
      transform: rotate(90deg) scale(1.5); }
    40% {
      opacity: 1;
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
    100% {
      opacity: 1;
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/

/*文章-相關推薦*/
.news_related {    background: #ffffff;    padding: 60px 30px;;}
.news_related h6 span:before {    font-size: var(--f28);    color: var(--TitleColor);}

/*影片*/
.video_page .main_part {    max-width: 1800px;}
.video-layer-two li a {
    border: none;
    background: transparent;
    color: var(--logocolor);
    font-weight: 900;
}
.video-list {    grid-template-columns: repeat(3, 1fr);}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.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;
    }

    .nav-header {        max-width: 145px;    }

.footer_info ul {    grid-column: span 2;}
.box_link {    grid-column: none;}
    /*.stellarnav ul {
    text-align: center;
    padding-left: 0;
    max-width: 120px;
}*/

}


@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:80px 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;
}
.footer_info {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;

}
.footer_info ul {    grid-column: none;}

.nav-header {        max-width: 120px;    }


}

@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;
    }
}

@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;
    }
}

