@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) */
/*英文字體-Anton*/
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/*反白顏色*/
::-moz-selection {
  background-color: #fe3133;
  color: #fff;
}

::selection {
  background-color: #fe3133;
  color: #fff;
}



body {
  overflow: overlay;
}

/*捲軸拉霸*/
&::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #fe3133;
}

&::-webkit-scrollbar-track {
  box-shadow: transparent;
}

/*背景*/
&::-webkit-scrollbar-track-piece {
  background: #000;
}

/*捲軸背景(必須)*/
&::-webkit-scrollbar {
  background: #000;
  width: 7px;
}

/*上下按鈕*/
&::-webkit-scrollbar-button {
  display: none;
  background: #000;
  border-radius: 0;
}




/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/finearc88/text01.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before{
    animation: inside1 3s;
    animation-timing-function: linear;
}

/*---------閃爍光源01--------------*/
.bannerindex .swiper-slide.swiper-slide:nth-child(1):after {
    content: "";
    position: absolute;
    height: 150%;
    width: 100%;
    z-index: 1;
    background-image: url(https://pic03.eapple.com.tw/finearc88/light01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    left: 63%;
    top: 80%;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: lighting 0.8s infinite ;
} 

/*----------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/finearc88/text02.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: inside2 2s;
    animation-timing-function: linear;
}
/*---------閃爍光源02--------------*/
.bannerindex .swiper-slide.swiper-slide:nth-child(2):after {
    content: "";
    position: absolute;
    height: 150%;
    width: 100%;
    z-index: 1;
    background-image: url(https://pic03.eapple.com.tw/finearc88/light01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    left: 41%;
    top: 77%;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: lighting 0.8s infinite ;
} 

/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {clip-path: polygon(0% 0%, 0 0%, 0% 100%, 0% 100%);transform:translate(-20%, 0%);}
   25% {transform:translate(0%, 0%);}
   75% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
  100% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
}

@keyframes inside2{
	0% {clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);transform:translate(0%, 20%);}
    25%{transform:translate(0%, 0%);}
    75%{clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
  100% {clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);}
}

@keyframes lighting {
    0% {transform: translate(-50%, -50%) scale(1.0);}
    50% {transform: translate(-50%, -50%) scale(0.1);opacity: 0;}
    75% {transform: translate(-50%, -50%) scale(1.0) ;opacity: 0.3;}
    100% {transform: translate(-50%, -50%) scale(0.1) ;opacity: 0;}
}
/*-----------------------------------------*/

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area {
    position: relative;
    z-index: 9999;
    padding: 10px;
    background: linear-gradient(0deg, transparent 10%, #000000c4);
    position: fixed;
    top: 0;
    width: 100%;
    transition: .5s;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #0000009c;
    transition: .5s;
}
.main_header_area .container {
    max-width: 95%;
    margin: auto;
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 140px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.me_tp_features {
    width: 100%;
    text-align: right;
    display: none;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    grid-gap: 0 20px;
    align-items: center;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 40px;
    height: 40px;
    margin: 0 10px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-family: 'Noto sans TC ExtraBold', 'Anton';
}
.stellarnav > ul > li > a > b:nth-child(1) {
    font-weight: 900;
}
.stellarnav > ul > li > a b:nth-child(2) {
    color: #fe3133;
    letter-spacing: 2px;
    font-family: 'Anton', 'Noto Sans TC';
    font-size: 20px;
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 0px;
}
.stellarnav li.has-sub > a:after {
    opacity: 0;
}
.stellarnav ul ul {
    top: auto;
    width: 160px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    background: #111;
}
.stellarnav li li {
    display: block;
    border: 1px #333 solid;
    border-bottom-width: 0;
        transition: .3s;
}
.stellarnav li a {
    padding: 12px 10px;
    display: block;
    color: #e1e1e1;
    font-size: 15px;
    letter-spacing: 1px;
}
.stellarnav li li:hover {
    background: #222;
    transition: .3s;
}







/*----側邊按鈕-----*/
.info_fix_links {display: flex!important;
}
.linksBtn {display: none;
}
.info_fix_links a {
    display: flex
;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50px;
    transition: .3s;
    background: #fe31334d;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1.4em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
    transition: .5s;
}
.info_fix_links a:hover {
    background: #fe3133;
    transform: translateX(-5px);
    transition: .5s;
}
/*上方選單右邊設定 臉書/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 {}
*/

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/*----------------footer----------------*/
.footer {
    padding: 50px 0 0;
    font-size: 14px;
    background: #191919;
    position: relative;
    z-index: 99;
}
.footer .center {
    position: relative;
    max-width: 1300px;
}
.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 20px;
    padding-right: 0px;
    flex-direction: column;
    align-items: center;
    font-family: noto sans TC;
}
.footer_logo {
    display: inline-block;
    vertical-align: top;
    max-width: 250px;
    margin: 0;
}
.box_link {
    display: none;
}    
.footer_info ul {
    display: block;
    width: 100%;
}
.footer_info li:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
}
.footer_info li p {
    line-height: 220%;
    letter-spacing: 2px;
    color: #cacaca;
}
.footer_info li p a {
    color: #cacaca;
}
.footer_info li:nth-child(2) {
    padding-top: 25px;
}
.footer_menu {
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    grid-gap: 10px 0px;
}
.footer_menu a {
    display: inline-block;
    padding: 10px 10px;
    border: 0px;
    margin: 0px 0px 0px 0px;
    font-size: 15px;
    line-height: 120%;
    color: #fe3133;
    background: unset;
    letter-spacing: 2px;
    font-weight: 900;
}
.footer_menu {
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 140px));
    gap: 25px 0px;
    justify-content: center;
}


/*----------------------------*/
.copy {
    text-align: center;
    padding: 20px 0;
    font-size: 11px;
    color: #6c5757;
    border-top: 1px #292929 solid;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    letter-spacing: 2px;
}
.copy a {
    color: #6c5757;
}
.privacyLinks a+a {
    border-left: 0px solid #cccccc;
}




/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}

@media screen and (max-width: 600px) {
}
/*-----產品專區-----*/
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #4b4b4b;
    padding-bottom: 0px;
}
.product-layer-two li a {
    position: relative;
    border: 0px #fff solid;
    background: unset;
    padding: 15px 16px;
    display: block;
    font-size: 16px;
    color: #fe3133;
    font-family: 'Noto Sans TC', 'Anton';
    font-weight: 700;
    letter-spacing: 1px;
}
.products-list {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-gap: 60px 30px;
}
.products-list .item a {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 40px;
    position: relative;
    height: 100%;
}
.products-list .name {
    font-size: 16px;
    font-family: 'Noto Sans TC';
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2em;
}
.products-list .more {
    border: 1px solid #fe3133;
    color: #fe3133;
    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: #fe3133;
    color: #fff;
    letter-spacing: 2px;
}
/*-----RWD-----*/
.product_menu_list>h5 {
    color: #fff;
}
a.pd_menu_toggle i {
    width: 1.5em;
    text-align: center;
    color: #fff;
}
/*--下層--*/
.product_info_page .main_part {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 50px 20px;
}
.proImgSwiper li {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.sidebarBtn {
    padding: 15px;
    display: inline-block;
    width: 28%;
    vertical-align: top;
    border: 2px #292929 solid;
    background: #111;
}
.sidebarBtn h2 {
    color: #ccc;
    font-size: 25px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
div#number_area {
    color: #999;
    letter-spacing: 1px;
    font-weight: 600;
}
.product_info {
    margin: 25px 0;
}
.product_info li {
    margin: 15px 0;
}
.product_info li span {
    display: block;
    font-size: 12px;
    color: #ccc;
    margin-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}
.product_info li .txt_box {
    display: inline-block;
    vertical-align: top;
    color: #fe3133;
}
.radio-inline__label {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px 5px 2px 0;
    border-radius: 5px;
    transition: all .2s;
    color: #fe3133;
    border: 1px solid #444;
    cursor: pointer;
}
.toShare {
    border-top: 1px solid #777;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    padding-top: 20px;
}
.pd_tabTitle li {
    position: relative;
    z-index: 5;
    flex: 1;
    border-bottom: 1px solid #ffffff;
}
.pd_tabTitle li.activeTab a {
    color: #ccc;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}
.pd_tabTitle li.activeTab::after {
    height: 0px;
}
.edit {
    color: #999;
    line-height: 230%;
    letter-spacing: 0.5px;
    font-size: 17px;
    margin: auto;
    padding: 20px 0;
}
.prod_related {
    background: #111111;
    padding: 25px 15px;
    border-top: 1px solid #333;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #fe3133;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #444;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}














/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
#content_main {
    background: #222;
}/*首頁底色*/
#content {
    background: #111;
}/*功能頁底色*/

/*內頁BANNER 設定*/
.banner {
    min-height: 400px;
    background: url(https://pic03.eapple.com.tw/finearc88/banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}/*底圖*/
.banner h5 {
    color: #fff;
    font-size: 35px;
    letter-spacing: 4px;
    padding-top: 7%;
}
.banner h5:before {
    content: "";
    font-size: 65px;
    font-family: 'Anton';
    letter-spacing: 2px;
    font-weight: 500;
    color: #FE3133;
    display: block;
    height: 85px;
    filter: drop-shadow(0px 0px 15px #FE3133);
}

.banner.banA {}
.banner.banB {display: none;}/*編輯頁*/
.banner.banC {display: none;}/*聯絡我們*/
.banner.banD {}
.banner.banE {}
.banner.banF h5:before {
    content: "Products";
}/*產品專區*/
.banner.banblog h5:before {
    content: "NEWS";
}/*最新消息*/

/*--------表單設定------------*/
.contact_editbox {
    margin: auto;
    padding: 0;
}
.contact_content {
    margin: auto;
    padding: 150px 10px 100px 10px;
}
.contact_content form {
    justify-content: center;
    display: flex;
}
.contact_content .information_left {
    display: none;
}    
.contact_content .information_right {
    width: 1300px;
    padding-left: 10px;
}
.blank_letter {
    font-family: 'Anton', 'noto sans TC', '微軟正黑體';
    padding-top: 30px;
    font-size: 30px;
    font-weight: 800;
    color: #fe3133;
    background-position: left bottom;
    background-repeat: no-repeat;
    padding-bottom: 30px;
    text-align: center;
}
.note {
    display: block;
    font-size: 13px;
    text-align: right;
    letter-spacing: 1px;
}
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
.contact_form li {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap: 20px;
}
.contact_form li:nth-child(5) {
    grid-column: 1 / 3;
}/*留言內容佔2fr*/
.contact_form li .form__label {
    display: block;
    max-width: 85px;
    text-align: right;
    color: #ccc;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}
.contact_form li input.noborder {
    border: 0px;
    background: unset;
    border-bottom: 1px solid #333;
}
.contact_form li textarea.noborder {
    border: 0px;
    background: unset;
    border-bottom: 1px solid #333;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 0;
    width: 180px;
    max-width: calc(50% - 10px);
}
.contact_form li.last input {
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 7px;
    letter-spacing: 3px;
}
.contact_form li.last blockquote {
    color: #fff;
    background: #666;
}
.contact_form li.last cite {
    background: #fe3133;
    color: #fff;
}
@media screen and (max-width: 768px) {
.contact_form {
    grid-template-columns: 1fr;
}
.contact_form li:nth-child(5) {
    grid-column: unset;
}
}
@media screen and (max-width: 600px) {
.contact_form li {
    grid-template-columns: 1fr;
}
.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
    background: #252525;
}
}



/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/
.path {
    display: none;
}
.main_part {
    width: 100%;
    max-width: 1700px;
    margin: auto;
    padding: 50px 20px;
}
h5.blog_le_t {
    display: none;
}    
.blog_search {
    position: relative;
    margin-bottom: 40px;
}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    border: 0;
    border-radius: 0px;
    padding: 10px 35px 10px 10px;
    background: unset;
    border-bottom: 1px solid #777;
}
.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 999;
    width: 20px;
    height: 20px;
    background: url(https://pic03.eapple.com.tw/finearc88/img_search.png) no-repeat center center;
    border: none;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0;
    border: 0;
    overflow: hidden;
}
.accordion li .link a {
    cursor: pointer;
    display: block;
    font-family: 'Noto Sans TC';
    padding: 15px 10px;
    letter-spacing: 1px;
    color: #fe3133;
    font-size: 17px;
    font-weight: 800;
    position: relative;
}
.accordion li+li .link {
    border-top: 1px solid #444;
}
.blog_ri {
    width: calc(100% - 240px);
    padding: 0 0 0 40px;
    min-height: 75vh;
}
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
}
.subbox_item {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #222;
}
.subbox_item a {
    display: grid;
    grid-template-columns: 230px 1fr;
    position: relative;
    grid-gap: 25px;
}
.blog_list_ri {
    display: flex;
    padding: 10px 20px 10px 0px;
    flex-direction: column;
    justify-content: center;
}
.blog_list_ri h5 {
    font-size: 23px;
    color: #fe3133;
    font-weight: 800;
    font-family: 'Noto Sans TC';
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.blog_list_ri>*+* {
    margin-top: 15px;
}
.blog_list_ri em {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    font-style: normal;
    display: block;
}
.blog_list_ri p {
    font-size: 16px;
    color: #ababab;
    line-height: 200%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
}
.subbox_item a:before {
    content: 'READ MORE';
    position: absolute;
    z-index: 19;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    font-size: 25px;
    font-family: 'Anton';
    letter-spacing: 1px;
    color: #fe3133;
    transition: all .6s;
}
.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: #111111cc;
    opacity: 0;
    border: 1px solid #fe313391;
    transition: all .5s;
}

/*------------RWD-----------*/
@media screen and (max-width: 1440px) {
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 60px;
}
.subbox_item a {
    display: grid;
    grid-template-columns: 250px 1fr;
    position: relative;
    grid-gap: 25px;
}
}

@media screen and (max-width: 1024px) {
.subbox_item a {
    display: grid;
    grid-template-columns: 40% 1fr;
    position: relative;
    grid-gap: 25px;
}
}

@media screen and (max-width: 768px) {
.blog_ri {
        width: 100%;
        display: block;
        padding: 0;
        margin: auto;
    }
}

@media screen and (max-width: 500px) {
.subbox_item a {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    grid-gap: 25px;
}    
.blog_list_le {
    display: none;
}
.blog_list_ri {
    display: flex;
    padding: 10px 20px 10px 20px;
    flex-direction: column;
    justify-content: center;
}
}
/*--下層--*/
h4.blog_category_title {
    color: #ffffff;
}    
.articel_mainPic img {
    display: none;}
.toShareNews {
    color: #b0b0b0;
}
.blog_box_edit * {
    line-height: 230%;
    letter-spacing: 0.5px;
    color: #a4a4a4;
}
.news_related {
    display: none;
}
.blog_back a.article_btn_back {
    background: #fe3133;
}
/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




