@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/*反白顏色*/
::-moz-selection {
    background-color: #141D3D;
    color: #fff;
}

::selection {
    background-color: #141D3D;
    color: #fff;
}


body {overflow-x: hidden;}

&::-webkit-scrollbar {width: 6px;}

&::-webkit-scrollbar-track {background: #f0f0f0;}

&::-webkit-scrollbar-thumb {background-color: #979797;border-radius: 3px;}

/*開場NAV */
.pageIndex .stellarnav.desktop {
    opacity: 0;
    animation: banner-navbar 1s forwards;
}
.stellarnav.desktop {
    opacity: 1;
    z-index: 0;
}
@keyframes banner-navbar {
    0% {right: -50px;opacity: 0;}
    100% {right: 0px;opacity: 1;}
}
/*--------------------------------*/
.nav-header {
    opacity: 1;
}
.pageIndex .nav-header {
    opacity: 0;
    animation: banner-nav-logo 1s forwards;
}
@keyframes banner-nav-logo {
    0% {margin-left: -330px;opacity: 0;}
    100% {margin-left: 50px;opacity: 1;}
}
@media screen and (max-width: 768px) {
  .pageIndex .nav-header {
    animation: none !important; /* 取消動畫 */
    margin-left: 0;             /* 回到原始位置 */
    opacity: 1;                 /* 顯示 */
  }
}

/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(n):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/0933396147/text01.png);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
    animation: inside1 2s;
    animation-timing-function: cubic-bezier(0.72, 0.01, 0.27, 0.99);
}

/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {transform: translate(20%, 0%);opacity: 0;}
    50%{}
	100%{opacity: 1;}
}
/*-----------------------------------------*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.header_area {
    position: relative;
    z-index: 9999;
    padding: 0px;
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    height: 110px;
    align-content: center;
    box-shadow: 0px 3px 10px 0px #0000002e;
}
.header_area:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 40%;
    height: 110px;
    background: #c8181c;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translate(-50%, -50%);
    left: 80%;
    top: 50%;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #fff;
}
.main_header_area .container {
    max-width: 100%;
    margin: auto;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    grid-gap: 0 20px;
    align-items: center;
    justify-content: space-between;
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 330px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-left: 50px;
    margin-top: 20px;
}
.me_tp_features {
    display: none;}
.stellarnav {
    top: 28px;
    position: relative;
    width: 830px;
    z-index: 9900;
    line-height: normal;
}
.stellarnav:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    background: #151d3f;
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.stellarnav ul {
    margin: 0;
    padding: 0;
    text-align: right;
    margin-right: 50px;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 56px;
    height: 56px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
}
.stellarnav li.has-sub > a:after {
    content: '+';
    margin-left: 10px;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.stellarnav > ul > li:after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    height: 4px;
    background: #c8181c;
    transform: translate(-50%, -50%);
    bottom: -2px;
    left: 50%;
    transition: 0.3s all;
}
.stellarnav > ul > li:hover:after {
    width: 70%;
    transition: 0.3s all;
}
/*-----------下拉--------------*/
.stellarnav ul ul {
    top: auto;
    width: 180px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    background: #fff;
}
.stellarnav li li {
    display: block;
    border: 0px #eee solid;
    border-bottom-width: 0;
}
.stellarnav li a {
    padding: 14px 13px;
    display: block;
    color: #151d3f;
}
.stellarnav li li:last-of-type {
    border-bottom-width: 0px;
}
.stellarnav li li:before {
    content: "";
    position: absolute;
    width: 0px;
    height: 100%;
    background: #c8181c;
    transition: .3s;
}
.stellarnav li li:hover:before {
    transition: .3s;
    width: 5px;
}
.stellarnav li li.has-sub > a:after {
    margin-left: 10px;
    float: right;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;
    border-left: 0px solid #898989;
    position: relative;
    top: 4px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
/*---------768menu設定------------*/
.stellarnav.mobile {
    position: absolute;
    left: 12px;
    top: 0px;
    width: auto;
    display: inline-block;
}
@media (max-width: 768px) {
.stellarnav.mobile > ul > li > a {
    color: #151d3f;
    padding: 15px 43px 15px 10px;
}
.stellarnav > ul > li:after {
    display: none;
}
.stellarnav li li:before{
    display: none;
}
}

/*-----------------------------*/
.info_fix_links {display: flex!important;}
.linksBtn {display: none;}
a.info_fix_default.info_fix_tel2 {display: none;}/*桃園車場電話隱藏*/

.info_fix_links a {
    display: flex;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 3px;
    transition: .3s;
    background: rgb(36 46 87);
    margin-bottom: 2px;
    color: #FFFFFF;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
}
.info_fix_links a:hover {
    background: #c8181c;
}

#to_top {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 600;
    width: 50px;
    height: 50px;
    padding-top: 10px;
    font-size: 0px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background: #888;
    box-shadow: unset;
    border-radius: 3px;
}
#to_top i.top:before, #to_top i.top:after {
    height: 16px;
    width: 2px;
    top: 8px;
    left: 50%;
}
#to_top i:before, #to_top i:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100px;
    background: #ffffff;
    transition: all 100ms ease-in-out;
}

/*--------------首頁連動購物車----------------*/
.i_prod_tit, .i_video_tit {
    text-align: center;
    margin: 30px 0;
}
.i_prod_tit span, .i_video_tit span {
    color: #151d3f;
    font-weight: 800;
    font-family: noto sans TC;
    letter-spacing: 1px;
    font-size: 30px;
}
.products-list .item a {
    display: flex;
    margin: 0 auto;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    padding-bottom: 30px;
    position: relative;
    height: 100%;
}
.products-list .item a:hover .pic img {
    transform: scale(1.2);
    transition: .5s all;
}
.products-list .pic img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.products-list .name {
    font-size: 17px;
    color: #151d3f;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 1.5em;
}
.products-list .more {
    border: 0;
    color: #c8181c;
    font-size: 14px;
    font-weight: bold;
    line-height: 32px;
    text-align: right;
    transition: all .5s;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: -20px;
    opacity: 0;
    letter-spacing: 2px;
}
.products-list .item a:hover .more {
    background: unset;
    color: #c8181c;
    letter-spacing: 2px;
}
.products-list .item:hover .more {
    opacity: 1;
}
.animated-arrow {background: #151d3f;}
/*結束*/

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/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: 80px 0 0;
    font-size: 14px;
    background: #f0f0f0;
    position: relative;
    z-index: 99;
}
.footer_info {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    padding-right: 0px;
    justify-items: center;
}
.footer_logo {
    display: inline-block;
    vertical-align: top;
    max-width: 360px;
    margin: 0;
}
.box_link {
    display: none;
}
.footer_info ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.footer_info li:nth-child(1) {
    display: flex;
    width: 760px;
    flex-direction: column;
    flex-wrap: wrap;
    height: 140px;
    align-content: space-between;
}
.footer_info li:nth-child(1):before {
    content: "";
    width: 760px;
    position: absolute;
    height: 1px;
    background: #ddd;
    transform: translate(-50%, -50%);
    top: 25%;
    left: 50%;
}

.footer_info li p.tel2:before {content: '桃園車場電話：';}
.footer_info li p.add2:before {content: '桃園車場地址：';}
.footer_info li p.tel:before {content: '台中車場電話：';}
.footer_info li p.add:before {content: '台中車場地址：';}

p.tel2 {order: -7;}/*桃園車場電話*/
p.add2 {order: -6;}/*桃園車場地址*/
p.tel {order: -5;}/*台中車場電話*/
p.add {order: -4;}/*台中車場地址*/

.footer_info li p {
    line-height: 190%;
    letter-spacing: 1px;
    color: #151d3f;
}
.footer_info li p a {
    line-height: 175%;
    letter-spacing: 1px;
    color: #151d3f;
    transition: .3s all;
}
.footer_info li p a:hover {
    transition: .3s all;
    color: #c8181c;
}

.footer_menu a {
    display: inline-block;
    padding: 10px 15px;
    border: 0px;
    margin: 0 10px 5px 0;
    font-size: 14px;
    line-height: 100%;
    color: #888;
    background: #fff;
    transition: .3s;
}
.footer_menu a:hover {
    background: #999;
    color: #fff;
    transition: .3s;
}

.copy {
    text-align: center;
    padding: 7px 0;
    font-size: 13px;
    color: #7f828f;
    border-top: 0px #ddd solid;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: #151d3f;
}
.copy a {
    color: #7f828f;
}
.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;}
/*----------------購物車頁面設定------------------*/
.product-layer-two > li {
    width: 100%;
    max-width: 100%;
    padding: 0px;
    text-align: left;
    border-bottom: 0px dotted #ccc;
    padding-bottom: 5px;
}
.product-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: #f3f3f3;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #151d3f;
    font-weight: 600;
}
.product-layer-two li i {
    position: absolute;
    right: 0;
    top: 0;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #c8181c;
}
.product-layer-two li li a {
    padding: 5px 10px;
    font-weight: 500;
}
.product-layer-two li li:hover > a {
    background: #fff;
    color: #c8181c;
}
/*-------------下層------------*/
.sidebarBtn h2 {
    color: #151d3f;
    font-size: 24px;
    margin-bottom: 10px;
}
.edit {
    margin: auto;
    padding: 20px 0;
    line-height: 190%;
}
/*--*/
.prod_related {
    background: #151d3f;
    padding: 50px 15px;
}
.prod_related h6 {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}
.prod_related h6 span:before {
    content: '相關推薦';
    font-size: 24px;
    color: #fff;
}
.related_list li a {
    display: block;
    padding: 0px;
    background: unset;
    height: 100%;
}
.related_list li a p {
    font-size: 16px;
    color: #fff;
    line-height: 3;
    font-weight: 800;
}
.related_list li:hover a img {
    transform: scale(1.2);
    transition: .5s all;
}
.related_list li a img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.lastPage {
    font-size: 16px;
    color: #151d3f;
    background: #ffffff;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}
/*---------------結束---------------*/






@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1230px) {
.navigation {width: 100%;position: relative;padding: 0;display: flex;grid-gap: 0 20px;align-items: center;justify-content: space-between;flex-direction: column;}
.header_area:before {content: "";display: block;position: absolute;width: 20%;height: 110px;background: #c8181c;clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);transform: translate(-50%, -50%);left: 90%;top: 50%;}
.stellarnav {top: 10px;width: 100%;}
.stellarnav:before {content: "";display: block;position: absolute;top: 0;width: 100%;height: 60px;background: #151d3f;clip-path: none;}
.stellarnav ul {margin: 0;padding: 0;text-align: center;margin-right: unset;}
}

@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;}
/*---------------------------------------*/
.header_area:before {display: none;}
.stellarnav:before {display: none;}
/*---------------------------------------*/
.footer_info li:nth-child(1) {
    height: unset;
    width: unset;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
}
.footer_info li:nth-child(1):before {
    content: "";
    width: 90%;
    position: absolute;
    height: 1px;
    background: #ddd;
    transform: translate(-50%, -50%);
    top: 16%;
    left: 50%;
}
.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}
}

@media screen and (max-width: 425px) {
.nav-header {
    max-width: 210px;
}
.stellarnav.mobile {
    position: absolute;
    left: 12px;
    top: 15px;
    width: auto;
    display: inline-block;
}
/*------------------------------*/
.footer_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.footer_info {
    padding-left: 20px;
    padding-right: 20px;
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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 {}
.banner h5 {
    color: #151d3f;
    font-weight: 800;
    font-family: noto sans TC;
    letter-spacing: 1px;
    font-size: 40px;
    margin: 165px auto 165px 110px;
    display: grid;
    grid-template-columns: 47px 1fr;
    text-align: left;
}
.banner h5:before {
    content: "";
    background: url(https://pic03.eapple.com.tw/0933396147/LOGO-J.png);
    background-position: center;
    background-size: cover;
    width: 42px;
    height: 58px;
    display: block;
}
.banner h5:after {
    display: block;
    content: "客戶的需求就是我們的使命，服務就是我們唯一的業務。";
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 400;
    margin-top: 6px;
    color: #000000;
    grid-column: 1 / 3;
}
/*RWD縮放768至320大小調整*/
@media screen and (max-width: 768px) {  
.banner h5 {
    color: #151d3f;
    font-weight: 800;
    font-family: noto sans TC;
    letter-spacing: 1px;
    font-size: 30px;
    margin: auto;
    margin-left: 25px;
}
.banner h5:before {
        content: "";
        background: url(https://pic03.eapple.com.tw/0933396147/LOGO-J.png);
        background-position: center;
        background-size: cover;
        width: 31px;
        height: 44px;
    }
.banner h5:after {
    display: block;
    content: "客戶的需求就是我們的使命，服務就是我們唯一的業務。";
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 400;
    margin-top: 3px;
    color: #000000;
}
}

@media screen and (max-width: 425px) {
.banner h5:after {display: none;}
.banner h5 {
    color: #151d3f;
    font-weight: 800;
    font-family: noto sans TC;
    letter-spacing: 1px;
    font-size: 30px;
    grid-template-columns: 43px 1fr;
    margin-left: auto;
}
.banner h5:before {
    content: "";
    background: url(https://pic03.eapple.com.tw/0933396147/LOGO-J.png);
    background-position: center;
    background-size: cover;
    width: 41px;
    height: 42px;
}
}
/*結束*/

.banner.banA {}
.banner.banB {display: none;}/*服務項目*/
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banF {
    background-image: url(https://pic03.eapple.com.tw/0933396147/banner.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: left;
    min-height: 25vw;
}/*全系列設備/展示影片*/
.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/0933396147/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    min-height: 25vw;
}/*案例分享/資訊專區*/

/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */


/*文章設定*/
h5.blog_le_t {display: none;}
.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0px;
    border-radius: 0px;
    padding: 10px 35px 10px 10px;
    border-bottom: 1px solid;
}
.blog_le .accordion {
    list-style-type: none;
    margin: auto;
    border-radius: 0px;
    border: 0px #ccc solid;
    overflow: hidden;
}
.accordion li .link a {
    cursor: pointer;
    display: block;
    padding: 15px 10px;
    color: #151d3f;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}
/*-------------------------*/
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}
/*RWD縮放*/
@media screen and (max-width: 1024px) {
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
}
@media screen and (max-width: 425px) {
.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
}
/*結束*/
.subbox_item a {
    display: flex;
    position: relative;
    grid-gap: 15px;
    flex-direction: column;
}
.blog_list_ri h5 {
    font-weight: 800;
    font-size: 20px;
    color: #151d3f;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.blog_list_ri em {
    font-size: 14px;
    color: #ccc;
    font-style: normal;
    display: block;
    text-align: right;
    letter-spacing: 1px;
}
.blog_list_ri p {
    font-size: 15px;
    color: #666;
    line-height: 180%;
    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;
    transform: translate(-50%, -50%);
    bottom: 50%;
    right: unset;
    left: 50%;
    opacity: 0;
    font-size: 15px;
    color: #c8181c;
    transition: all .6s;
}
.subbox_item a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    border: 0px;
    transition: all .5s;
}
/*-------------下層--------------*/
.blog_in_page .blog_le {
    display: none;
}
.blog_in_page .blog_ri {
    width: 100%;
    padding: 0;
}
.blog_in_page h4.blog_category_title {
    color: #151d3f;
    font-size: 30px;
    border-bottom: 1px #ccc solid;
    padding: 10px 0;
    margin-bottom: 20px;
}
.articel_mainPic img {
    display: none;}/*封面照片隱藏*/
.blog_back a.article_btn_prev {
    background: #c8181c;
}
.blog_back a.article_btn_back {
    background: #151d3f;
}
.blog_back a.article_btn_next {
    background: #c8181c;
}
/*-----------*/
.news_related {
    background: #f0f0f0;
    padding: 50px 15px;
}
.news_related h6 span:before {
    content: '相關文章';
    font-size: 24px;
    color: #151d3f;
}
.news_related_list li a {
    display: block;
    padding: 0px;
    background: unset;
    height: 100%;
}
.news_related_list li a p {
    font-size: 15px;
    font-weight: 800;
    color: #151d3f;
    line-height: 3;
}
/*-------結束-------*/

/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */


/*相本分類全版面 ( 限制最寬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) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
#bottom_menu li:nth-of-type(3) {display: none;}/*業主要求03-380-5533電話號碼不顯示*/
}

@media screen and (max-width: 600px) { 
}




