@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family: "Noto Sans TC", "Bebas Neue", serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix{ display: none;}


.pageIndex #content_main { background: #000; opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;}

/* 開場浮動 */
.pageIndex #page .fix_ri{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
}
/* .pageIndex #page #content_main{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 2s;
} */

@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


/* page分頁按鈕 */
.page {
    color: #e20012;
    align-items: flex-start;
}
.page li{ width: 30px; height: 30px; line-height: 30px;}

.page li a {
    color: #e20012;
}

.page strong,
.page a {
    border: 1px #e20012 solid;
}

.page li.activeN{        
    background: #e20012;
    color: #fff;
    border: 0px;
    border-radius: 50%;
    line-height: 26px;
    width: 27px;
    height: 27px;
    font-size: 13px;
}

.page strong,
.page a:hover {
    background: #e20012;
    color: #fff;
    border: 0px;
}

@media screen and (max-width:768px) {
    .page {
        margin: 40px 0;
    }
}


/* bottom_menu */
#bottom_menu li:nth-of-type(2),#bottom_menu li:nth-of-type(3) { display: none;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 開場動畫 */
/* 
.pageIndex #page::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: grayscale(1)  blur(7px);
    z-index: 1000000000000010000000;
    animation: action-bg 4.3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    pointer-events: none;
}

.pageIndex #page::after{
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20%;
    height: 0;
    padding-bottom: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100000000000001000000000;
    transform: translate(-50%,-50%) ;
    pointer-events: none;
    animation: action-logo 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

body.pageIndex .swiper-wrapper {
    transform: scale(0.8);
    animation: action-banner 3s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards ;
}

@keyframes action-bg {
    0%{
        backdrop-filter: grayscale(1)  blur(7px);
        background-color: #000000b4;
    }
    100%{
        backdrop-filter: grayscale(0)  blur(0px);
        background-color: transparent;
    }
}


@keyframes action-banner {
    0%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
    
}

@keyframes action-logo {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
} */




/* 開場動畫 */


.bannerindex::before {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/logo-1.png);
    width: 250px;
    height: 590px;
    /* background-position: -526px 0 ; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    pointer-events: none;
    animation: banner-logo 2.7s forwards;
}
.bannerindex::after{
    content: "";
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: 99999;
    animation: banner-bg 2.7s forwards;

}


.pageIndex #page .swiper-slide img {
    height: auto;
    transform: scale(1.4);
    animation: banner-img 1s forwards;
    animation-delay: 2.2s;
}

/* 
.swiper-banner::before{
    content: "";
    display: block;
    height: 5px;
    background-color: #fff;
    position: fixed;
    bottom: 240px;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 500;
    opacity: 0;
    border-radius: 100px;
    animation: banner-line-white 2.7s forwards;
}

.swiper-banner::after{
    content: "";
    display: block;
    height: 5px;
    background-color: #80633F;
    position: fixed;
    bottom: 240px;
    left: 50%;
    transform: translate(-50%,0px);
    border-radius: 100px;
    z-index: 500;
    opacity: 0;
    animation: banner-line-brown 2.7s forwards;
}
 */


@media screen and (max-width: 768px) {
    .bannerindex::before {
        animation: banner-logo-768 2.7s forwards;

    }
}

@media screen and (max-width: 500px) {
    .bannerindex::before {
        animation: banner-logo-500 2.7s forwards;
    }
    .pageIndex #page .swiper-banner::before{
        animation: banner-line-white-500 2.7s forwards;
    }
    
    .pageIndex #page .swiper-banner::after{
        animation: banner-line-brown-500 2.7s forwards;
    }
    
}


@keyframes banner-logo{
    0%{
        opacity: 0;
        width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -526px 0 ;
    }
    25%{
        opacity: 1;
        width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 250px;
        height: 590px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}
@keyframes banner-bg{
    0%{

    }
    50%{
    }
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes banner-img {
    0%{
        transform: scale(1.4);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes banner-line-white{
    0%{
        width: 420px;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 420px;
        opacity: 1;
    }
    80%{
        width: 420px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-logo-768{
    0%{
        opacity: 0;
         width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -410px 0 ;
    }
    25%{
        opacity: 1;
         width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
         width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
         width: 250px;
        height: 590px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
         width: 250px;
        height: 590px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-logo-500{
    0%{
        opacity: 0;
        width: 150px;
        height: 350px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: -300px 0 ;
    }
    25%{
        opacity: 1;
        width: 150px;
        height: 350px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
    }
    50%{
        width: 150px;
        height: 350px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    80%{
        width: 150px;
        height: 350px;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
        background-position: 0 0;
        opacity: 1;
    }
    100%{
        width: 150px;
        height: 350px;
        filter: blur(10);
        transform: translate(-50%, -50%) scale(5);
        background-position: 0 0;
        opacity: 0;

    }
}

@keyframes banner-line-white-500{
    0%{
        width: 250px;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


@keyframes banner-line-brown-500{
    0%{
        width: 0;
        opacity: 1;
    }
    50%{
        width: 250px;
        opacity: 1;
    }
    80%{
        width: 250px;
        opacity: 1;
    }
    100%{
        width: 2180px;
        opacity: 0;
    }
}


/*反白顏色*/
::-moz-selection{
    background-color: #E0E0E0;
    color: #595959;
  }
  ::selection{
    background-color: #E0E0E0;
    color: #595959;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #595959;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #595959;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #595959;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #E0E0E0;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}


/* banner */
.pageIndex #page .swiper-wrapper .swiper-slide:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/banner1-bg.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.pageIndex #page .swiper-wrapper .swiper-slide:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/banner2-bg.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}


.pageIndex #page .swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.pageIndex #page .swiper-slide img {
    height: auto;
    filter: saturate(1.05) contrast(1.08);
}


@media screen and (max-width: 768px) {
    .pageIndex #page .swiper-slide img {
        /* position: relative; */
        height: 450px!important;
        width: auto!important;
        object-fit: cover!important;
        /* left: -40%; */
    }
    .pageIndex #page .swiper-wrapper .swiper-slide:nth-child(1)::after,.pageIndex #page .swiper-wrapper .swiper-slide:nth-child(2)::after  {
        background-image: url(https://pic03.eapple.com.tw/racingsportrc/banner-m-bg.png);
        background-size: 100%;
    }
}
@media screen and (max-width:600px) {
    .pageIndex #page .swiper-slide img {
        /* position: relative; */
        /* height: 400px!important; */
        width: auto!important;
        object-fit: cover!important;
        /* left: -40%; */
    }
     .pageIndex #page .swiper-wrapper .swiper-slide:nth-child(1)::after,.pageIndex #page .swiper-wrapper .swiper-slide:nth-child(2)::after {
        background-size: cover;
     }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/

.header_area{
    padding: 0;
}


.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.5s;
}
.header_area.sticky .main_header_area {
    transition: all 0.5s;
}

.main_header_area .container { max-width:unset;}
.me_tp_features{ margin-top: 30px; position: absolute; right: 10%; opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;}

.tp_links {
  display: none;
}

.me_tp_features a.tp_btn_cart span,.me_tp_features a.tp_btn_notice span{ display: none;}
.me_tp_features a.tp_btn_cart,.me_tp_features a.tp_btn_notice{ color: #fff; display: none;}
.me_tp_features a{ transition: 0.5s;}
.me_tp_features a:hover{ color: #E50012;}


.header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 20px;
    right: 1%;
    transition: all 0.5s;
    pointer-events: all;
}
.header_area.sticky  .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 27px;
    transition: all 0.5s;
}



/*LOGO設定*/

.nav-brand img {
    width: 100%;
    max-width: 100%;
}


.nav-brand {
    width: 100%;
    transition: all 0.5s;
}

.sticky .nav-brand {
    width: 230px;
    transition: all 0.5s;
}

.nav-header {
    position: fixed;
    top: 24px;
    left: 2%;
    max-width: 75px;
    overflow: visible;
    animation-delay: 1s;
}
.pageIndex #page { animation-delay: 2.2s; }

.sticky .nav-header {
    transition: all 0.3s;
}


/* 開場logo、選單 */


.nav-header a img {
    transform: scale(1, 0);
    animation: heashow-logo-img 1s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 0.5s;
}

.pageIndex #page .nav-header a img{
    animation-delay: 2.8s;
}

@keyframes heashow-logo-img {
    0% {
        transform: scale(1, 0);
    }

    100% {
        transform: scale(1);
    }

}



.nav-header a::before {
    transform: translate(-50%, -50%) scale(1, 0);
    animation: heashow-logo 1s forwards cubic-bezier(1, 0.6, 0, 1.4);
    animation-delay: 3.2s;
}

@keyframes heashow-logo {
    0% {
        transform: translate(-50%, -50%) scale(1, 0);

    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }

}


.nav-header img {
    position: relative;
    opacity: 1;
}

.stellarnav.active::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0000002b;
    border-radius: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ham */
.stellarnav .menu-toggle{
    text-align: center;
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;

}
.stellarnav .menu-toggle:after{
    content: "MENU";
    display: none;
    font-size: 12px;
    text-align: center;
    color: #43453D;
     font-family: "Noto Sans TC","Noto Sans TC", "Noto Serif TC", serif;
    margin-top: 10px;
}


.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 50px;
    height: 3px;
    border-radius: 6px;
    background: #fff;
    margin: 0;
    margin-bottom: 8px;
    left: 0;
    transition: 0.5s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    transition: all  0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 1;
    width: 25px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle span.bars span:nth-child(3) {
    opacity: 1;
    width: 50px;
    transition: all 1s;
}
.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(2) {
    width: 50px;
    transition: all 1s;
}



/* 漢堡關 */
.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* 未開啟 */

.stellarnav.desktop > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav.desktop{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}
.stellarnav.desktop::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: 1s;
}



/* 開啟 */
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    pointer-events: all;
    width: 37%;
    height: 100%;
    background: transparent;
    padding: 200px 4% 60px;
    padding-top: 130px;
    align-items: center;
}

.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0;
    background-color: #0000009c;
    backdrop-filter:blur(20px);
    animation: nav-left 0.5s forwards;
}
.stellarnav.desktop.active{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-content: flex-end;
}
.stellarnav.desktop.active::before{
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    border-radius: 0;
    /* backdrop-filter: blur(5px); */
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{
        width:  0;
    }
    100%{
        width:  100%;
    }
    
}

@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}



/* ham close */

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    transform: rotate(-49deg);
    left:0px;
    top: 20px;
    transition: all 1s;
    background: #fff;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    transform: rotate(225deg);
    transition: all 1s;
    background: #fff;
}
.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}


/* 選項 */
.stellarnav > ul > li > a {
    margin: 0 20px;
    padding-left: 0;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 17px;
    line-height: 20px;
    height: auto;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    letter-spacing: 5px;
    transform-origin: 0 0;
     font-family: "Noto Sans TC","Noto Sans TC", "Noto Serif TC", serif;
    transition: 0.4s;
}
.stellarnav > ul > li > a b {
    line-height: 15px;
    height: 20px;
   font-family: "Noto Sans TC","Noto Sans TC", "Noto Serif TC", serif;
}
.stellarnav > ul > li > a b:nth-child(1) {font-weight: 800;margin-bottom: 10px;font-family: "Noto Sans TC", "Libre Baskerville", serif;}
.stellarnav > ul > li > a:hover{
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: #E50012;
}

.stellarnav li {
    opacity: 1;
    width: 100%;
}
.stellarnav > ul > li::before {
    content: "";
    display: none;
    width: 0%;
    height: 1px;
    margin: 15px 0;
    background-color: #43453d21;
    animation: line-left-right 1s forwards linear;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    grid-template-columns:1fr;
}

.stellarnav > ul > li > a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

/* animate word */
.stellarnav > ul > li{
    opacity: 0;
    animation: slideInUp 1.5s forwards;
    animation-delay: 0.2s;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 0;
}

.stellarnav > ul > li:nth-child(2) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.5s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.6s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.7s;
}
.stellarnav > ul > li:nth-child(5) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.8s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: slideInUp 1s forwards;
    animation-delay: 0.9s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: slideInUp 1s forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: slideInUp 1s forwards;
    animation-delay: 1.1s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
  
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
  }
/* @keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    from {
      opacity: 0;
      transform: translate3d(3000px, 0, 0) scaleX(3);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(-25px, 0, 0) scaleX(1);
    }
  
    75% {
      transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
  
    90% {
      transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
  
    100% {
    opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  } */


/* 下拉 */
.stellarnav ul ul {
    /* left: -160px; */
    left: 184px;
    top: -22px;
    background: #000000db;
    backdrop-filter: blur(20px);
    /* box-shadorgba(0, 0, 0, 0.752)x 5px #000000b3; */
    /* display: none!important; */
}
.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: -1px;
    background: #000;
    transition: all 0.3s;
}

.stellarnav li li:hover {
    background: rgba(0, 0, 0, 0.551);
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 15px 10px;
    display: block;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}
.stellarnav li li:hover > a {
    color: #E50012;
    transition: all 0.3s;
}


/* 下拉二層 */

.stellarnav ul ul ul {
    top: 0;
    left: 160px;
}
.stellarnav li.has-sub > a:after{
    display: none;
}

.stellarnav li.drop-left ul ul{
    right: unset;
    left: 160px;
}

@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}


  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #fff; width: 32px; height: 2.5px;}
  .stellarnav .menu-toggle:after { color: #fff;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #000;
      color: #fff;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #000000e8;
      backdrop-filter:blur(20px);
      border-right:0px;
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #B8B8B8;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #B8B8B8;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: 15px;
      right: 15px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle:before{
    }
    .stellarnav.mobile li.open{
      background: #000;
      padding: 3px 16px;
    }
    .stellarnav.mobile li.open li.open{
        background: transparent;
    }
    .stellarnav.mobile ul{
        background: transparent;
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
      top: 0;
      border-radius: 0px;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 0px;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}


@media screen and (max-width:1400px) {
    .stellarnav.desktop.active > ul{
        width: 50%;
    }
}

@media screen and (max-width:1100px) {
    .stellarnav.desktop.active > ul{ width: 62%;}
}


@media screen and (max-width:1024px) {
    .nav-header{ top: 20px ; left: 1.5%;max-width: 60px;}
    .me_tp_features{ text-align: right; right: 15%;}
}

@media screen and (max-width:850px) {
    .stellarnav.desktop.active > ul{ width: 75%;}
}

@media screen and (max-width:768px) {
    .stellarnav > ul > li{
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .stellarnav > ul > li > a b:nth-child(2){
        opacity: 1;
    }
    .sticky .nav-brand{ width: 160px;}
    .me_tp_features a.tp_btn_cart, .me_tp_features a.tp_btn_notice{ display: none;}
    .me_tp_features{ right: 10%; top: -5px;}
    .stellarnav li li:hover > a{ background: #000;}
}

@media screen and (max-width:570px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        top: 30px;
        right: 3%;
    }
    
}
@media screen and (max-width:420px) {
    .header_area .stellarnav .menu-toggle,.stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
        right: 2%;
    }
    .me_tp_features{ right: 18%; }
    
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.footer .center {max-width: 1500px;margin: 0 auto;}
.center {max-width: 70%;}
.footer {background: #000;width: 100%; padding: 50px 0 0 0; background-size: cover;}
.footer_info{display: flex;flex-wrap: wrap;align-items: center;justify-content: space-between;}
.footer_menu {display: grid;  grid-template-columns: repeat(auto-fit, minmax(min(80px,100%), 1fr));  gap: 5px; width: 100%; text-align: center; margin: 0 auto; max-width: 1000px;display: none;}/*footer按鈕最小寬度100px*/
.footer_menu a {color: #748596;margin: 0;	text-align: center;	padding: 8px 0px 10px 0px; border:0; border-right: 0px #233c5a solid;  border-left: 0px #f7f7f7 solid; background: none;  font-size: 14px; transition: all 0.3s; background: #1a3550; letter-spacing: 1px;}
.footer_menu a:last-child {border-right: 0px #d6e1e1 solid;}
.footer_menu a:hover {background: #f0ddce; color: #9daebf;} 
.copy {background:#000; color: #595959; border:none; padding: 15px 0; text-align: center; margin-top: 40px;width: 100%;}
.copy a{color: #595959;transition:all 0.3s;}
.copy a:hover {color: #595959;}
.box_link a{transition:all 0.3s;}
.box_link a:hover {background: #fff;  color: #222;}
.box_link {display: none;}
.privacyLinks a+a{  border-left: 1px solid #595959;}
.footer_logo img {max-width: 240px;}
.footer_logo {display: none;}
.footer_info li {padding: 0; display: inline-block;}
.footer_info li h4{font-size: 20px;color: #595959;margin-bottom: 20px;letter-spacing: 1px;font-family: 'Noto Serif TC', serif;}
.footer_info li p {font-size: 15px; color:#ffffff; line-height: 200%; text-align: left;margin-bottom: 0px;}
.footer_info li p a{color:#ffffff;}
.footer_info li p:hover a{color:#E40012;}
.footer_info li p:hover{color:#E40012;}
/*改字*/
.TEL:before, .TEL2:before, .PHONE:before, .FAX:before, .TAXID:before, .MAIL:before, .ADD:before, .ADD2:before {width: 90px;}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before  {width: 90px;}
.list_before {margin-top: 15px;}
.list_before.info li {padding-left: 100px; width: 49%; display: inline-block;}
.list_before li {margin: 3px 0;}
.footer_menu a:nth-child(1) {display: none;} /*隱藏回首頁*/

.footer_link{width: 25%;display: flex;flex-wrap: wrap;justify-content: center;}

.footer_logo2{width: 50%; text-align: center;}
.footer_logo2 img{max-width: 260px;width: 100%;}
.footer_img{width: 100%;text-align: center;margin-bottom: 20px;}
.footer_img img{max-width: 340px;width: 100%;}

.footer_info ul{width: 25%;}

.footer_link a{margin: 10px;filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(21deg) brightness(102%) contrast(105%);transition: 0.5s;}
.footer_link a:hover{filter: inherit;}


/*FT改圖*/

@media screen and (max-width: 1720px) {
  .footer_menu {grid-template-columns: repeat(auto-fit, minmax(min(80px, 100%), 1fr));}
  .footer .center {max-width: 90%;}
  .footer_info li:nth-child(1),.footer_info li:nth-child(2) {width: 100%;}
  }
  @media screen and (max-width: 1380px) {
  .copy {text-align: center; width: 100%;}
  .footer_logo {width: 100%; max-width: 100%;}
  .footer_menu {max-width: 100%;}
  }
  @media screen and (max-width: 1024px) {
  .footer_info li p {width: 100%;}
  .list_before.info li {width: 100%;}
  }
  @media screen and (max-width: 768px) {
  .footer .center {max-width: 90%;}
  }
  @media screen and (max-width: 480px) {
  .footer_menu {margin-bottom: 26px; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));}
  .footer_menu a {padding: 8px 4px 10px 0px; background: #152d45;}
  .footer_info ul {margin-bottom: 0px;}
  .footer_info li:nth-child(2) {margin-bottom: 0px;}
  .footer_img {margin-bottom: 10px;}
  }  

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1600px;}
/* .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% - 225px);}
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;}
.product-layer-two > li ul > li + li { margin-top:5px; background: transparent;}

.product_info_page .product_menu_list { 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%); display: none;}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
.product_info_page  .swiper-wrapper .swiper-slide:nth-child(1)::after { display: none;}

@media screen and (max-width: 1190px) {

    .footer_info{max-width: 700px;margin: 0 auto;}

    .footer_logo2{width: 100%;order: 1;margin-bottom: 25px;}
    .footer_logo2 img{max-width: 260px;width: 100%;}

    .footer_info ul{width: 50%;order: 2;}
    .footer_link{width: 50%;order: 3;}

}
@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;}

.footer_info{max-width: 500px;}
.footer_logo2{width: 100%;}
.footer_info ul{width: 100%;}
.footer_info li p{text-align: center;}
.footer_link{width: 100%;}

.footer_info li h4{text-align: center;font-size: 17px;margin-bottom: 5px;}

}
@media screen and (max-width: 600px) {
}


.product_page #content, .product_info_page #content ,.car_page #content,.remit_page #content{  background: #000;}
.product_page #content .main_part {  width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 50px 20px;}

/* 左邊選單 */
/* .product-layer-two > li{ border-bottom: 1px solid rgba(103, 107, 114, 0.5);} */
/* .product-layer-two > li:last-child{ border-bottom: 0px;}
.product-layer-two li a{ background: transparent; color: #fff;  padding: 12px 16px; transition: 0.3s; border: 0px;}
.product-layer-two li a:hover{ background: #baa786 ; color: #fff;}
.product-layer-two li li a{ color: #000; background: unset; }
.product-layer-two li i{ color: #fae5ea; } 
.product-layer-two li.active a{ background: #193C4F ; border: 0px; color: #EAE3CE ;} */

.product-layer-two li.active li a{ color: #fff; background: #000; }
.product-layer-two li{ border-left: 1px #e20012 solid; }


.i_prod_tit h2, .i_video_tit h2 {  color: #000; font-size: 100px; text-shadow: -5px -5px 0 #d5001d, 5px -5px 0 #d5001d,  -5px 5px 0 #d5001d,5px 5px 0 #d5001d; font-style: italic;  font-family: "Bebas Neue", serif; font-size: 0px;}
.i_prod_tit span, .i_video_tit span{ display: block;font-size: 32px; background-color: #000; font-style: normal; font-size: 0px;
      /* text-shadow:
    -1px -1px 0 #d5001d,
     1px -1px 0 #d5001d,
    -1px  1px 0 #d5001d,
     1px  1px 0 #d5001d,
    -2px  0   0 #d5001d,
     2px  0   0 #d5001d,
     0   -2px 0 #d5001d,
     0    2px 0 #d5001d; */
    }
.i_prod_tit span::after{
    content: "";
     background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-product.png);
     background-size: cover;
    width: 588px;
    height: 150px;
    display: block;
    margin: auto;

}

/* 選單 */
.product-layer-two {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    width: 0%;
    margin-right: 10%;
}
.product-layer-two li {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: fit-content;
    text-align: left;
    /* border-left: 1px solid #808080; */
    transition: all 0.5s;
}
.product-layer-two li::before {
    content: "";
    display: inline-block;
    background-color: #e20012;
    width: 1px;
    height: 0;
    position: absolute;
    left: 0;
    bottom:  0;
    transition: all 0.5s;
}
.product-layer-two li:hover:before {
    bottom: inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;
}
.product-layer-two li a {
    color: #fff;
    border: 0;
    padding: 15px 20px;
    background: transparent;
    text-wrap: nowrap;
    transition: all 0.3s;
}
.product-layer-two li:hover > a { 
    background: transparent;    
    color: #e20012;
    padding-left: 30px;
}
.product-layer-two li.active > a {
    background: transparent;
    color: #e20012;
    border: 0;
    border-left: 2px #e20012 solid;
    font-weight: normal;
}


/* 商品 */
.prod_part{ padding: 50px 20px 100px;}
.products-list{grid-template-columns:1fr 1fr 1fr 1fr ; grid-gap: 30px 26px ;}
.products-list .price {color: #d4d4d4; text-align: center; margin-bottom: 28px; display: none;}
.products-list .price b{ color: #d4d4d4; font-size: 15px;}
.products-list .name{ font-size: 16px; color: #FFF; font-weight: bold; text-align: center; height: 2em; margin-bottom: 25px;
    /* height: 68px; */
}
.products-list .item a{ transition: 0.3s; padding: 20px 12px;}
.products-list .item a:hover{background: #202020; }
.products-list .more{ font-size: 15px; color: #FFF; border: 0px; font-weight: 300; margin: 10px auto;}
.products-list .item a:hover .more{ background: transparent; font-weight: bold;color: #e20012;}
.products-list .pic img{ width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
    .products-list .pic{ overflow: hidden;}
.products-list .item a:hover img  {
    background: rgba(165,187,116,.2);
    z-index: 999;
    opacity: 0.7;
    transform: scale(1.2);
    overflow: hidden;
}

/* 內頁 */
.product_info_page #content .swiper-slide:nth-child(1):before,.product_info_page #content .swiper-slide:nth-child(2):before{ display: none;}
.sidebarBtn h2{ color: #e20012; font-size: 22px;}
.sidebarBtn .sp_price{ color: #838383; display: none;}
.sidebarBtn .price span { display: none!important;}
.sidebarBtn .price{ border-bottom: 0px;}
.proImgSwiper img{height: 100%;width: 100%;object-fit: cover;overflow: hidden;}
.pd_tabTitle li.activeTab a{ color: #777777; font-size: 22px; font-weight: bold;}
.pd_tabTitle li{border-bottom: 1px solid #9999995e; }
.toShare{ border-top: 0px;}

.pd_tabTitle li.activeTab::after{ height: 0px; background: #E4E4E4;}
.sidebarBtn{ border: 1px #444444 solid; background: #202020;} 
.inquiry_a1,.inquiry_a2,.inquiry_a3 {background: #000;color: #e20012;border: 1px solid #e20012!important;border-radius: 0px; display: none; }
.inquiry_a1:hover,
.inquiry_a2:hover,
.inquiry_a3:hover{ background: #e20012; color: #fff; }

.inquiry_a4{  border-color: #00B900;
  background: #00B900;
  color: #fff; }

  .inquiry_a4:hover{ background: #e20012; color: #fff;  border-color: #e20012; }

.rewrite_simple,.send_simple{ background: #000;color: #e20012;border: 1px solid #e20012!important;border-radius: 0px;}
.rewrite_simple:hover,.send_simple:hover{ background: #e20012; color: #fff;}

.product_info_page .edit { color: #fff; text-align: center;}
.radio-inline__label{ color: #c3c3c3;}
.product_info li .txt_box{ color: #c3c3c3;}

/* 相關推薦 */
.prod_related h6 span:before{  color: #262626; font-size: 22px; font-weight: bold; display: none;}
.prod_related{ background: transparent; padding: 80px 15px 60px;}
.related_list li a{ background: #202020;}
.related_list li a p{color: #fff;}
.related_list li a:hover img {
    opacity: 0.75;
    transition: 0.5s;
}

/* car page */
.shopping-cart .cell.product_name p{ color: #fff;}
.formbox_form li .form__label{ color: #fff;}
.form label.Bigcheck{ color: #fff;}
.form label { color: #fff;}
.declaration{background: #343434; }

@media screen and (max-width:1529px) {
    .products-list .name{ font-size: 16px; margin-bottom: 30px; height: 30px;}
    .products-list .price b{ font-size: 14px;}
}

@media screen and (max-width:1024px) {
    .products-list{grid-template-columns:1fr 1fr 1fr ;}
}
@media screen and (max-width:980px) {
    .products-list, .pageIndex .products-list{
        grid-gap:28px 32px;
    }
}
@media screen and (max-width:930px) {
    .products-list{grid-template-columns:1fr 1fr;}
}
@media screen and (max-width:700px) {
    /* .i_prod_tit h2, .i_video_tit h2{ font-size: 60px;} */
    .i_prod_tit span::after{ width: 320px;height: 81px;}
}
@media screen and (max-width:400px) {
    /* .i_prod_tit h2, .i_video_tit h2{ font-size: 40px;} */
    .i_prod_tit span, .i_video_tit span{ font-size: 26px;}
}
@media screen and (max-width:768px) {
    .product-layer-two{ display: block!important;}
    .product_page .product_menu_list>h5{ display: none;}
    .product_info_page #content .main_part{ padding:80px 20px 0px;}
    .mobile_product_name{ display: none;}
    .products-list .price b{ text-align: center!important;}
}
@media screen and (max-width:450px) {
    .products-list{grid-template-columns:1fr; gap: 24px;}
}
@media screen and (max-width:350px) {
    .i_prod_tit span::after{ width:260px;height: 67px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*內頁BANNER 設定*/
.banner {height: 550px; display: flex; align-items: center; justify-content: center ;position: relative; background-size: cover; background-position:top; background-repeat: no-repeat; background-attachment: fixed;}
.banner:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to top, #000 0, rgba(12, 12, 12, 0.4) 50%, transparent 80%) 0 0 no-repeat;
}


.banner h5::before{
    content: "";
     background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-product.png);
     background-size: cover;
    width: 588px;
    height: 151px;
    display: block;
    margin: auto;
}

.blog_page.article_b .banner h5::before,.blog_in_page.article_b .banner h5::before{
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-news.png);
    width:328px;
    height: 150px;
}

.blog_page .banner h5::before,.blog_in_page .banner h5::before{
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-recommend.png);
    width: 687px;
    height: 129px;
}

.remit_page .banner h5::before{
    background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-remittance.png);
    width: 692px;
    height: 128px;
}


.banner h5 { 
    font-family: "Noto Sans TC", sans-serif ; font-size: 32px; color:#000; 
    text-shadow:  -2px -2px 0 #d5001d,
        2px -2px 0 #d5001d,
        -2px 2px 0 #d5001d,
        2px 2px 0 #d5001d; 
        font-size: 0px;
        /* color: transparent;
  -webkit-text-fill-color: #000;
  font-weight: 700;
  -webkit-text-stroke: 3px #d5001d;  */
     display: flex; flex-wrap: wrap; justify-content: center ; width: 600px; z-index: 12;
}


.banner.banB { background-image: url(https://pic03.eapple.com.tw/racingsportrc/banC.jpg);  display: none;}
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/racingsportrc/banblog.jpg);}
.banner.banF { background-image: url(https://pic03.eapple.com.tw/racingsportrc/banF.jpg);}
.banner.banD { background-image: url(https://pic03.eapple.com.tw/racingsportrc/banD.jpg);}
.blog_page.article_a .banner.banblog { background-image: url(https://pic03.eapple.com.tw/racingsportrc/banblog1.jpg);}

/* 
.blog_page.article_b .banner h5{ width: 400px;}
.banner h5:before {font-size: 100px; padding-bottom: 15px; line-height: 105%;color: #000;font-family: "Noto Sans TC", serif; font-style: italic; text-shadow: -5px -5px 0 #d5001d, 5px -5px 0 #d5001d,  -5px 5px 0 #d5001d,5px 5px 0 #d5001d;}
.banner.banblog h5:before{ content: "NEWS";}
.blog_page.article_a .banner.banblog h5:before{ content: "RECOMMEND";}
.banner.banF h5:before{ content: "PRODUCTS";}
.banner.banD h5:before{ content: "REMITTANCE";} */


.banner h5:before {
    content: "";
     background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-product.png);
     background-size: cover;
    width: 588px;
    height: 151px;
    display: block;
    margin: auto;
}

@media screen and (max-width:700px) {
    .banner h5::before{ width: 320px;height: 82px;}
    .blog_page.article_b .banner h5::before,.blog_in_page.article_b .banner h5::before{ width: 195px;height: 90px;}
    .blog_page .banner h5::before,.blog_in_page .banner h5::before{ width:377px;height: 81px;}   
.remit_page .banner h5::before{ width:388px;height: 83px;}   
}
@media screen  and (max-width:450px){
    .banner{ height: 300px; background-attachment: unset;}
    .banner h5::before{ margin-top: 72px;}
}
@media screen and (max-width:400px) {
    .blog_page .banner h5::before,.blog_in_page .banner h5::before{ width:274px;height: 58px;}
    .remit_page .banner h5::before{ width:278px;height: 59px;}   
}

@media screen and (max-width:350px) {
    .banner h5::before{ width:260px;height: 65px;}
    .blog_page.article_b .banner h5::before,.blog_in_page.article_b .banner h5::before{ width: 148px;height: 68px;}

}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*--文章管理 / 共同設定---------------------------------------*/

.blog_page #page,.blog_in_page #page { background: #000;}
/*文章列表*/
.module_i_news li, .subbox_item { position: relative; width: 100%; border-bottom: 1px solid #840014;}
.module_i_news li a, .subbox_item a { display: block; padding: 5px; padding-bottom: 40px;}
.module_i_news li a::before, .module_i_news li a::after, .subbox_item a::after,.subbox_item a::before { display: none; pointer-events: none;}

.module_i_news li::before, .subbox_item::before { 
    content: 'READ MORE';
     font-family: "Noto Sans TC", "Noto Serif TC", serif;
    position: absolute;
    z-index: 19;
    bottom: 15px;
    right: 10px;
    opacity: 0.85;
    font-size:15px;
    color: #e20012;
    pointer-events: none;
    transition: all .5s;
}
.module_i_news li::after, .subbox_item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background: #e20012;
    opacity: 1;
    transition: all .5s;
}
.module_i_news li:hover::after, .subbox_item:hover::after { opacity: 1; left: 0; width: 100%; transition: all .5s;}
.module_i_news li:hover::before, .subbox_item:hover::before { opacity: 1; transition: .3s ease-in-out;}

/*文章呈現*/
.i_blog_ri, .blog_list_ri { margin: 20px 0;}

.i_blog_le, .i_blog_ri, .blog_list_le, .blog_list_ri { width: 100%;}
.i_blog_le img{ transition: 0.5s; opacity: 1;}
.i_blog_le, .blog_list_le { 
    /* aspect-ratio: 3 / 2; */
     overflow: hidden;}
/*文章縮圖長寬比例*/
.module_i_news li a:hover img, .subbox_item a:hover img { transform: scale(1.2); transition: .5s ease-in-out; opacity: 0.7;}

.i_blog_ri h5, .blog_list_ri h5 { color: #e20012; font-size: 20px; letter-spacing: 1px; font-weight: 600;}
.i_blog_ri em, .blog_list_ri em { color: #838383; font-size: 14px;}
.i_blog_ri p, .blog_list_ri p { color: #fff; font-size:15px;}

/*--文章管理 / 首頁---------------------------------------*/

/*標題*/
.module_i_news{ padding: 100px 20px 50px;}
.module_i_news .title_i_box{ margin-bottom: 10px;}
.module_i_news .title_i_box h6 {  color: #000; font-size: 100px; text-shadow: -5px -5px 0 #d5001d, 5px -5px 0 #d5001d,  -5px 5px 0 #d5001d,5px 5px 0 #d5001d; font-style: italic; font-size: 0px;}
.module_i_news .title_i_box h4{ display: block;font-size: 32px; color: #000;  font-style: normal; text-shadow: -2px -2px 0 #d5001d,
        2px -2px 0 #d5001d,
        -2px 2px 0 #d5001d,
        2px 2px 0 #d5001d; 
        font-size: 0px;
    }

.module_i_news .title_i_box::after{
    content: "";
     background-image: url(https://pic03.eapple.com.tw/racingsportrc/ti-news.png);
     background-size: cover;
    width: 328px;
    height: 150px;
    display: block;
    margin: auto;

}

/*列表*/
.module_i_news ul { max-width: 100%; width: 100%; display: grid; gap: 10px; grid-template-columns: repeat(4,1fr);}
/*.module_i_news ul li:nth-of-type(n+4) { display: none;}*/

/*按鈕*/
.animated-arrow{ margin-top: 40px; width: 200px;}
.animated-arrow { background: #000 ; transition: .3s ease-in-out; border: 1px solid #e20012;}
.animated-arrow b { color: #e20012; font-weight: normal; letter-spacing: 3px; transition: .3s ease-in-out;}
.animated-arrow:hover b { transition: .3s ease-in-out;}
.animated-arrow i { color: #e20012;}
.animated-arrow{line-height: 43px;}


.blank_letter{ color: #8b8b8b;}
.total_amount li{ color: #fff;}
.shopping-cart .cell.amount a{ color: #e20012;}

@media screen and (max-width:700px) {
    /* .module_i_news .title_i_box h6{ font-size: 60px;} */
    .module_i_news .title_i_box::after{
      width: 182px;height: 84px;   
    }
}

@media screen and (max-width:470px){
    .module_i_news li{ display: none;}
        .module_i_news li:nth-child(1) { display: block;}
    .module_i_news ul {grid-template-columns:1fr!important; }
}
@media screen and (max-width:350px) {
    /* .module_i_news .title_i_box h6{ font-size: 40px;}
    .module_i_news .title_i_box h6:after{ font-size: 26px;} */
      .module_i_news .title_i_box::after{
      width: 148px;height: 68px;   
    }
}


/*--文章管理 / 外---------------------------------------*/

.blog_page .main_part { max-width: 1600px; width: 96%;}

/*列表搜尋*/
h5.blog_le_t { display: none;}

/*分類*/
/* .blog_le .accordion { border-radius: 0px; margin-top: 28px; border: 1px #e20012 solid;}
.blog_le .accordion > li { transition: 0.3s ease-in-out;}
.blog_le .accordion > li:hover { background: #e20012 !important; }
.blog_le .accordion > li.on_this_category { background: #e20012 !important; }
.blog_le .accordion li { background: unset;}
.blog_le .accordion li a { color: #e20012 ;font-weight: normal;}
.blog_le .accordion li a:hover{ color: #fff!important; }
.blog_le .accordion li i { color:#e20012;}
.blog_le .accordion li .link { padding: 0;}
.blog_le .accordion > li .link a, .blog_le .accordion > li.on_this_category .link a { margin-right: 55px;} */

.blog_le .accordion { border-radius: 0px; margin-top: 28px; border: 0px; padding: 5px 0px; text-wrap: nowrap;}
.blog_le .accordion > li { transition: 0.3s ease-in-out;}
.blog_le .accordion > li:hover { background: transparent !important;    color: #e20012!important;}
.blog_le .accordion > li.on_this_category { background: transparent !important;   color: #e20012!important; }
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a:hover{  color: #e20012!important;}
.blog_le .accordion > li:hover .link a, .blog_le .accordion > li.on_this_category .link a{  color: #e20012!important;}
.blog_le .accordion li .link i { display: none;}
.blog_le .accordion li { background: unset;}
.accordion li+li .link{ border-top: 0px;}
.blog_le .accordion li a { color: #fff ;font-weight: normal; font-size: 16px; transition: 0.5s;}
.accordion li .link a{ padding: 15px 20px;}
.blog_le .accordion li a:hover{
    background: transparent!important;    
    color: #e20012!important;
    padding-left: 30px; }
.blog_le .accordion li .link { padding: 0; border-left: 1px #e20012 solid; }
.blog_le .accordion > li .link a, .blog_le .accordion > li.on_this_category .link a { margin-right: 55px; }

.blog_le .accordion li .link::before {
    content: "";
    display: inline-block;
    background-color: #e20012;
    width: 1px;
    height: 0;
    position: absolute;
    left: 0;
    bottom:  0;
    transition: all 0.5s;
}
.blog_le .accordion li .link:hover:before {
    bottom: inherit;
    top:  0;
    height: 100%;
    transition: all 0.5s;
}

/*次分類*/
.open .link { background: #e20012;}
.open .link a { color: #fff !important;}
.submenu { background: #000;}
.submenu li.on_this_category a, .submenu a:hover { background: #e20012;}
.blog_le .accordion > li.on_this_category ul li a i{ display: none;}
.submenu li+li{ border-top: 0px;}
.submenu a{padding: 12px 0px 12px 10px; }

/*次分類展開*/
.blog_le .accordion > li.on_this_category ul li a { color: #fff; border-top: 0px; border-left: 1px #e20012 solid; font-size: 15px;}
.blog_le .accordion > li.on_this_category ul li a i { color: #fff;}
.blog_le .accordion > li.on_this_category ul li:hover a { color: #FFFFFF;}
.blog_le .accordion > li.on_this_category ul li:hover a i { color: #FFFFFF;}

/*選定次分類*/
.blog_le .accordion > li.on_this_category ul li.on_this_category a { color: #e20012; background: transparent;}
.blog_le .accordion > li.on_this_category ul li.on_this_category i { color: #FFFFFF;}
.blog_le .accordion > li.on_this_category ul li.on_this_category:hover a { color: #FFFFFF;}

/*次分類 hover*/
.blog_le .accordion > li.open:hover { background: var(--BackgroundColor) !important;}
.submenu:hover li a { color: var(--FontColor_3);}
.submenu:hover li:hover a { color: var(--FontColor_3); background: #3e3e3e;}
.submenu a:hover { color:#fff; background: var(--SubColor_1);}
.submenu:hover li a::before {  transition: .3s ease-in-out;}
.submenu:hover li:hover a::before {  transition: .3s ease-in-out;}

/*分類/文章標題*/
h4.blog_category_title { font-size: 24px; letter-spacing: 1px; color:#e20012; border-bottom: 1px #545556 solid;}

/*文章列表*/
.blog_subbox { margin: auto; display: grid; grid-template-columns: repeat(4,1fr);}
.blog_subbox:before { content:none;}


/*--文章管理 / 內---------------------------------------*/

.blog_box { max-width: 1500px; margin: auto;}
.blog_box_edit { color:#fff; max-width: 100%; margin: auto;}

.blog_back a.article_btn_back,.blog_back a.article_btn_prev, .blog_back a.article_btn_next { background: #000;  color: #e20012; border: 1px solid #e20012; transition: 0.3s;}
.blog_back a.article_btn_back:hover,.blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover { background: #e20012;  color: #fff;}

.blog_in_page #page .blog_ri {border: 1px solid #840014; margin-left: 10px;padding: 26px; }

/* 相關 */
.news_related{ background: transparent;}
.news_related_list li a{ background: #202020;}
.news_related_list li a p{ color: #fff;}
.news_related h6 span:before{color: #777777; }
.lastPage{background: #000;  color: #e20012; border: 1px solid #e20012;} 
.lastPage:hover {background: #e20012;  color: #fff;} 
.news_related_list li a:hover img{
    opacity: 0.75;
    transition: 0.5s;
}



/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
    /*首頁*/
    .module_i_news ul, .blog_subbox { width: 100%; grid-template-columns: repeat(2,1fr); gap: 60px 20px;}

    .blog_subbox{ grid-gap:60px 20px;}
}

@media screen and (max-width: 768px) {
    /*首頁*/
    .module_i_news ul, .blog_subbox { width: 100%; grid-template-columns: repeat(2,1fr); }
    .blog_in_page #page .blog_ri { margin-left: 0px; margin-bottom: 24px;}
}

@media screen and (max-width: 425px) {
    /*首頁*/
    .module_i_news ul, .blog_subbox { grid-template-columns: 1fr;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8;  display: none;}




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




