@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
/*冠鋮車業*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

:root{
    --MainColor:#DD2725;
    --SubColor:#A2242D;
    --SubColor2:#333433;
}
body {
    font-family: 'Noto Sans TC', sans-serif;
    letter-spacing: 1px;
}
#content{
    background: #111;
}

/*錨點滾動*/
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6); }
::-webkit-scrollbar-thumb {background-color: var(--MainColor);}
html { scroll-behavior: smooth; }

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#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;
}
}

/*大圖點點-------------------------------------*/
.swiper-pagination-bullet {width: 100px;height: 3px;border-radius: 0%;background: #fdfdfd;}

/*內頁BANNER 設定*/
.banner {
    background: repeat center center transparent;
    background-image: url(https://pic03.eapple.com.tw/kuanchengarage/banner.png);
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}
.banner h5 {
    font-weight: normal;
    color: var(--MainColor);
    font-family: 'Noto Sans TC', sans-serif;
    font-size:20px;
    text-shadow: 1px 1px 15px rgb(38 15 1 / 37%);
}
.banner.banblog h5:before{
    content: 'NEWS';
    display: block;
    font-family: 'Impact', serif;
    font-size: 80px;
    top: 10px;
    position: relative;
    color: var(--MainColor);
    font-weight: normal;
}
.banner.banE h5:before{
    content: 'ALBUM';
    display: block;
    font-family: 'Impact', serif;
    font-size: 80px;
    top: 10px;
    position: relative;
    color: var(--MainColor);
    font-weight: normal;
}
.banner.banF h5:before{
    content: 'RPODUCT';
    display: block;
    font-family: 'Impact', serif;
    font-size: 80px;
    top: 10px;
    position: relative;
    color: var(--MainColor);
    font-weight: normal;
}
.banner.banC {
    display: none;
}
.banner.banB{
    display: none;
}

@media screen and (max-width: 550px) {
.banner{
    min-height: 350px;
}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*header----------------------*/
.tp_links{
    display: none;
}
.me_tp_features{
    display: none;
}
.navigation{
    grid-template-columns: 180px 1fr;
    transition: all 0.3s;
}
.header_area{
    padding: 0; 
    transition: all 0.3s;
}
.main_header_area{
    background: linear-gradient(103deg, #000, var(--MainColor), #000);
    animation: header 5s cubic-bezier(0, -0.17, 0.58, 1);
    transition: all 0.3s;
}
.main_header_area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(103deg, #000, var(--MainColor), #000);
    animation: header 5s cubic-bezier(0, -0.17, 0.58, 1);
    transition: all 0.3s;
}
@keyframes header{
  0%{
     background-position: -2000px;
  }
  100%{
     background-position:0%;
  }
}
@media screen and (max-width: 1024px) {
    .header_area{
        height: 70px;
    }
}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    left: 0; 
    width: 100%; 
    position: fixed; 
    padding: 20px;
}
.stellarnav.desktop li.bigMenu ul ul{
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: #efefef; 
    height: auto; 
    max-height: 300px; 
    overflow: auto;
}
.stellarnav.desktop li.bigMenu ul ul li{
    margin: 0;
} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{
    border-left: 6px solid transparent; 
    border-bottom:unset; 
    border-right: 6px solid transparent; 
    border-top: 6px solid #898989; 
    right: 5px;
}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{
    grid-gap: 10px;
}
.stellarnav.desktop li.bigMenu li{
    border: 0;
}
.stellarnav.desktop li.bigMenu>ul>li>a{
    border: 1px solid #ddd;
}
.stellarnav.desktop li.bigMenu ul ul{
    display: block !important; 
    position: relative; 
    top: 0; 
    background: unset; 
    border: 0;
}
.stellarnav.desktop li.bigMenu ul ul li{
    border: 0;
}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/*header選單----------------------*/
.stellarnav > ul > li > a{
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 70px;
    height: 70px;
}
.stellarnav li.has-sub > a:after{
    content: '+';
    border-left:0px;
    border-right:0px;
    border-top:0px;
}
.stellarnav > ul > li:hover > a{
    color: #fff;
    letter-spacing: 1.8px;
    font-weight: bolder;
    transition: all 0.3s;
}

@media screen and (max-width: 1024px) {
    .stellarnav > ul > li > a{
        margin: 0 5px;
        line-height: 25px;
        height: 25px;
    }
    .stellarnav ul{
        padding: 15px 0px 5px 0px;
    }
}
@media screen and (max-width: 768px) {
     .stellarnav ul{
        padding: 0px;
    }
}

/*第二層*/
.stellarnav li li{
    background: #000;
    border-bottom: 1px #333 solid;
    border-bottom-width: 1px;
    border: none;
}
.stellarnav li a{
    color: #fff;
    font-size: 14px;
}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a{
    color: #fff;
    padding-left: 15px;
    background: var(--MainColor);
    transition: 0.3s;
}
.stellarnav ul ul{
    background: transparent;
}
.stellarnav li.drop-left li.has-sub > a:after{
    border-right:none;
}

/*選單最大寬度*/
.main_header_area .container { 
    max-width: 85%; 
}

@media screen and (max-width: 768px) {
    .main_header_area .container { max-width: 100%; }
}

/*LOGO----------------------------*/
.nav-brand{
    position: relative;
    top: 3px;
}

@media screen and (max-width: 1024px) {
    .nav-brand{
    position: relative;
    top: 10px;
}
}

/*浮動按鈕-------------------------*/
.linksBtn{
    background: linear-gradient(310deg, var(--SubColor), var(--MainColor), var(--SubColor));
}
.info_fix{
    bottom: 125px;
    display: flex;
}

/*第二層*/
a.info_fix_default.info_fix_mail{
    display: none;
}
a.info_fix_default.info_fix_tel2{
    display: none;
}
a.info_fix_default.info_fix_phone{
    display: none;
}
.info_fix_links a{
    background: var(--SubColor2);
}
.info_fix_links a:hover{
    background: linear-gradient(310deg, var(--SubColor), var(--MainColor), var(--SubColor));
}
.info_fix:hover>.linksBtn{
    background: linear-gradient(310deg, var(--SubColor), var(--MainColor), var(--SubColor));
}

/*TO TOP*/
#to_top{
    bottom: 80px;
    right:25px;
    background: linear-gradient(310deg, var(--SubColor), var(--MainColor), var(--SubColor));
    box-shadow: unset;
    color: #ffffff;
    left:unset;
    width: 40px;
    height: 40px;
    font-size: 10px;
    padding-top: 7px;
}
#to_top i.top{
    height: 10px;
}
#to_top i.top:before, 
#to_top i.top:after {
    height: 10px;
    background: #ffffff;
    height: 10px;
    top: 3px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { 
    max-width:1500px;
}
/* .product_info_page .main_part { 
    max-width:1200px;
} */
.product_page .show_content,
.product_info_page .show_content { 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    align-items: flex-start; 
    align-content: flex-start;
}
.product_page .product_menu_list { 
    position: relative; 
    width: 220px; 
    letter-spacing: 1px; 
    /*border-right: 1px solid #ccc;*/
    min-height: 30vw;
}
.product_page .products-list,
.product-wrapper { 
    width: calc(100% - 270px);
}
ul.page { 
    width: 100%;
}
.product-layer-two li ul { 
    position:static; 
    margin-top:5px; 
    /*display:block !important;*/ 
    width:100%; 
    margin-left:0;
}
.product-layer-two li:hover ul { 
    border: none !important; 
    /*display:block !important;*/
}
.product-layer-two li li { 
    display: block; 
    padding:0; 
    transition:all ease .3s;
}
.product-layer-two li li a{ 
    padding:5px 10px;
}
.product-layer-two li li:hover > a {
     background:#fff; 
     color:#ad925e;
    }
.product-layer-two > li { 
    width:100%; 
    max-width:100%; 
    padding:0; 
    text-align:left; 
    padding-bottom: 5px;
}
.product-layer-two li a{
    background: var(--SubColor2);
    color: #fff;
    border:none;
}
.product-layer-two > li ul > li + li { 
    margin-top:5px;
}
.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%);
}
.product-layer-two li li:hover > a:before { 
    background:#ad925e;
}

.product_info_page .half_box { 
    width: 100%; 
    float: none; 
    padding-right: 0;
}
.product_info_page .half_box li.btn_blankTop { 
    margin-top: 50px; 
    justify-content: space-between; 
    display: flex;
}
.product_info_page .half_box li.btn_blankTop input { 
    width: calc(50% - 10px); 
    background-image: none; 
    padding: 0; 
    text-align: center;
}
.products-list .name{
    color: #ffffff;
    height: auto;
}
.products-list .price b{
    color: var(--MainColor);
}
.products-list .more{
    border: 1px solid var(--MainColor);
    color: var(--MainColor);
}
.products-list .item a:hover .more{
    background: var(--MainColor);
}
.product-layer-two li.active a{
    border: 1px var(--MainColor) solid;
}

@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;
}
}

/*購物車第二層*/
.sidebarBtn{
    background: transparent;
    border:none;
}
.sidebarBtn .ori_price{
    color: #ddd;
}
.sidebarBtn h2{
    color: #fff;
}
.product_info li span{
    color: #ddd;
}
.inquiry_a3{
    background: var(--MainColor);
}
.inquiry_a3:hover{
    background: var(--SubColor);
}
.pd_tabTitle li.activeTab a{
    color: #ffffff;
}
.product_info_page .edit{
    color: #fff;
}
.prod_related{
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.accordion li .link a{
    color: #ffffff;
}
h5.blog_le_t,
h4.blog_category_title {
   font-size: 25px;
   margin-bottom: 10px;
   color: #fff;
}
.blog_le .accordion>li:hover .link { 
    background: #a5a5a5; 
}
.blog_le .accordion>li.on_this_category .link { 
    background: #BFB9AA; 
}
.subbox_item a:before { 
    display: none; 
}
.blog_list_ri:after {
    content: 'READ MORE >';
    display: block;
    background: transparent;
    color: var(--MainColor);
    letter-spacing: 1px;
    opacity: 1;
    left: 0;
    position: relative;
    padding: 0 22px 0 0;
    font-size: 12px;
    line-height: 12px;
}
.blog_list_ri em { 
    display: none; 
}
.blog_list_ri p { 
    padding-top: 8px; 
}
.blog_back a.article_btn_back { 
    background:#333; 
}
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: var(--MainColor);
    color: #fff;
}
.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_next:hover {
    background: #333;
    transition: 0.3s;
    color: #fff;
}
.blog_search input[type=search] { 
    border-radius: 0;
}
.blog_le .accordion { 
    border-radius: 2px; 
}
.blog_subbox.clearfix {
    margin: 0 auto;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
body.blog_page .clearfix:before,
body.blog_page .clearfix:after { 
    display: none; 
}
.subbox_item {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-bottom: none;
}
.subbox_item a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    grid-gap: 10px;
}
.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    width: 100%;
    transition: all 0.4s ease;
}
.blog_list_le img {
    display: block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 5000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transform: translate(-50%, -50%) scale(1);
}
.blog_list_le {
    display: block;
    position: relative;
    text-align: center;
    height: auto;
    aspect-ratio: 9 / 9;
    overflow: hidden;
    padding-bottom: 0;
    width: 100%;
}
.subbox_item a:after { 
    display: none; 
}
.blog_list_ri {
    width: 100%;
}
.blog_list_ri em {
    width: 100%;
    color: #7fcbcf;
}
.blog_list_ri h5 {
    position: relative;
    margin: 0px 0 0;
    font-size: 18px;
    letter-spacing: 0.035em;
    color: #ffffff;
}
.blog_list_ri p {
    color: #999;
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.035em;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}
.blog_le .accordion > li:hover .link, .blog_le .accordion > li.on_this_category .link {
    color: #fff !important;
    background: var(--MainColor) !important;
    transition: 0.3s;
}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: var(--MainColor) !important;
    transition: 0.3s;
}
.blog_subbox{
    grid-template-columns: repeat(auto-fill, minmax(250px, 3fr));
}
.blog_le .accordion > li:hover .link a, 
.blog_le .accordion > li.on_this_category .link a{
    color: #fff !important;
}

/*第二層*/
.blog_shareData{flex-direction: row;}
.toShareNews b, 
.toShareNews a, 
.toShareNews a object, 
.toShareNews a i{
    color: #fff;
}
.articel_mainPic img{
    max-width: 50%;
}
.news_related{
    display: none;
}
.lastPage{
    background: var(--MainColor);
}
.news_related_list li a{
    background:unset;
}
.news_related_list li a p{
    color: var(--SubColor);
    line-height: 3;
}
.blog_in_page .edit{
    color: #fff;
}
.submenu li.on_this_category a, 
.submenu a:hover{
    background: var(--SubColor);
}

@media screen and (max-width: 1024px) {
	.blog_subbox.clearfix {
    margin: 0 auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}
}
@media screen and (max-width: 768px) {
.blog_subbox.clearfix {
    margin: 0 auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 375px) {
.blog_subbox.clearfix {
    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;
}
.other_album {
    display: none;
}
.show-list .item:hover a figure img {
    transform: scale(1.2);
    transition: 0.5s;
    top: 0;
    left: 0;
}
.show-list .item a figure img {
    transition: 0.5s;
}
.show-list .show_name {
    text-align: center;
    color: #fff;
}
.other_album_choice { 
    display: none; 
}
.show-list .item:hover .show_name{
    color: var(--MainColor);
}
.other_subalbum li{
    background: unset;
}

/*第二層*/
.subalbum-menu h2{
    color: var(--MainColor);
}
.other_subalbum li a p{
    color: #fff;
}
/*第三層*/
.album_descrip{
    color: #ffffff;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相本列表*/
.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; 
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡表單--------------------------*/
.contact_content {
    padding: 0;
    background: #111;
}
.contact_form{
    margin-top: 50px;
}
.contact_content .information_right {
    width: 100%;
    padding: 0px 350px 50px 350px;
}
.contact_le_map { 
    display: none; 
}
.information_left.fadeInLeft.animated15.clearfix {
    display: none;
}
.list_before {
    margin-top: 0px;
    margin-bottom: 15px;
}
.list_before.info {
    max-width: 100%;
}
.list_before.info iframe {
    width: 100%;
    height: 50%;
}
.list_before.info li:last-child {
    padding-left: 41px;
    margin-top: 5px;
}
.list_before.info li:first-child {
    margin-top: 15px;
}
h4.blank_letter.f { 
    position: relative; 
    padding: 0px; 
    padding-top: 30px; 
    color: transparent;
    text-align: left;
}
h4.blank_letter.f:before { 
    content: 'FORM';
    font-family: 'Impact';
    font-size: 50px;
    color: var(--MainColor);
    position: absolute;
    text-align: left;
    font-weight: normal;
    left: 0;
    top: 0;
}
.note {
    text-align: left; 
    color: #FF004E; 
    display: block; 
    padding: 5px 0;
    position: relative;
}
.list_before.info li, .list_before.info li:last-child {
    padding-left: 55px;
}
.contact_form li.last cite{
    background: var(--MainColor);
}
.contact_form li.last blockquote, 
.contact_form li.last cite{
    border: 1px var(--MainColor) solid;
}
.contact_form li.last{
    text-align: center;
    margin-top: 50px;
    justify-content: center;
}
.contact_form li:has(input[type=radio]) .form__insert {
    display: flex;
    gap: 5px;
}
.contact_form li .form__label { 
    padding-right: 5px;
    color: var(--MainColor);
    font-weight: bolder;
}
.contact_form li input.noborder{
    border: 1px #444 solid;
    background: transparent;
    color: #fff;
}
.contact_form li textarea.noborder{
    border: 1px #444 solid;
    background: transparent;
    color: #fff;
}
.contact_form li.last blockquote{
    color: #fff;
}


@media screen and (max-width: 1440px) {
    .contact_content .information_right{
        padding: 0px 250px 50px 250px;
    }
}
@media screen and (max-width: 1024px) {
    .contact_content .information_right{
        padding: 0px 150px 50px 150px;
    }
}
@media screen and (max-width: 768px) {
    .contact_content .information_right{
        padding: 0 20px 0 20px;
    }
}
@media screen and (max-width: 600px) {
    .contact_form li .form__label{
        background: transparent;
        padding:0;
    }
}
/*聯絡我們編輯頁*/
.contact_editbox{
    padding: 0;
    background: #111;
}

/*footer---------------------------*/
.footer_info li p.phone:before{
    content: '電話：';
}
.box_link a { 
    display: none; 
}
.footer {
	background: #000;
	padding: 30px 0 0;
}
.footer .center {
    position: relative;
    max-width: 1300px;
}
.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0px;
    flex-direction: column;
	margin-bottom: 15px;
    grid-gap:0px;
}
.footer_menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 5px;
}
.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 0;
    transition: all 0.3s;
    border: none;
    background: transparent;
    color: #fff;
    display: block;
    width: fit-content;
}
.footer_menu a:before { 
    content: "·"; 
}
.footer_menu a:nth-child(1) { 
    display: none; 
}
.footer_menu a:hover {
	background: transparent;
	color:var(--MainColor);
}
.copy {
	background: linear-gradient(103deg, #000, var(--MainColor), #000);
	color: #fff;
	border:none;
	margin-top: 0px;
	position: relative;
	padding: 15px 0;
}
.copy a{
	color: #fff;
	transition:all 0.3s;
}
.footer_info li { 
    padding: 25px; 
}
.footer_info ul>li:before {
    font-size:120%;
    color: #fff;
    display: block;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--MainColor);
    padding-bottom: 10px;
    letter-spacing: 0.2em;
    font-weight: bold;
    font-family: 'Bebas Neue';
}
.footer_info ul>li:nth-child(1):before { 
    content: "CONTACT"; 
}
.footer_info ul>li:nth-child(2):before { 
    content: "MAIN MENU"; 
}
.footer_info li:nth-child(1) a, 
.footer_info li:nth-child(1) p {
	color: #fff;
	letter-spacing: 0.15em;
}
.footer_info ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px,100%), 1fr));
	letter-spacing: 0.15em;
}
.footer_logo img { 
    width: 100%; 
}
.footer_logo {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    margin: 0px;
}
@media screen and (max-width: 768px) { 
.footer_info li { 
    flex-direction: column;
} 
.footer_info li+li{
    margin-top: 0;
}
.footer{
    padding: 25px 0 54px;
}
}

/*手機版選單*/
.stellarnav .menu-toggle:after{
    display: none;
}
.stellarnav .menu-toggle span.bars span{
    background:#fff;
    height: 1px;
    width: 30px;
}
.sticky .stellarnav .menu-toggle span.bars span{
    background: #fff;
}
.stellarnav .menu-toggle{
    padding: 27px 25px;
}

/*第二層*/
.stellarnav.mobile.left .close-menu{
    background: var(--MainColor);
    color: #fff;
}
.stellarnav .icon-close:before{
    border-bottom: solid 3px #ffffff;
}
.stellarnav .icon-close:after{
    border-bottom: solid 3px #ffffff;
}
.stellarnav.mobile.right > ul, 
.stellarnav.mobile.left > ul{
    background: #000;
}

/*bottom menu*/
#bottom_menu li a{
    background: #111;
    color: #fff;
}
#bottom_menu li{
    border-right: 1px solid #444;
}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { 
    padding:30px 0 54px; 
}
#to_top { 
    bottom:80px;
}
}



