@charset "utf-8";





/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #eee;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #000000;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}
/*反白顏色*/
::-moz-selection{  background-color: #444;  color: #fff;}
::selection{  background-color: #444;  color: #fff;}
:root {
    --MainColor: #f1ffef;
    --SubColor:#444444;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.bannerindex {
    animation: bannerAssemble 2s ease-out forwards;
    background-position: center;
    background-size: cover;
    filter: grayscale(100%) brightness(0.5) blur(10px);
    transform: scale(1.3) rotate(-10deg);
    opacity: 0;
}

@keyframes bannerAssemble {
    0% {
        opacity: 0;
        filter: grayscale(100%) blur(10px);
        transform: scale(1.3) rotate(-10deg);
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }

    60% {
        opacity: 1;
        filter: grayscale(50%) blur(4px);
        transform: scale(1.05) rotate(2deg);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        opacity: 1;
        filter: grayscale(0%) blur(0);
        transform: scale(1) rotate(0deg);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*開場*/
.nav-header { opacity: 1;}

.pageIndex .nav-header { opacity: 0; animation: banner-nav-logo 0.7s forwards; animation-delay: 0.5s;}

@keyframes banner-nav-logo {
    0% {
        top: 87px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}


.pageIndex .stellarnav.desktop { opacity: 0;animation: banner-navbar 0.7s forwards;animation-delay: 0.5s;}
.stellarnav.desktop { opacity: 1; z-index: 0;}

@keyframes banner-navbar {
    0% {
        top: 97px;
        opacity: 0;
    }

    100% {
        top: 0px;
        opacity: 1;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:relative; margin:0; height:auto;}
.swiper-slide img { height:auto;}
.swiper-slide {position: relative;}
.swiper-slide:before ,.swiper-slide:after { content: ""; position: absolute;  z-index: 999; pointer-events:none;}




.pageIndex .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/ktrspeed/banner01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -18%;
    left: 55%;
    width: 40%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.43);
}

.pageIndex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/ktrspeed/banner01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 20%;
    left: 29%;
    width: 40%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.43);
}

.swiper-slide.swiper-slide-active:nth-child(1):before { animation: fade-in-elegant  1.8s ease-in-out both;}
.swiper-slide.swiper-slide-active:nth-child(2):before {animation: slide-in-left 1.8s ease-in-out both;}





  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background-color: #141414;
    background-repeat: no-repeat;
    background-size: cover;}
#content_main {

    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background-color: #141414;
    background-repeat: no-repeat;
    background-size: cover;}

#to_top {
    position: fixed;
    left: 10px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0%;
    background-color: #000000; 
    animation: glowFlash 2s ease-in-out infinite;
}


@keyframes glowFlash {
    0%, 100% {
        background-color: #000000;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        background-color: #000000;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

    #to_top i:before, #to_top i:after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 100px;
        background: #ffffff;
        transition: all 100ms ease-in-out;}
        


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

/*Main/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*Header/＝＝＝＝＝*/
/*首頁*/

.pageIndex .main_header_area {
    transition: all .3s;}
.pageIndex .header_area .main_header_area {
    position:relative;
    width: 100%;
    transition: all 0.3s;
    background: #ffffff00;}
    

.pageIndex .header_area.sticky .main_header_area {
        background: #00000069;
        transition: all 0.3s;
    }


/*其他分頁*/

.header_area {position: fixed;z-index: 9999; padding: 0px;background: #da251c00; width: 100%;}
.main_header_area {
    background: #000000b3;}
.main_header_area .container {
        max-width: 85%;
        transition: all 0.3s;}


.header_area.sticky .main_header_area .container {
            max-width: 80%;
            transition: all 0.3s;}

.header_area.sticky {
    background:#000000b3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 1px 1px 5px rgba(169, 169, 169, 0.3);
    backdrop-filter: blur(50px);
}


 .swiper-banner:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; }

 .swiper-pagination-bullet {
        display: none; }


/*第一層*/


/*首頁文字顏色*/
.pageIndex .stellarnav  ul  li  a {    color: #ffffff;}
.pageIndex .stellarnav ul li a {
    color: #ffffff; /* 初始文字顏色 */
    text-decoration: none; /* 移除底線 */
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease;
    font-weight:bold;
}

.pageIndex .stellarnav ul li a {
    background: linear-gradient(90deg, #da251c 0%, #da251c 50%, #ffffff 50%, #ffffff 100%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* 使用透明文字色以顯示背景漸變 */
    transition: background-position 0.3s ease;
}

.pageIndex .stellarnav ul li:hover a {
    background-position: left bottom; /* hover 時由左至右的漸變效果 */
    color: transparent; /* 確保文字透明以顯示漸變 */
    font-weight:bold;
}

/*首頁sticky文字顏色*/
.pageIndex .header_area.sticky a {color: #ffffff;}


/*其他分頁文字顏色*/
.stellarnav > ul > li > a {padding: 0 10px 0 0;color: #ffffff;font-weight:bold;font-size: 17px; line-height: 30px;height: 30px;}
.stellarnav ul li a {
    color: #ffffff; /* 初始文字顏色 */
    text-decoration: none; /* 移除底線 */
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease;
    font-weight:bold;
}

.stellarnav ul li a {
    background: linear-gradient(90deg, #da251c 0%, #da251c 50%, #ffffff 50%, #ffffff 100%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* 使用透明文字色以顯示背景漸變 */
    transition: background-position 0.3s ease;
}

.stellarnav ul li:hover a {
    background-position: left bottom; /* hover 時由左至右的漸變效果 */
    color: transparent; /* 確保文字透明以顯示漸變 */
    font-weight:bold;
}



.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position: relative;}
.me_tp_features {    position: relative;    right: unset;    top: unset;    width: fit-content;padding: 5px 0 0 0;}

.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {
    color: #da251c;}

 .pageIndex .me_tp_features a {color: #ffffff;}
 .pageIndex .me_tp_features .sticky a {color: #da251c;}

.me_tp_features a {color: #ffffff;}
.me_tp_features a:hover {color: #da251c;}

.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li>a {
    color: #da251c;
    letter-spacing: 3px;
    padding: 25px 7px;
}
.tp_links{display: none;}
.shop_search_btn {
    background: #da251c;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 12px;
    cursor: pointer;
    height: 100%;
}
.nav-menu>li.focus>a {
    color: #da251c;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #da251c;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;
      
        position: absolute;
        top: 20%;
        right: 5px;
        transform: translateY(-50%);}   


.navigation {     padding: 20px 0px 20px 300px;}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    justify-items: end;}
/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0 1px 1px 0;
            border-color: transparent #ffffff #ffffff transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

.sticky .stellarnav li.has-sub > a:after {
           border-color: transparent #ffffff #ffffff transparent; }

/*下拉+隱藏*/
.stellarnav > ul > li > a.dd-toggle {display: none;}

/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    padding: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #da251c;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #ffffff;}




/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#000000;
    border-radius: 0 0  6px 6px;
    padding: 7px;
    box-shadow: 0px 3px 10px 0px rgb(0 0 0 / 12%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    width: 180px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #ffffff;
    font: bold ;
    letter-spacing: .1rem;
}
.stellarnav li li > a ,
.stellarnav li li.has-sub > a {
    padding: 7px 5px;
    border-left: 2px solid transparent ;
}

/*hover欄位樣式-向右滑動*/
.stellarnav li.has-sub ul li a:hover{
    color:#da251c;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
    background: transparent;
    letter-spacing: .1rem;
    position: relative;
    color: #fff;
}


/*logo*/
.pageIndex .header_area .nav-brand {
    max-width: 100%;
  }

.pageIndex .header_area.sticky .nav-brand {
    filter: none !important;
}


.header_area .nav-brand {
    transition: all 0.3s;
    margin-top: 10px;}

.header_area.sticky .nav-brand {
        max-width: 100%;
        }
   
/* = = = 頁尾 = = = =  = = = = = = = = */


/*換圖*/
.footer {
    padding: 60px 0 0;
    font-size: 14px;
    background: url(https://pic03.eapple.com.tw/ktrspeed/footer.jpg) no-repeat, #000000;
    background-position: center;  /*位置*/
    background-size: cover ; /*尺寸*/
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;
    background-position:60%}


   
/*換logo*/
.footer_logo img {width: 0;}
    
.footer_logo {
    background: url(https://pic03.eapple.com.tw/ktrspeed/footerlogo.png) no-repeat center;
    height: 58px;
    max-width: 250px;
    width: 100%;
    margin-top: 10px;
    background-size: contain;
    animation: logoSlideLeftToRight 4s ease-in-out infinite;
}

html, body {
    overflow-x: hidden;
}


@keyframes logoSlideLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    15% {
        opacity: 1;
        transform: translateX(0);
    }
    70% {
        opacity: 1;
        transform: translateX(0);
    }
    85% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}





/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


.footer .center {
    position: relative;
    max-width: 90%;
    padding: 60px 0;
    font-size: 13px;
}
.footer_info {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
    position: relative;
    flex-direction: column;
    gap: 10px;
    font-family: var(--SFontE);
}

.footer_info ul {
    position: relative;
    border-top: 1px solid #ffffff;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
}
/* 聯絡資訊 */
.footer_info li{
    padding: 0;
}
.footer_info li p {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    color: #ece9e3;
}
.footer_info li p a{
    color: #ece9e3;
}

p.phone{display:none}


/* 網頁連結 */
.footer_info li:nth-child(2) {
 right: 0;
    top: 0;
}
.footer_menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.footer_menu a:first-child{
    display: none;
}
.footer_menu a {
    color: #8a9593;
    background: transparent;
    border: 0;
    letter-spacing: 1.25px;
    margin: 0 0 10px;
    transition: all .3s cubic-bezier(.165,.84,.44,1);
}

.footer_menu a:hover {
    background: transparent;
    color: #ece9e3;
}



/**/
.copy {background:transparent; color: #ffffff; border:none; padding: 10px 0;margin: 10px 0 0;}
.copy a{color: #ffffff;transition:all 0.3s;}
.copy a:hover {color: #a0a0a0;}

.box_link {
    position: absolute;
    top: 0%;
    right: 0px;
    width: auto;
    max-width: 150px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 100%;
    justify-content: flex-end;
    z-index: 10;
}

.box_link a{border: 0px #ffffff00 solid;    color: #8a8a8a;}
.box_link a:hover {
    border: 0px #fff solid;
    color: #fff;
}




/*上方選單右邊設定 臉書/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 {}
*/
/*按鈕*/
.animated-arrow {
    border-radius:20px;
    background: #da251c;
    color: #fff;
    display: inline-block;
    margin-top: 20px;

    height: 50px;
    line-height: 50px;
    overflow: hidden;
    width: 250px;

    text-align: center;
    position: relative;}

/*頁碼*/
.path p, .path p a {
 display: none;}


 /*下拉頁面隱藏下方選單*/
body.other_select_page .promotion_title {display: none;}
body.other_select_page .other_promotion { display: none;}
body.other_select_page .page {display: none;}
/* = = = banner = = = =  = = = = = = = = */
.banner.banB { display: none;}
.banner.banA { display: none;}
.banner.banC {display: none;}
.banner {
    background: url(https://pic03.eapple.com.tw/ktrspeed/banner.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 80vw;
    max-height: 550px;}

.banner h5 {color:#ffffff;     font-weight: 700;}
    
 @media screen and (max-width: 768px) {
.banner {
                background: url(https://pic03.eapple.com.tw/ktrspeed/banner.jpg);
                height: 276px;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                background-size: cover;
                background-position: center;
                overflow: hidden;
                background-size: cover;}
                
.banner h5 {
                    color: #ffffff;
                    font-size: 26px;
                    font-weight: 700;
                    margin-top:20%;
    
            }}


/* = = = 購物車 = = = =  = = = = = = = = */  

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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.active a {
    font-weight: bold;
    border: 0px #ccc solid;}
.product-layer-two li a {
    position: relative;
      color: #da251c;
    border: 1px #da251c solid;
    background-color: #da251c00;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
   }

.product-layer-two li:hover a {    

   background: #da251c;
    color:#ffffff; border: 0px #191919 solid;}

.product-layer-two li li a{ padding:5px 10px;background-color: #f3f3f32b;}
.product-layer-two li li:hover > a { background:#fff; color:#191919;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; 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%;
    background: transparent;
    padding: 20px;}

.product-layer-two li li:hover{ margin-left: 15px; border-bottom:1px dotted #ccc;}
.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:#191919;}

.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;}

#prod_thumbSwiper .swiper-slide{padding-top: calc(25% - 2px); position: relative;}
#prod_thumbSwiper img{position: absolute; left: 0; top: 0;}
/*外層*/
.products-list .more {
    border: 1px solid #da251c;
    color: #da251c;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}
.products-list .item a:hover .more { border: 0px solid #da251c;
    background-color: #da251c;}


/*內層*/
#prod_thumbSwiper .swiper-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000036;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #da251c;}
    element.style {
        color: #da251c;}
/*產品資訊內文*/
element.style {
    color: #da251c;}
.pd_tabInner_contain {
        padding-top: 20px;
        color: #da251c;}
/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #da251c;}
/*標題*/
.sidebarBtn h2 {
    color: #191919;
    font-size: 24px;}
.sidebarBtn .price {
        color: #191919;
        font-size: 22px;}
 .sidebarBtn .sp_price {
            display: block;
            color: #bd2424;
            font-size: 22px;
            font-weight: bold;}
/*加入詢價*/
.inquiry_a1 {
    background: #4d4d4d;}

.inquiry_a2 {
        background: #939393;}
 .inquiry_a3 {
            background: #333;}

 .inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {
            letter-spacing: 2px;
            background: #a5a5a5;}

            

/*詢價頁面*/

.rewrite_simple {
    background: #da251c url(../images/simple_left.png) 10% center no-repeat;
}

.send_simple {
    background: #af9474 url(../images/simple_right.png) 88% center no-repeat;
}
 /*底*/   
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 0px #dddddd00 solid;
    background: transparent;
}

/*內文*/
 .product_info li span {
                display: block;
                font-size: 12px;
                color: #999999;
                margin-bottom: 3px;
                font-family: Arial, Helvetica, sans-serif;
                letter-spacing: 1px;}


 /*底下相關商品*/       
.prod_related {
                    background: #a1a1a170;
                    padding: 25px 15px;}
 .prod_related h6 span:before {
                        content: '相關推薦';
                        font-size: 24px;
                        color: #191919;}


/* = = = 相簿 = = = =  = = = = = = = = */

.show-list .item:hover .show_name
 { color: #da251c;
}
/*尺寸改照原本尺寸*/
.pic-list .show_pic img {
    max-width: 100%;
    display: block;
    width: auto;
    height: auto;
    object-fit: cover;
}
                     
/* = = = 文章管理 = = = =  = = = = = = = = */
       
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #ffffff;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}
/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #ffffff;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
    .accordion li:hover .link a {
        cursor: pointer;
        display: block;
        padding: 15px 10px;
        color:  #a7a7a7;
        font-size: 14px;
        font-weight: 700;
        position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #c0c0c041 !important;}  
/*右側文章排版*/
.blog_subbox {

        padding: 5px;
        display: flex ;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        flex-wrap: wrap;}
/*標題*/
.blog_list_ri h5 {
    font-weight: 900;
    font-size: 20px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #7b7b7b;
    font-style: normal;
    display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #ffffff;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
/*內文hover*/
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#19191970;
        opacity: 0;
        transition: all .5s;
       transition: all 0.3s ease; }
 .subbox_item a:before {
            content: 'READ MORE';
            position: absolute;
            z-index: 19;
            bottom: 10px;
            right: 10px;
            opacity: 0;
            font-size: 15px;
            color: #ffffff;
            transition: all .6s;}
.subbox_item a:hover:after{ 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); 
    background: #00000003;  }
/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #ffffff;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
    font-weight: 500;
}
.blog_box_edit * {
    line-height: 150%;
    color:  #ffffff;}
/*文章圖片*/
.articel_mainPic img {
    display: block;
    max-width: 50%;}
/*分享文字*/
.toShareNews {
        font-size: 1em;
        background-color: transparent;
        color:  #a1a1a1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #676767;}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #696969;}
/*相關文章*/
.news_related {
    background: #000000;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #ffffff;}

.news_related_list li a {
    display: block;
    padding: 4px;
    background: #4b4b4b;
    height: 100%;
    transition: all 0.3s ease; /* 平滑過渡 */
}

.news_related_list li a:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); /* 白色光暈 */
    background: #5b5b5b; /* 可選：hover 時稍微變亮 */
}

.news_related_list li a p {
    font-size: 15px;
    color: #ffffff;
    line-height: 2;
}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #191919;
        padding: 10px 20px;
        display: block;
        margin: 40px auto;
        width: 130px;
        text-align: center;}
/*首頁-文章管理*/
.module_i_news li a:after {    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgb(8 8 8 / 90%);
    opacity: 0;
    border: 1px #ddd solid;}
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4{   font-size: 32px;
    color: #fff;}
/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
    .i_blog_ri em {
        font-size: 14px;
        color: #858585;
        font-style: normal;
        display: block;
        margin: 7px 0;}  
 /*內文*/
 .i_blog_ri p {
    font-size: 15px;
    color: #ffffff;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}  
    
    

 /*隱藏文章封面圖片*/
 .articel_mainPic img{display: none;}

@media screen and (max-width: 1024px) {
.module_i_news ul {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 1000px) {
.module_i_news .title_i_box h6 {font-size: 50px;}


}
@media screen and (max-width: 768px) {	
.module_i_news ul, .blog_subbox { grid-template-columns: 1fr;}
.module_i_news .title_i_box h4 { font-size: 30px;}  

/*產品頁面*/
.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_menu_list>h5 {color: #da251c;font-size: 18px;padding: 10px;}
.product_menu_list>h5 a { width: 100%;height: 100%;position: absolute;right: 0; top: 0; bottom: 0;text-align: right;display: flex; align-items: center;align-content: center; justify-content: center;}
a.pd_menu_toggle {width: 100%; height: 100%;position: absolute;right: 0; top: 0;bottom: 0; display: flex; align-items: center;align-content: center;justify-content: center;border: 1px #da251c solid;border-radius: 20px;}

/*產品內頁-標題名稱*/
.mobile_product_name { display: block;margin-bottom: 10px;color: #da251c;}
/*產品資訊*/
.sidebarBtn {padding: 15px;display: inline-block; width: 100%;vertical-align: top; border: 0px #dddddd00 solid;}
/*上方購物車*/
.me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice {
            display: inline-block;}
/*購物車內頁*/
.inquiry_a1 {background: #4d4d4d;}
.inquiry_a2{display: none;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {letter-spacing: 2px;background: #a5a5a5;} 
  
.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: 500px) {	

.blog_list_le { width: 100%;}
.blog_list_ri { width: 100%;padding: 5px;}
.blog_list_ri p { margin-top: 0px;}
.blog_list_ri h5{font-size:20px;}
.module_i_news .title_i_box h6 {font-size: 18px;}


}


.contact_form li.last cite {
    background: #da251c;
    color: #fff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 

/*大圖*/
.swiper-banner .swiper-slide img {width: 100%;height: auto;}



@media screen and (max-width: 1400px) {
.container {max-width: 1200px;transition: all 0.3s;}
/* footer */
.footer_info { margin: auto; }
}

 @media screen and (max-width: 1100px) {
/*表單*/
.contact_form li .form__label { width: 100%; margin-left: 0;text-align: left;font-weight: bold;padding: 5px;background: #da251c1f;}
                
.main_header_area .container .navigation {    grid-template-columns: 1fr;}
.main_header_area .container .navigation> *{grid-row:unset;grid-column:unset;text-align: center;}
.nav-menu>li>a {padding: 10px 0px;}
.pageIndex .header_area {position: relative;width: 100%;}
.header_area.sticky {position: fixed;top: 0;left: 0;width: 100%;z-index: 9999;}

.pageIndex .header_area .main_header_area , .pageIndex .header_area.sticky .main_header_area{    background: #000000;}
.stellarnav  ul  li:hover  a {color: #da251c; font-weight:bold ;}
.stellarnav ul li a { color: #ffffff;}
.pageIndex .stellarnav ul li a { color: #ffffff;}
.pageIndex .header_area.sticky a {color: #ffffff;}
.sticky .stellarnav li.has-sub > a:after { border-color: transparent #da251c #da251c transparent;}
.stellarnav ul {margin: 0; padding: 0;text-align: center;}
.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {width: 100%;text-align: center; margin-bottom: 7px;}

 /* footer */
 .footer_info { grid-template-columns: 1fr;text-align: center;position: relative;}
.footer_logo {position: relative;left: unset; width: 100%;max-width: 220px; font-size: 0; transform: unset;}
.footer_logo a { position: relative;display: block;width: 100%;}
.footer_info ul {grid-template-columns: 1fr;gap: 20px; }
.footer_info li+li{ margin-top: 0;}
.footer_menu { display: flex; margin-left: auto;flex-direction: row; flex-wrap: wrap;justify-content: center; }
.footer_menu a {margin: 0; border: none;background: transparent; width: fit-content;transition: all 0.3s;font-size: 12px;}    

/*logo*/
.nav-brand img {transition: all 0.3s;text-align: center; }
.nav-brand img {max-width: 80%;}
.navigation {grid-template-columns: 200px 1fr;grid-gap: 0 20px;align-content: stretch;justify-content: center;align-items: center;justify-items: center}
.tp_links {display: none;}}


@media screen and (max-width: 980px) {
.footer_info li:nth-child(1),   .footer_info li:nth-child(2) { width:100%;}
}
@media screen and (max-width: 768px) {.bannerindex { padding:0; margin:0;}
/* footer */
.footer_logo{background-position: center top;}
.footer_info { align-items: center;}
.footer_info ul{ flex-direction: column-reverse; margin-top: 20px; }
.footer_menu { border-bottom: 1px solid #fbfbfb1a;padding-bottom: 10px;}
.footer_info li p{ text-align: center; }
.box_link { display: none;}
.footer.with_shopping_mode { padding: 30px 0 60px;}

 /*側邊選單*/
.main_header_area .container {max-width: 95%;transition: all 0.3s;}
.header_area.sticky .main_header_area .container {max-width: 95%;transition: all 0.3s;}
.stellarnav > ul > li > a {border-right: 0px solid #da251c;}
.header_area.sticky { backdrop-filter:none;}
 /*menu*/
.stellarnav .menu-toggle span.bars span {display: block;width: 24px;height: 2px;border-radius: 6px;background: #da251c; margin: 0 auto 4px;}
.stellarnav .menu-toggle:after {content: 'MENU';font-size: 12px;color: #da251c;display: block;transform: scale(0.9);}
 .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {position: fixed;top: 0; bottom: 0;width: 100%;max-width:100%; overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;z-index: 9999;border-right: 0px #da251c solid;background:#000000;}
.stellarnav.mobile li.open { background: #000000;}
.stellarnav.mobile ul {background: #000000;}
.pageIndex .stellarnav ul li a {color: #ffffff;    border-right: 0;}
.stellarnav li {text-align: left;}
.stellarnav.mobile > ul > li > a { text-align: left;}
.stellarnav ul li:hover a {color: #da251c !important;    border-right: 0;}
.stellarnav.mobile li a { border-bottom: 0px solid rgba(255, 255, 255, .15);}
.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile {display: inline-block;padding: 15px 7px;}

/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {display: inline-block;text-align: right;font-size: 12px;background: #da251c;color: #ffffff;}
.stellarnav .icon-close:after {content: '';display: block;width: 12px;height: 0px;top: 50%;border-bottom: solid 3px #ffffff;position: absolute;transform: rotate(-45deg);}
.stellarnav .icon-close:before {content: '';display: block; width: 12px;height: 0px;border-bottom: solid 3px #ffffff;position: absolute;top: 50%;transform: rotate(45deg);}


#to_top { bottom:60px;}
#bottom_menu li a {  background: #000000;}
 #bottom_menu li a:hover { color: #ffffff;}

/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}}

@media screen and (max-width: 600px) { }



