@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

/*
關於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: #b20000;
}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/*反白顏色*/
::-moz-selection{
    background-color: #818181;
    color: #fff;
  }
  ::selection{
    background-color: #818181;
    color: #fff;
  }

/*大圖********************************* */
/*預設解除背景輪播*/
#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/sunraysfootball/banner01.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 5%;
    left: 45%;
    width: 80%;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.43);
}

.pageIndex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/sunraysfootball/banner02.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -5%;
    left: 10%;
    width: 30% !important;
    height: 100% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
}

.swiper-slide.swiper-slide-active:nth-child(1):after { animation: slide-top 1.5s cubic-bezier(.1,.300,.400,0.2) both}
.swiper-slide.swiper-slide-active:nth-child(1):before { animation: fade-in-elegant  1.8s ease-in-out both;}






  @keyframes slide-top {
  0% {-webkit-transform: translateY(100%); 
            transform: translateY(100%);
            opacity:0;}
  100% {-webkit-transform: translateY(0);
            transform: translateY(0);
            opacity:1;}
}

  @keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}



  
.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
  background: url(https://pic03.eapple.com.tw/sunraysfootball/banner03.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 20%;
    left: 30%;
    width: 40% !important;
    height: 105% !important;
    background-position: left;
    padding-bottom: calc(100% / 1 * 0.12);
    overflow: hidden;
    animation: fade-slide-left 1.5s cubic-bezier(.39, .575, .565, 1.000) both;
}

.pageIndex .bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
    width: 150%;
    height: 100%;
    top: 0;
    left: -150%;
    background: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 15%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 75%, 
        rgba(255, 255, 255, 0) 100% );
    animation: shine-slide 2s linear infinite;
}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}

@keyframes fade-slide-left {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
   50% {
        
        opacity: 0.2;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shine-slide {
    from {
        left: -150%;
    }
    to {
        left: 150%;
    }
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*背景*/
#content {
    min-height: 80vh;
    background: #ffffff; 
    background-size: cover;}
#content_main {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    z-index: 60;
    position: relative;
    margin-top: 100vh;
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;}
body.product_page #content {
    min-height: 80vh;
    background: #ffffff; 
    background-size: cover;}

body.blog_page #content {
    min-height: 80vh;
    background: #ffffff; 
    background-size: cover;}

    #to_top {
    position: fixed;
    left: 0px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #212020;
    border-radius: 0%;
    }
    #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: #b20000;}
    

.pageIndex .header_area.sticky .main_header_area {
        background: #b20000;
        transition: all 0.3s;
    }

/*其他分頁*/
.header_area.sticky .main_header_area {
    background: #b20000;
    transition: all 0.3s;
}
.header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.header_area .main_header_area {
    transition: all 0.3s;
    background-color: #b20000;}

.header_area {position:relative;z-index: 9999;padding: 0px;background: #b20000; width: 100%;}
.main_header_area .container {
        max-width: 1700px;
        transition: all 0.3s;}


 .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;font-weight:bold ;}
.pageIndex .stellarnav  ul  li:hover  a {color: #000000; font-weight:bold ;}


/*首頁sticky文字顏色*/
.pageIndex .header_area.sticky a {color: #ffffff;}
.pageIndex .header_area.sticky a:hover { color:#000000 ;}

/*其他分頁文字顏色*/
.stellarnav > ul > li > a { display: inline-block;
    width: 100px;
    padding: 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    height: 30px;}
.stellarnav  ul  li:hover a {color: #000000; font-weight:bold ;}
.stellarnav ul li a {color: #ffffff;}
.stellarnav > ul > li > a b {font-weight: bold !important;}
.sticky  .stellarnav ul li a {color: #ffffff ;}
.sticky  .stellarnav ul li a:hover  {color: #000000 ;}
.nav-menu {    margin: 0 auto;padding: 0;text-align:center;}
.nav-header {    position:absolute;grid-row:auto;}

/*購物車*/
.me_tp_features {  color: transparent;width: 15%;
    text-align: right;  }
.me_tp_features a.tp_btn_cart span {
        display: none;
    }
.me_tp_features a.tp_btn_notice span {
    display: none;
}  
i.far.fa-envelope{display: none;}
.nav-menu>li:hover>a, .nav-menu>li.active>a, .nav-menu>li.focus>a {color: #ffffff;}


.me_tp_features a {color: #ffffff;}
.sticky .me_tp_features a {color: #ffffff;}
.nav-menu>li:not(.tp_links) {
    padding-right: 15px;
}

.nav-menu>li>a {
    color: #ffffff;
    letter-spacing: 3px;
    padding: 25px 7px;
}


.nav-menu>li.focus>a {
    color: #ffffff;
}
.nav-dropdown>li:hover>a .nav-dropdown>li.focus>a {
    color: #ffffff;
}


.stellarnav li.has-sub > a:after {
        content: '';
        margin-left: 10px;  
        position: absolute;
        top: 40%;
        right: 5px;
        transform: translateY(-50%);}   


.stellarnav {
            position: relative;
            width: 100%;
            z-index: 9900;
            line-height: normal;
            align-items: center;
            flex-direction: row-reverse;
            padding: 0 0 0 100px;}
.navigation {padding: 20px 10px 20px 210px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;}

/*購物車hover*/
.fa-cart-shopping:hover::before {
    color: #ffffff;
}
.fa-credit-card:hover::before{
    color: #E5C136;
}
/*下拉箭頭*/
.stellarnav li.has-sub > a:after {
            height: 8px;
            width: 8px;
            display: block;
            border-style: solid;
            border-width: 0px 2px 2px 0;
            border-color: transparent #ffffff #ffffff transparent;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: border .2s;
            transition: border .2s;    }    

            



/*第二層*/
.stellarnav li li > a , .stellarnav li li.has-sub > a{    color:#000000: 7px 5px;   transition: all 0.3s; }
.stellarnav li li:hover > a , .stellarnav li li.has-sub:hover > a{color: #000000;	padding-left:10px;}
.stellarnav li li.has-sub:hover > a {color: #000000;}
.stellarnav  ul  li:hover  a {color: #000000; font-weight:bold ;}



/*次選單樣式-半透明底色*/
.stellarnav ul ul {
    background:#ffffff;
    border-radius: 6px;
    padding: 10px;
    width: 150px;
}

/*次選單欄位邊框*/
.stellarnav li li {
    border: 0px var(--f3-color) solid;
}

/*次選單文字樣式*/
.stellarnav li a {
    padding: 7px 10px;
    display: block;
    color: #000000 ;
    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:#bebebe ;
    padding-left: 10px;
    font-weight: bold;
}

/*文字底色透明*/
.stellarnav.desktop li.has-sub ul a {
   
    letter-spacing: .1rem;
    position: relative;
}


/*logo*/
.nav-brand img {
    max-width: 100%;
    margin-top: 20px;
}
.sticky .nav-brand img {
        max-width: 100%;
    margin-top: 20px;}

.header_area .nav-brand {
    transition: all 0.3s;
    }

.header_area.sticky .nav-brand {
        max-width: 100%; }



/* = = = 頁尾 = = = =  = = = = = = = = */

/*footer = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.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: 1px #536a65 solid;    color: #8a9593;}
.box_link a:hover {
    border: 1px #fff solid;
    color: #fff;
}
.footer {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    background: #ece9e3;
    z-index: 999;
    background: #141414
}
.footer .center {
    position: relative;
    max-width: 90%;
    padding: 60px 0 0 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_logo{
    background-image: url(https://pic03.eapple.com.tw/sunraysfootball/footerlogo.png) !important;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}
.footer_logo img {
    max-width: 100%;
    filter: brightness(10);
    opacity: 0;
}

.footer_info ul {
    position: relative;
    border-top: 1px solid #fbfbfb1a;
    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 a {
    display: block;
    width: 40px;
    border: 0px #ccc solid;
    border-radius: 5px;
    padding: 5px;
    font-size: 24px;
    text-align: center;
    margin: 2px;
}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #cacaca;  color: #000000;}
.box_link {}



/*上方選單右邊設定 臉書/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 {}
*/

/*內頁BANNER 設定*/


.banner.banA {display: none;}
.banner.banB {display: none;}
.banner.banF {}
.banner.banblog {}
.banner.banC {display: none;}
.banner {
    background: url(https://pic03.eapple.com.tw/sunraysfootball/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: 900;
    font-size: 24px;
}

.banner h5:before {
    display: block;
    font-size: 80px;
   font-family:  "Archivo", sans-serif !important;
    font-weight: 700;
    text-align: center;
    padding-left: 0px;
    color: #ffffff;
    margin-bottom: -10px;
}




.banner h5::after {
    content: "";
    display: block;
    width: 50%;
    height: 4px;
    background-color: #b10000;
    margin: 10px auto 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: underlineExpand 0.6s ease-out forwards;
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


.blog_page .banner h5:before {
    content: 'News';} 

.album_page.album_a .banner h5:before {
    content: 'PHOTO';} 
.album_class_page.album_a .banner h5:before {
    content: 'PHOTO';} 
.album_info_page.album_a .banner h5:before {
    content: 'PHOTO';} 
.product_page .banner h5:before {
    content: 'SHOP';} 
.product_info_page .banner h5:before {
    content: 'SHOP';} 
.blog_in_page .banner h5:before {
    content: 'News';} 
@media screen and (max-width: 768px) {
.banner {
    background-position: 80%;
}
.banner h5:before {

    font-size: 50px;
}}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*頁碼*/
.path p, .path p a {display: none;
    text-align: right;
    line-height: 24px;
    font-size: 13px;
    color: #3d3938;}
    


/*按鈕*/
.animated-arrow {
    background: #ae0010;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    position: relative;
    border-radius: 100px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相簿*/
.show-list .item:hover .show_name {
    color: #b20000;
}
 



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*購物車*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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:hover a { color: #191919; border: 1px #191919 solid;background-color: #acacac;}
.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 #000000;
    color: #000000;
    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 {
    background: #000000 !important;
    color: #fff;
    letter-spacing: 2px;
}
.products-list .name {
    font-size: 15px;
    color: #444;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2em;}

.products-list .price b{
    color: #000000;
    font-sirgb(0, 0, 0)x;
    width: calc(50% - 10px);
}

.products-list .item {
    position: relative;
    background-color: #ffffff;
    padding: 5px;
}
/*左側分類*/

.product-layer-two li a {
    position: relative;
    background: #000000;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px #ffffff solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.product-layer-two > li.active {
    background: #3a3a3a;

}

/*產品資訊標題*/
.pd_tabTitle li.activeTab a {
    color: #000000;}
    element.style {
        color: #ffffff;}
/*產品資訊內文*/
element.style {
    color: #ffffff;}
.pd_tabInner_contain {
        padding-top: 20px;
        color: #ffffff;}
/*右側商品資訊*/
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #ffffff;}
/*標題*/
.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;}


/*左邊商品預覽*/
#prod_thumbSwiper .swiper-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #00000000;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
}
/*加入詢價*/
.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;}
    
 /*底*/   
.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;}
.related_list li a {
    display: block;
    padding: 0px;
    background: #fff;
    height: 100%;
}
/*詢價車*/
/*回產品頁*/
.rewrite_simple {
    background: #9a9a9a url(../images/simple_left.png) 10% center no-repeat;}


/*送出詢價*/
.send_simple {
    background: #828282 url(../images/simple_right.png) 88% center no-repeat;}

.shopping-cart .cart_head {
    background: #c7c5c5;
    color: #fff;
}
/*訂購資料*/
.formbox_form li .form__label {
    display: block;
    width: 100%;
    text-align: left;
    color: #000000;}
.form label {
        display: block;
        position: relative;
        float: left;
        width: auto;
        margin-right: 20px;
        margin-bottom: 5px;
        color: #000000;}
 .form label.Bigcheck {
            float: none;
            display: inline-block;
            color: #000000;
            font-size: 15px;
            margin-left: 20px;
            top: 5px;}
 .declaration {
                background: #b9b9b9;
                line-height: 40px;
                padding: 5px 15px;}
 .shopping-cart .cell.product_name p {
        width: calc(100% - 90px);
        color: #000000;}
 .shopping-cart .cell {
            padding: 10px;
            text-align: center;
            width: 20%;
            font-size: 16px;
            letter-spacing: 1px;
            padding: 5px;
            color: #000000;}
 .total_amount li b {
                font-weight: normal;
                color: #000000;}
.total_amount li span {color:#000000;}


.total_amount li {
    margin: 10px 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    color: #000000;}
.total_amount li .couponData, .total_amount li .transFree {
        color: #ff4f4f;}
.send_simple:hover{background-color:#7a7a7a}
.rewrite_simple:hover{background-color:#7a7a7a}






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*文章管理*/
h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #000000;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 7px;}
/*側邊標題*/
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color:  #000000;
    font-size: 14px;
    font-weight: 700;
    position: relative;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #97979799  !important;}  
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border: 1px #000000 solid;
    overflow: hidden;
    border-bottom: 1px #000000 solid;
    border-left: 0;
    border-right: 0;
    border-top: 0;
border-radius:0px}

/*右側文章排版*/
.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: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;}
/*時間*/
.blog_list_ri em {
    font-size: 14px;
    color: #9d9c9c;
    font-style: normal;
    display: block;}
/*內文*/
.blog_list_ri p {
    font-size: 15px;
    color: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}
.blog_subbox {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-gap: 20px;
    }
/*內文hover*/
.subbox_item a {
        display: flex;
        grid-template-columns: 160px 1fr;
        position: relative;
        grid-gap: 20px;
        flex-direction: column;}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 15px;
    color: #999;
    transition: all .6s;}
.subbox_item a:before {
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: -15%;
    letter-spacing: 2px;
    opacity: 0;
    display: block;
    color: #fff;
    background: #000000;
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;}
 .subbox_item a:hover:before {bottom: -6%;}

.subbox_item a:hover:before, .subbox_item a:hover:after {
        opacity: 1;
        transition: all .5s;
    }
 .blog_subbox * {
        transition: all 0.6s ease;
    }
.subbox_item a:after {
        content: '';
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 8;
        background:#c9c8c870;
        opacity: 0;
        transition: all .5s;}

/*文章*/
/*文章內頁*/
h4.blog_category_title {
    color: #3d3938;
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 20px;
}
.blog_box_edit * {
    line-height: 150%;
    color:  #3d3938;}

body.blog_in_page.article_a .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.articel_mainPic img {
    display: none;
    max-width: 100%;
}
body.blog_in_page.article_a .blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #06060699 !important;}  

body.blog_in_page.article_a  h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #000000;}



 /*第二顆文章按鈕*/
 body.blog_in_page.article_b .accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}


body.blog_in_page.article_b .blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #06060699 !important;}  

body.blog_in_page.article_b  h5.blog_le_t {
    font-size: 24px;
    font-weight: 500;
    color:  #000000;}   

/*分享文字*/
.toShareNews {
        font-size: 1em;
        color:  #a1a1a1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;}
/*文章按鈕*/
.blog_back a.article_btn_back {
        background: #51504e;}


.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
            background: #51504e;}
/*相關文章*/
.news_related {
    background: #bebebe40;
    padding: 25px 15px;}
.news_related h6 span:before {
        content: '相關文章';
        font-size: 24px;
        color: #000000;}
/*按鈕*/
.lastPage {
        font-size: 16px;
        color: #fff;
        background: #51504e;
        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:#bebebe40;
    opacity: 0;
    border: 0px #3d3938 solid;}
.module_i_news li a:before{
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    color: #000000;
    transition: all .6s;}
    
/*首頁-文章顯示*/
 .module_i_news li:nth-child(n+5){
        display:none !important;}
/*標題*/

.module_i_news .title_i_box h4{   
     font-size: 24px;
    color: #000000;
    font-weight: bold;
    letter-spacing: 3px;}

.module_i_news .title_i_box h6 {
    font-size: 50px;
    color: #212121;
    font-family: "Archivo", sans-serif;
}

/*文章標題*/
.i_blog_ri h5 {
    font-weight: 500;
    font-size: 20px;
    color: #3d3938;
    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: #3d3938;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;}       

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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: #2d2d2d; 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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




@media screen and (max-width: 768px) {

/*文章*/
.path p, .path p a {
    text-align: left;}
    

}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*側邊按鈕*/

.linksBtn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #FFFFFF;
    background-color: #333333;
    transition: .3s;
    font-size: 20px;
    border-radius: 0px;
}

.info_fix_links a {
    display: flex;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 0px;
    transition: .3s;
    background: rgb(0 0 0 / 29%);
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
}

.fa-lightbulb::before {
    content: "\f0eb";
}


/*******************************************/
.contact_editbox {
    margin: auto;
    padding: 0px;}
    
/*聯絡我們MAP區改滿版編輯區*/
.contact_content {    width: 100%;padding: 0; margin-top: -30px;}
.contact_page .main_part {    max-width: 100%;    padding: 0;}
.contact_page .path {    display: none;}
.contact_content .information_left {    width: 100%;    padding: 0;}
.contact_content .information_right {       width: 90%;
    margin: 0px auto;
    padding: 0 10px;
    display: block;}
.contact_content .information_left > h4.blank_letter {    display: none;}
.contact_content .list_before {    width: 100%;		max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(li:last-of-type) {    display: none;}
.contact_content .list_before.info > li:last-of-type {    padding: 0;    margin: 0;display:none;}
@media screen and (max-width: 768px) {.contact_content .information_right {    margin: 50px auto;}}
/**/
/*電腦版表單最大寬度設定*/
.contact_content .information_right {    max-width: 1500px;}
/**/
/*******************************************/
/*表單*/
.contact_form li.last cite {
    background: #000000;
    color: #fff;
}

.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #000000 solid;
    width: 150px;
    max-width: calc(50% - 10px);
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main { margin:0;}

.bannerindex { position:static; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}
/*大圖*/
.swiper-banner .swiper-slide img {
    width: 100%;
    height: auto;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

@media screen and (max-width: 1600px) {
.stellarnav > ul > li > a {
    display: inline-block;
    width: 100px;
}
/*表單*/
.contact_form li .form__label {
                    width: 100%;
                    margin-left: 0;
                    text-align: left;
                    font-weight: bold;
                    padding: 5px;
                    background: rgb(129 129 129 / 15%);
                }
/* footer */
    .footer_info {
        margin: auto;
    }
}

@media screen and (max-width: 1300px) {

/*Header/＝＝＝＝＝*/
.navigation {    padding: 10px;}
.main_header_area .container .navigation {
        grid-template-columns: 1fr;
        display: grid;
        justify-content: center;
        justify-items: center;
        align-items: center;
    }
.main_header_area .container .navigation> * {
        grid-row: unset;
        grid-column: unset;
        text-align: center;
    }

.nav-header {
        position: static;
        text-align: center;
    }

.stellarnav {

    padding: 0px;
}
.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: center;
}
/*logo*/
.nav-brand img {
    max-width: 100%;
    margin-top: 0px;
}
.header_area .nav-brand {
        transition: all 0.3s;
        margin-top: 10px;
        width: 100%;}
}



 @media screen and (max-width: 1200px) {  
     
    
    /* 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_info li:nth-child(2) {
        /* padding: 15px 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;
    }    

    }
 @media screen and (max-width: 980px) {
    

.stellarnav > ul > li > a {font-size: 16px;}
.main_header_area .container .navigation {
    grid-template-columns: 1fr;
}
.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: #b20000;}

.pageIndex .stellarnav  ul  li:hover  a {font-weight:bold ;}

.nav-menu>li>a {    padding: 15px 0px;letter-spacing: 2px;}
.me_tp_features {
    width: 20%;
    text-align: center;
    margin-bottom: 7px;}
/*logo*/
.nav-brand img {
        transition: all 0.3s;
        text-align: center; }
.nav-brand img {max-width: 80%;}



.tp_links {display: none;}

.footer_info li:nth-child(1),   .footer_info li:nth-child(2) { width:100%;}
}

@media screen and (max-width: 768px) {
    .pageIndex .header_area {
        display: block;
        opacity: 1;
        animation: unset;}
    .main_header_area {
        overflow: visible;
    }
    body.home .main_header_area {
        overflow: visible !important;
        position: static !important;
        z-index: auto !important;
    }
    
    .main_header_area {
        overflow: visible !important;
        z-index: auto !important;
    }
      

    .nav-header {
        position: static;
        text-align: center;
    }
    .stellarnav {padding: 0px;}
/*logo*/
.sticky .nav-brand img {
    max-width: 100%;
    margin-top: 10px;
}
.nav-brand img {
    max-width: 100%;
    margin-top:10px;
}
 /*側邊選單*/
 /*menu*/
  .stellarnav  ul  li:hover  a {color: #b20000; }
  .pageIndex .header_area.sticky a:hover {
    color: #b20000;}
   .pageIndex .stellarnav ul li:hover a {
    color: #b20000;}
  .header_area.sticky a:hover {
    color: #b20000;}
    .sticky .stellarnav ul li a:hover {
    color: #b20000;
}

.stellarnav > ul > li > a {width: 100%;
}

 .navigation {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    grid-gap: 0 20px;
    justify-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;}
 .me_tp_features {
    display: none;}

 .header_area.sticky .main_header_area {
    background: #b20000;;}
 .stellarnav .menu-toggle span.bars span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 6px;
    background: #ffffff;
    margin: 0 auto 4px;}
  .stellarnav .menu-toggle:after {
        content: 'MENU';
        font-size: 12px;
        color: #ffffff;
        display: block;
        transform: scale(0.9);}
 .stellarnav > ul > li > a {
        
            font-weight: bold;
            font-size: 18px;}
.stellarnav.mobile > ul > li {
            display: block;
            border-bottom: 0px #a0978e solid;}
/* + */
 .stellarnav a.dd-toggle .icon-plus:after {
                content: '';
                display: block;
                width: 12px;
                height: 0px;
                top: 50%;
                border-bottom: solid 3px #3d3938;
                position: absolute;}
 .stellarnav a.dd-toggle .icon-plus:before {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 0px;
                    border-bottom: solid 3px #3d3938;
                    position: absolute;
                    top: 50%;
                    transform: rotate(90deg);
                    transition: width 0.3s;}

                    
 .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 #a0978e 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.mobile > ul > li > a {
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 180%;
        display: block;}



.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: 5px 7px;}
 .menu-toggle{margin-top: 10px;}         
.stellarnav.mobile li.open li.open {
                background: #212121;
                padding: 3px;}
/*close*/
 .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
                display: inline-block;
                text-align: right;
                font-size: 12px;
                background: transparent;
                color: #fff;
            }

.stellarnav .icon-close:after {
                content: '';
                display: block;
                width: 12px;
                height: 0px;
                top: 50%;
                border-bottom: solid 3px #fff;
                position: absolute;
                transform: rotate(-45deg);}
.stellarnav .icon-close:before {
                    content: '';
                    display: block;
                    width: 12px;
                    height: 0px;
                    border-bottom: solid 3px #fff;
                    position: absolute;
                    top: 50%;
                    transform: rotate(45deg);}
.footer.with_shopping_mode { padding: 0; }
    #to_top {    }

    /* 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;
    }
/* 開啟手機板下方按鈕所需設定 */

#to_top { bottom:60px;}
#bottom_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    background: #040404;
    padding: 0;
    text-align: center;
    -webkit-box-shadow: 0 -2px 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 -2px 15px 0 rgba(0, 0, 0, 0.2);
}
 #bottom_menu li a:hover {
        color: #ffffff;
    }

/*產品頁面*/


.product_menu_list>h5 {
    color: #000000;
   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 #000000 solid;
    border-radius: 20px;}

/*產品內頁-標題名稱*/
.mobile_product_name {
    display: block;
    margin-bottom: 10px;
    color: #000000;}
/*產品資訊*/
.sidebarBtn {
        padding: 15px;
        display: inline-block;
        width: 100%;
        vertical-align: top;
        border: 0px #dddddd00 solid;
        }
.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% !important; border-right: none;}
.product_page .product_menu_list>h5{display: block;}    
 .product_page .product_menu_list{ width: 100% !important;order: 0;
        min-height: unset; }      
/*上方購物車*/
.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;
    }

/*文章*/
.blog_subbox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-gap: 5px;}
}

@media screen and (max-width: 600px) { 
}




