@charset "utf-8";


/*網站全域設定/＝＝＝＝＝*/
/*
    #E1D9D0 /*網站主要色系
    #E1CAC5 /*網站輔助色系1
    #f9f6f4; /*網站輔助色系2*/

/*反白顏色*/
::-moz-selection{  background-color: #da6201;  color: #fff;}
::selection{  background-color: #da6201;  color: #fff;}
:root {
    --MainColor:#F2B401;
    --SubColor:#E68A01;
    --logo-blue: #160d42;
    --logo-og:#DA6201;
    --bg-light: #f8f9fa;
    --bg-dark:rgb(70, 70, 70);
    --bg-gray:#97979a;
    --header-gray:#a1a1a1;
    --gray:#cdcdd2;
    --grid-color: rgba(22, 13, 66, 0.05);
    --grid-color: rgb(181 181 181 / 3%);
    --FontColor:#000;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --SFont:"Noto Sans TC", sans-serif;
    --SFontEN: "Inter", sans-serif;
    --f56: clamp(2rem, 1.4rem + 2vw, 3.5rem);
    --f40: clamp(1.75rem, 1.3rem + 1.5vw, 2.5rem); 
    --f36: clamp(1.375rem, 1.3rem + 1vw, 2.25rem); 
    --f32: clamp(1.5rem, 1.2rem + 1vw, 2rem); 
    --f24: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); 
    --f20: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem); 
    --f17: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
    --f15: clamp(0.875rem, 0.83rem + 0.15vw, 0.9375rem); 

}


body {
    background-color: var(--bg-light);
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    color: var(--FontColor);
}
.sb_marquee{display: none;}
.path{display: none;}

/*頁碼
.page strong, .page a:hover {    background: var(--MainColor);}
.page li.activeN {    color: var(--MainColor);}
*/


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.pageIndex .header_area {    position: fixed;}
.header_area {
    background: var(--header-gray);
    transition: var(--transition);
}
.header_area.sticky {
    background: linear-gradient(to bottom, #a1a1a1 5%, #7e7e7edb 100%); transition: var(--transition);
}
.navigation {    grid-template-columns: 150px 1fr;}

/*上方選單右邊設定 臉書/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;}

/*浮動按鈕-展開
.info_fix_links {    display: flex !important;}
.linksBtn {    display: none;}
*/
a.info_fix_default.info_fix_fb, a.info_fix_default.info_fix_phone, a.info_fix_default.info_fix_mail {
    display: none;
}
.fa-map-marker-alt::before {    content: "\f3c5";}
.fa-lightbulb::before {    content: "\f0e6";}
.linksBtn {
    width: 55px;
    height: 55px;
    animation: fb-pulse 2s infinite;
    background: var(--MainColor);
}
.info_fix:hover>.linksBtn {    background: var(--MainColor);}
.info_fix_links a {    background: #0c052dcc;    backdrop-filter: blur(5px);}
.info_fix_links a:hover {    background: #0c052d;}
.fa-map:before {    content:"\f3c5";    font-family: fontAwesome;}

@keyframes fb-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(218 98 1 / 56%);
    }
    70% {
        box-shadow: 0 0 0 10px rgb(218 98 1 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(218 98 1 / 0%);
    }
}
/*電腦LOGO
.nav-brand {}
*/
.nav-brand {    display: flex;}

/*第一層*/
.stellarnav > ul > li {    position: relative;}
.stellarnav > ul > li > a {
    position: relative;
    font-family: var(--SFont);
    font-size: var(--f16);
    font-weight: 400;
    padding: 0 15px;
    transition: var(--transition);
    color: var(--bg-light);
    letter-spacing: 1px;
}

.stellarnav > ul > li > a:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid  var(--MainColor);
    clip-path: polygon(
        0 0, 10px 0, 10px 2px, 2px 2px, 2px 10px, 0 10px,            
        calc(100% - 10px) 0, 100% 0, 100% 100%, calc(100% - 10px) 100%, 
        calc(100% - 10px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), 
        calc(100% - 2px) calc(100% - 10px), calc(100% - 10px) calc(100% - 10px)
    );
    clip-path: inset(calc(100% - 3px) 100% 0 0); 
    transition: var(--transition);
    opacity: 0;
}

.stellarnav > ul > li:hover > a:before {    clip-path: inset(calc(100% - 3px) 0 0 0);     opacity: 1;}

.stellarnav > ul > li:hover > a {    color: var(--MainColor);}

/*下拉線條箭頭*/
.stellarnav li.has-sub>a:after {
    position: absolute;
    top: 38%;
    right: 5px;
    height: 7px;
    width: 7px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent  var(--bg-light)  var(--bg-light) transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*第二層*/
.stellarnav ul ul {
    backdrop-filter: blur(6px);
    background: var(--bg-dark);
}
.stellarnav li li {    border: none;}

.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 10px 9px;
    transition: all 0.3s;
    color: #fff;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    color: #fff;
    padding-left: 15px;
    background: var(--MainColor);
}

/*下拉第二層箭頭*/
.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(--logo-og) var(--logo-og) 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-top: 60px;
    background: var(--bg-dark);
    /* background: radial-gradient(circle at top center, rgba(0, 255, 255, .08), transparent 30%), radial-gradient(circle at bottom right, rgba(0, 140, 255, .12), transparent 35%), linear-gradient(180deg, #0a0620 0%, #0a0620 55%, #0a0620 100%); */
    color: rgba(255, 255, 255, .88);
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* =========================================================
    footer偽元素
========================================================= */
.footer::before {
    content: "";
    position: absolute;
    top: -1%;
    left: -50%;
    width: 200%;
    height: 900px;
    background: url(https://pic03.eapple.com.tw/srbiotech/ft_bg.png) repeat-x;
    background-size: 1600px auto;
    opacity: .12;
    mix-blend-mode: screen;
    transform-origin: center top;
    animation: cyberWaveMove 10s linear infinite, cyberWaveFloat 5s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .95) 30%, rgba(0, 0, 0, .95) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .95) 30%, rgba(0, 0, 0, .95) 70%, transparent 100%);
}

.footer::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: repeating-linear-gradient(90deg, rgba(111, 252, 255, .03) 0px, rgba(111, 252, 255, .03) 1px, transparent 1px, transparent 120px), repeating-linear-gradient(0deg, rgba(111, 252, 255, .025) 0px, rgba(111, 252, 255, .025) 1px, transparent 1px, transparent 120px);
    transform: perspective(1200px) rotateX(78deg) scale(2);
    transform-origin: center top;
    opacity: .5;
    animation: cyberGridMove 12s linear infinite;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .8) 30%, rgba(0, 0, 0, 1) 100%);
}



.footer_info {
    grid-template-columns: 200px 1fr;
    grid-gap: 10px 6vw;
}

.footer_logo img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}

.footer_info li {    padding: 0 10px;}
.footer_info li:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}
.footer_info li:nth-child(1):before {
    content: "頊研生物科技/明儀企業社";
    display: block;
    font-size: var(--f18);
    font-weight: 500;
    padding-bottom: 15px;
    grid-column: span 2;
    color: #fff;
    border-bottom: 1px solid #c9c9c952;
    margin-bottom: 15px;
}
.footer_info li p, .footer_info li p a {
    color: rgba(255, 255, 255, .68);
    transition: .35s;
} 
.footer_info li p:hover {    color: rgba(255, 255, 255, .96);}

.footer_info li p.phone:after {    content: ' (蘇先生)';}
.footer_info li p.line {    display: none;}

.footer_info li:nth-child(2) {    margin-top: 1vw;}
.footer_menu a {
    border-radius: 2px; 
    transition: var(--transition); 
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.footer_menu a:hover {
    color: #fff;
    transform: translateY(-3px);
    background: var(--MainColor);
}

.box_link {
    max-width: 300px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    left: 0;
    top: calc(90px + 0.5vw);
    justify-content: flex-start;
    align-items: center;
}

.box_link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    margin: 3px;
    font-size: 15px;
    border: 1px solid rgb(208 208 208 / 18%);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, .82);
    box-shadow: inset 0 0 0 rgba(111, 252, 255, 0), 0 0 0 rgba(111, 252, 255, 0);
    transition: .45s;
}

.box_link a:hover {
    transform: translateY(-4px);
    border-color: var(--MainColor);
    color: #fff;
    background: rgb(244 195 109 / 8%);
    box-shadow: inset 0 0 20px rgb(245 255 111 / 8%), 0 0 20px rgba(111, 252, 255, .18);
}

/* --- 版權宣告區 (CopyRight) --- */
.copy {
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .015);
    backdrop-filter: blur(10px);
}
.copy a { color: rgba(255, 255, 255, 0.7); }
.copy a:hover { color: var(--MainColor); }

/* =========================================================
   Animations
========================================================= */

@keyframes cyberWaveMove {

    from {

        transform:
            translate3d(0,0,0)
            rotateX(72deg);
    }

    to {

        transform:
            translate3d(-1600px,0,0)
            rotateX(72deg);
    }
}

@keyframes cyberWaveFloat {

    0%,100% {

        transform:
            translate3d(0,0,0)
            rotateX(72deg)
            scale(1);
    }

    50% {

        transform:
            translate3d(0,-25px,120px)
            rotateX(58deg)
            scale(1.03);
    }
}



@keyframes cyberGridMove {

    from {

        background-position:
            0 0,
            0 0;
    }

    to {

        background-position:
            -120px 0,
            0 -120px;
    }
}

@keyframes cyberScan {

    from {

        left: -30%;
    }

    to {

        left: 130%;
    }
}

@keyframes cyberParticles {

    from {

        transform:
            translateY(0);
    }

    to {

        transform:
            translateY(-140px);
    }
}


/*聯絡我們*/
.contact_form li.last cite {    background: #d3af79;}


/* = = = 大圖-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main { margin:0; background-color: var(--bg-light);}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-banner .swiper-slide img {    width: 100%;}

/*例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after

*大圖的指定名稱是從0開始，5張大圖的畫最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]*/

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/*大圖*/
/*
輪播第二次時，偽元素都只有顯示相同的
再請將個別大圖的指定名稱[data-swiper-slide-index="每一張的數字"]寫進去
例如大圖第一張的after:
.bannerindex .swiper-slide[data-swiper-slide-index="0"]:after
大圖的指定名稱是從0開始，5張大圖的話最後一張是4
[data-swiper-slide-index="0"]
[data-swiper-slide-index="1"]
[data-swiper-slide-index="2"]
[data-swiper-slide-index="3"]
[data-swiper-slide-index="4"]
.pageIndex .bannerindex .swiper-slide[data-swiper-slide-index="2"].swiper-slide-active:before{  }
.pageIndex .bannerindex .swiper-slide[data-swiper-slide-index="0"].swiper-slide-active:after {  }
}*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {    background: var(--bg-light);}
.banner h5 {    color: var(--bg-dark);}

.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*促銷方案*/
.news_part {
    padding: clamp(50px, 5.5vw, 100px) 20px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.news_part:before {
    content: "";
    position: absolute;
    background: url(https://pic03.eapple.com.tw/srbiotech/tech_lines2.png) center / contain no-repeat;
    width: 450px;
    height: 200px;
    top: 6vw;
    left: 8vw;
    transform: translate(-50%, -50%) scale(1);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform-origin: center;
    animation: pulse1 3.5s ease-in-out infinite;
}
@keyframes pulse1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

@keyframes pulse2 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

@keyframes pulse3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
}

.news_part:after {
    --banner-ratio: calc(100vw * 2.8 / 9);
    --tech-size: 400px;
    --tech-opacity: 0.35;
    --tech-speed: 90s;
    content: "";
    position: absolute;
    bottom: 1vw;
    right: -6vw;
    width: var(--tech-size);
    height: var(--tech-size);
    background: url(https://pic03.eapple.com.tw/srbiotech/tech_lines.svg) center / contain no-repeat;
    pointer-events: none;
    opacity: var(--tech-opacity);
    will-change: transform, opacity;
    animation: tech-combined var(--tech-speed) linear infinite;
    filter: contrast(120%) brightness(65%) grayscale(90%) hue-rotate(210deg);
    z-index: 9999;
}

@keyframes tech-combined {
    0% {
        transform: rotate(0deg) scale(0.96);
        opacity: calc(var(--tech-opacity) - 0.04);
    }
    12.5% { 
        transform: rotate(45deg) scale(1.04); 
        opacity: calc(var(--tech-opacity) + 0.04); 
    }
    25% {
        transform: rotate(90deg) scale(0.96);
        opacity: calc(var(--tech-opacity) - 0.04);
    }
    37.5% {
        transform: rotate(135deg) scale(1.04);
        opacity: calc(var(--tech-opacity) + 0.04);
    }
    50% {
        transform: rotate(180deg) scale(0.96);
        opacity: calc(var(--tech-opacity) - 0.04);
    }
    62.5% {
        transform: rotate(225deg) scale(1.04);
        opacity: calc(var(--tech-opacity) + 0.04);
    }
    75% {
        transform: rotate(270deg) scale(0.96);
        opacity: calc(var(--tech-opacity) - 0.04);
    }
    87.5% {
        transform: rotate(315deg) scale(1.04);
        opacity: calc(var(--tech-opacity) + 0.04);
    }
    100% {
        transform: rotate(360deg) scale(0.96);
        opacity: calc(var(--tech-opacity) - 0.04);
    }
}
.news_part .title_i_box h4 {
    /* color: var(--bg-light); */
    color: var(--MainColor);
    font-size: var(--f36);
    text-align: left;
    position: relative;
}

.news_part .title_i_box h4:before {
    content: "TOPICS";
    display: block;
    font-family: var(--SFontEN);
    font-size: var(--f20);
    color:  var(--bg-light);
}
.news_list ul li a:hover {    background: transparent;}

.news_list ul li {    border-bottom: 1px #eeeeee24 solid;}
.news_list ul li a {    position: relative;}
.news_list ul li p {
    color: #fff;
    font-size: var(--f17);
}
.news_list ul li a:hover p {    color: #fff;}

.news_list ul li p:after {
    content: '→';
    color: var(--gray);
    text-transform: uppercase;
    right: 10px;
    border: 1px solid #ffffff63;
    padding: 3px;
    border-radius: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 12px;
    font-weight: 900;
    font-family: var(--SFont);
}
.news_list ul li a:hover p:after {
    right: 15px;
    background: var(--gray);
    color: var(--FontColor);
}
.news_list ul li a:after {
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.3);
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s;
    /* z-index: -1; */
}
.news_list ul li a:hover:after {width: 100%;}

.i_news_b {
    max-width: 100%;
    text-align: right;
}
.animated-arrow {
    margin-top: 40px;
    border-radius: 50px;
    background-color: var(--MainColor);
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: right;
    margin-left: auto;
}
.animated-arrow:before {
    content: "";
    position: absolute;
    top: -60%;
    left: -25%;
    width: 150%;
    height: 200%;
    background-color: var(--logo-blue);
    border-radius: 50% 50% 45% 45%;
    pointer-events: none;
    opacity: 0.5;
    animation: btn-out 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    opacity: 1;
}
.animated-arrow:hover::before {
    animation: btn-hover 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.animated-arrow b, .i_news_b a:hover i.fa-solid.fa-arrow-right {
    position: relative;
    z-index: 1;
}
.animated-arrow:hover b {    color: #fff;}
.animated-arrow b {    color: #222;    transition: all .3s;}

.i_news_b a i.fa-solid.fa-arrow-right {
    width: 30px;
    height: 30px;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 0;
}
.i_news_b a:hover i.fa-solid.fa-arrow-right {
    background: #fff;
    color: #333;
}

@keyframes btn-hover { 
    0% {
        transform: translate(0,76%) rotate(6deg);
    }
    100% {
        transform: translate(0,0) rotate(0deg);
    }
}
@keyframes btn-out { 
    0% {
        transform: translate(0,0) rotate(0deg);
    }
    100% {
        transform: translate(0,-80%) rotate(-6deg);
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 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;}

/*顏色*/
.products-list .more {    border: 1px solid #ADA17E;    color: #ADA17E;}
.products-list .item a:hover .more {    background: #ADA17E;}

/*購物車/內層＝＝*/
.product_info_page .main_part {    width: 90%;}

/*按鈕顏色*/
.inquiry_a1{background: #cbc0a0;}
.inquiry_a2{background: #bdab77;}
.inquiry_a3{background: #ADA17E;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{background: #222;}
.lastaction {    color: #ADA17E;    background-color: #f2f2f2;}
.nextaction {    background-color: #ADA17E;}
.lastPage {    background: #ADA17E;}

/*商品側邊規格*/
.product_info li .txt_box {    color: #222222;    width: 100%;}
.sidebarBtn .sp_price {   color: #cbc0a0;}
.mobile_product_name{font-size: 24px;}

/*相關推薦*/
.prod_related h6 span:before{font-size: 28px;}



@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
    .payment_form {    flex-direction: column;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
/*3個一排
.blog_subbox {    grid-template-columns: repeat(3, 1fr);} 
*/


/*文章內層*/
/*文章內層封面
.articel_mainPic img{display: none;}*/
.blog_back a.article_btn_back {    background: var(--logo-og);}
.blog_back a.article_btn_prev {    background: var(--MainColor);}
.blog_back a.article_btn_next {    background: var(--MainColor);}

/*文章標籤
.news_tags {    flex-wrap: wrap;}*/


/*文章-相關推薦*/
.news_related {
    background: #f3f3f3;
    padding: 25px 15px;
}
.news_related h6 span:before {
    font-size: 24px;
    color: #6d7980;
}
.lastPage {    color: #fff;    background: #ADA17E;}


/* = = = 相簿-分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*.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;
    }
}


@media screen and (max-width: 768px) {
    :root {
        --f54: 36px;
        --f48: 32px;
        --f42: 30px;
        --f40: 28px;
        --f36: 26px;
        --f32: 24px;
        --f28: 20px;
        --f24: 20px;
        --f20: 18px;
        --f18: 17px;
        --f17: 16px;
    }

/* 開啟手機板下方按鈕所需設定
#bottom_menu {display: block; } */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
#bottom_menu li:first-child:nth-last-child(2), #bottom_menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
    display: block;
    float: left;
}

/*漢堡選單*/
.stellarnav.mobile.left > ul {    border: none;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: var(--MainColor); color: #fff;
}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {    border-bottom: solid 2px #ffffff;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {    border-bottom: solid 2px var(--logo-og);}/*下拉關掉*/
.stellarnav.mobile li.open {    background: var(--bgcolor);}/*下拉*/

ul.show-list, .pic-list {    grid-template-columns: repeat(2, 1fr);}
.blog_subbox {    grid-template-columns: repeat(2, 1fr);}
}


@media (max-width:600px) {
    :root {
        --f54: 32px;
        --f48: 28px;
        --f42: 26px;
        --f40: 24px;
        --f36: 22px;
        --f32: 20px;
        --f28: 18px;
        --f24: 18px;
        --f22: 18px;
        --f20: 17px;
        --f18: 16px;
        --f17: 15px;
        --f16: 15px;
    }
    ul.show-list, .pic-list {    grid-template-columns: 1fr;}

        /*聯絡我們表單*/
    .contact_form li {    grid-gap: 0;}
    .contact_form li .form__label {    background: transparent;}
}

@media (max-width:375px) {
    :root {
        --f54: 28px;
        --f48: 24px;
        --f42: 22px;
        --f40: 20px;
        --f36: 18px;
        --f32: 18px;
        --f28: 17px;
        --f24: 17px;
        --f22: 17px;
        --f20: 16px;
        --f18: 15px;
    }
}


