@charset "utf-8";
body {
	font-family: "Poppins", sans-serif, "Noto Sans TC", sans-serif;
}
/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/* "Noto Sans TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
/* "Noto Serif TC" */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');



/* 英文字體 Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* 英文字體 Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*網站全域設定/＝＝＝＝＝*/


/*反白顏色*/
::-moz-selection {
    background-color: #52b1cc;
    color: #fff;
}

::selection {
    background-color: #52b1cc;
    color: #fff;
}

.swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/fibernet/bg-01.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}

.swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/fibernet/bg-02.png);
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999;
}


.swiper-banner .swiper-slide.swiper-slide-active:nth-child(1):before {
    animation: left-in 1.5s forwards cubic-bezier(0.68, 0.1, 0.265, 1);
}

.swiper-banner .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: right-in 1.5s forwards cubic-bezier(0.68, 0.1, 0.265, 1);
}




@keyframes left-in {
    0% {
        transform: translate(-100%, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}




@keyframes right-in {
    0% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}



/*卷軸*/
&::-webkit-scrollbar { background: #f1f1f1; width: 7px;}
&::-webkit-scrollbar-button { display: none; background: #f1f1f1; border-radius: 0;}
&::-webkit-scrollbar-track-piece { background: #f1f1f1;}
&::-webkit-scrollbar-thumb { /* border-radius: 4px; */ background-color: #52b1cc;}
&::-webkit-scrollbar-track { box-shadow: transparent;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.bannerindex .swiper-banner:after {
    content: "";
    position: absolute;
    top: 9.5%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 1.6s;
    transition-delay: 0.8s;
    z-index: 100;
}

.header_area {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: transparent;
    padding: 0;

}

.header_area.sticky {
    /* -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12); */
    /* box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12); */
    background: transparent;
}
.main_header_area:after {
    content: "";
    width: 100%;
    height: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition-timing-function: ease-in;
    padding: 0 40px;
    transition: .5s ease;
    background: #ffffff;
}
.main_header_area:after {
    height: 0%;
}
.header_area.sticky .main_header_area:after {
    height: 100%;
}


.main_header_area:before {
    content: "";
    background: linear-gradient(180deg, #1d1d1d, transparent);
    width: 100%;
    height: 10vw;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: .6;
    transition: .5s;
}
.pageIndex .main_header_area:before {
    background: linear-gradient(180deg, #010101, transparent);
}
.header_area.sticky .main_header_area:before {
    opacity: 0;
    transition: .5s;
    height: auto;
}



.main_header_area .container {
    max-width: 100%;
    padding: 0 40px;
    transition: 0.5s;
    padding: 0;
}

.header_area .main_header_area {
    background: transparent;
    padding: 0 5vw 0;
    transition: all 0.3s;
    position: relative;
}

.header_area.sticky .main_header_area {
    background: transparent;
    padding: 0 5vw;
    transition: all 0.3s;
}

.navigation {
    grid-template-columns: 260px 1fr;
    align-items: center;
}


@media screen and (max-width: 1440px) {

.header_area .main_header_area { padding: 0 3vw 0;}

.navigation { grid-template-columns: 220px 1fr;}

.bannerindex .swiper-banner:after { top: 12.5%;}
}

@media screen and (max-width: 1200px) {
.bannerindex .swiper-banner:after { top: 15.5%;}
.header_area.sticky .main_header_area { padding: 0 3vw 0;}
}

@media screen and (max-width: 1024px) {
.bannerindex .swiper-banner:after { top: 22.5%;}
}

@media screen and (max-width: 900px) {
.bannerindex .swiper-banner:after { top: 25.5%;}
}

@media screen and (max-width: 768px) {
.bannerindex .swiper-banner:after { display: none;}
}


/*選單 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
.pageIndex .stellarnav {
    /* opacity: 0;
    transition: all 0.3s;
    pointer-events: none; */
}
.header_area.sticky .stellarnav {
    opacity: 1;
    transition: all 0.3s;
    pointer-events: unset;
}

/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    /* padding: 0; */
    font-size: 0;
}
.stellarnav > ul > li:after {
    content: "";
    display: block;
    background-color: transparent;
    width: 0;
    height: 50px;
    position: absolute;
    top: -32%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
    pointer-events: none;
    content: none;
}
.stellarnav > ul > li:hover::after {
    box-shadow: rgb(255, 255, 255) 0px 0px 31px;
    width: 100%;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav > ul > li.has-sub > a {
    padding-right: 5px;
}
.stellarnav > ul > li > a {
    font-family: "Noto Sans TC";
    color: #ffffff;
    letter-spacing: 1.5px;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    padding: 35px 10px;
    margin: 0px 0;
    line-height: 1.5;
    height: 90px;
    min-width: 80px;
    font-weight: 500;
}
.stellarnav > ul > li:hover > a, .stellarnav > ul > li > a:hover{
    color: #15729B;
}
.header_area.sticky .stellarnav > ul > li > a {
    color: #4d4d4d;
}

.stellarnav > ul > li > a:before{
    content:'';
    width: 0%;
    height: 3px;
    display: block;
    position: absolute;
    bottom: 0px;
    top: auto;
    z-index: 1;
    background-color: #fff;
    background-color: #15729B;
    -webkit-transition: width .3s cubic-bezier(.47,0,.745,.715);
    transition: width .3s cubic-bezier(.47,0,.745,.715);
    left: auto;
    right: 0;
}
.sticky .stellarnav > ul > li > a:before{
    background-color: #15729B;
    bottom: 0;
    height: 3px;
}
.sticky .stellarnav > ul > li > a:hover {
    color: #15729B;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
}
.stellarnav > ul > li > a:hover:before {
    color: #000;
    transition: .5s cubic-bezier(0.77, 0, 0.65, 0.99);
    transition: width .3s cubic-bezier(.19,1,.22,1);
    left: 0;
    width: 100%;
}
.stellarnav ul li:hover a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.stellarnav ul ul>li>a:hover, .stellarnav ul ul>li>a:focus {
    color: #131413;
    opacity: 1;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}

/* 第二層 */
.stellarnav ul ul {
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    list-style: none;
    z-index: 98;
    white-space: nowrap;
    background: #f0f0f0;
    background: #fff;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    /* margin-left: -75px; */
    box-shadow: 0 3px 5px rgba(0, 0, 0, .175);
    border: none;
    min-width: auto;
    width: fit-content;
    margin: 0;
}
.stellarnav li li {
    border: 0;
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}
.stellarnav.desktop li li.has-sub > a:after{
    content: '';
    display: block;
    height: 0px;
    border-bottom: solid 3px #777;
    position: absolute;
    top: 40%;
    right: 15px;
    height: 8px;
    width: 8px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transition: border .3s;
    transition: border .3s;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-color: transparent #51adc9 #51adc9 transparent;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 13px;
    text-align: center;
    padding: 10px 55px;
    white-space: nowrap;
    font-family: "Noto Sans TC", sans-serif;
    border-bottom: 1px solid #f6f6f6;
    transition: all .5s;
    letter-spacing: 1.5px;
    transform: translateX(0);
    /* padding-right: 50px; */
    text-align: left;
}
.stellarnav.desktop li.has-sub li:last-child a{
    border: 0;
}
.stellarnav.desktop li.has-sub li a:hover{
    color: #fff;
    background: #51adc9;
}
.news_classes > li:hover > a, .news_classes > li:focus > a {
    color: #fff;    
    background: #808080;
}
/* 第三層 */
.stellarnav ul ul ul {
    top: 0;
    left: 100%;
    margin: 0;
    width: fit-content;
    transform: unset;
}


.me_tp_features {
    display: none;
}


@media screen and (max-width: 1200px) {
.stellarnav > ul > li {padding: 0 2px;}

.stellarnav > ul > li > a { padding: 35px 5px;}
}

@media screen and (max-width: 1024px) {
.stellarnav > ul > li > a {padding: 5px 10px; height: 35px;}
}

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */

/* === Stellarnav 主結構 === */
.stellarnav li a {
    color: #444;
    background: transparent;
    border-radius: 0;
}

.stellarnav > ul > li.drop-left > ul {
    background: transparent;
    padding: 10px 0;
}

.stellarnav > ul > li ul li a:hover {
    background: transparent;
}

.header_area.sticky .stellarnav > ul > li > a {
    color: #ffffff;
}

.stellarnav > ul > li > a:before{
    display: none;
}

/* Mobile - 左側選單 */

.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    font-size: 0px;
    background: #52b1cc;
    padding: 7px;
}

.stellarnav .icon-close {
    right: 12px;
}

.stellarnav .icon-close:before,.stellarnav .icon-close:after {
    border-bottom: solid 2px #ffffff;
}

.stellarnav.mobile.left > ul {
    top: -1px;
    border: none;
    background: #050318d4;
    backdrop-filter: saturate(93%) blur(10px);
    padding: 0;
    animation:fade-in-left .8s cubic-bezier(.39,.575,.565,1.000) both;
    max-width: 350px;
}

@keyframes fade-in-left{
    0%{transform:translateX(-150px);opacity:0}
    100%{transform:translateX(0);opacity:1}
}


/* === Mobile 版本 Stellarnav === */
.stellarnav.mobile {
    left: 14px;
    top: 28px;
}

.stellarnav.mobile li a {
    border-bottom: none
}

.stellarnav.mobile > ul > li {
    border-bottom: 1px #ffffff29 solid;
    padding: 10px;
}

.stellarnav.mobile ul {
    background: transparent;
    padding: 2px;
}

.stellarnav.mobile ul ul {
    padding: 2px;
}

.stellarnav li li {
    padding: 0px;
    border: none;
    display: block;
    float: none;
}

.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a {
    padding-left: 0px;
}

/* Mobile - li.open 狀態 */
.stellarnav.mobile li.open {
    background: transparent;
    padding: 10px;
}

.stellarnav.mobile li.open li.open {
    background: transparent;
    padding: 0;
}

/* Mobile - 下層連結 */
.stellarnav.mobile li.open li a:not(.dd-toggle) {
    margin-left: 30px;
    padding: 10px 20px;
    color: #ffffff;
    border-bottom: none;
    transition: all 0.3s;
    border: none;
    position: relative;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 150%;
}

.stellarnav.mobile li.open li.open li {
    margin-left: 30px;
    transition: .6s;
}

.stellarnav.mobile li.open li li a:not(.dd-toggle) {
    border-left: 1pt solid #52b1cc;
}


/* Mobile - a.dd-toggle 外觀 */


/*.stellarnav a.dd-toggle .icon-plus {
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: relative;
}*/

.stellarnav a.dd-toggle .icon-plus:before,
.stellarnav a.dd-toggle .icon-plus:after {
    content: '';
    position: absolute;
    background: #ffffff;
    left: 50%;
    top: 50%;
    border: none;
}

.stellarnav a.dd-toggle .icon-plus:before {
    width: 15px; height: 1px;
    transform: translate(-50%,-50%);

}
.stellarnav a.dd-toggle .icon-plus:after {
    width: 1px; height: 15px;
    transform: translate(-50%,-50%);
}

.stellarnav li.open > a.dd-toggle .icon-plus:before {
    background: #52b1cc;
}

.stellarnav li.open > a.dd-toggle .icon-plus:after {
    opacity: 0;
}

.stellarnav li.open > a.dd-toggle .icon-plus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* Mobile - a.dd-toggle 位置 */
.stellarnav.mobile > ul > li > a.dd-toggle {
    top: 10px;
}
.stellarnav.mobile > ul > li > ul > li a.dd-toggle {
    top: 0px;
}


/* === Menu Toggle 按鈕 === */
.stellarnav .menu-toggle:after {
    display: none;
    color: #f1f0e0;
}

.stellarnav .menu-toggle span.bars span {
    height: 2px;
    border-radius: 0;
    margin: 0 auto 6px;
}

.pageIndex .stellarnav .menu-toggle span.bars span {
    background: #fff;
}

.stellarnav .menu-toggle span.bars span, .pageIndex .sticky .stellarnav .menu-toggle span.bars span{
    background: #52b1cc;
}

/* === 次選單BEFORE === */

.stellarnav.mobile li.open li a:before {
    opacity: 0;
}

.stellarnav.mobile li.open li.open li a:before {
    display: none;
}

.stellarnav.mobile li.open li a:not(.dd-toggle):before {
  content: '●';
  position: absolute;
  top: 50%;
  left: 0;
  color: #52b1cc;
  font-size: 9px;
  transform: translateY(-50%);
  transition: all .5s;
  opacity: 1;
}


/*選單逐一出現*/

/*.stellarnav> ul > li > a {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.stellarnav.left.mobile.active > ul > li > a {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(1) > a {
    transition-delay: 0.3s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(2) > a {
    transition-delay: 0.5s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(3) > a {
    transition-delay: 0.7s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(4) > a {
    transition-delay: 0.9s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(5) > a {
    transition-delay: 1.1s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(6) > a {
    transition-delay: 1.3s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(7) > a {
    transition-delay: 1.5s;
}

.stellarnav.left.mobile.active  > ul > li:nth-of-type(8) > a {
    transition-delay: 1.7s;
}*/

/*底部聯絡按鈕*/

#bottom_menu {
    background: #0b3c69db; 
}

#bottom_menu li {
    border-right: 1px solid #15729b;
}

#bottom_menu li a {
    padding: 15px 5px 10px;
    color: #fff;
}

#bottom_menu li a em {
    display: none;
}

}

@media screen and (max-width: 600px) {

.stellarnav.mobile {
        left: 21px;
        top: 15px;
    }

}


/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header {
    grid-row: 1;
    width: fit-content;
    max-width: 260px;
    padding: 16px 0;
    transition: all 0.5s;
    font-size: 0;
}
.sticky .nav-header {
    /* padding: 6px 0; */
}
.nav-brand {
    margin: 0;
}
.nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(100);
}
.sticky .nav-brand img {
    filter: none; 
}


@media screen and (max-width: 1440px) {
.nav-header { max-width: 220px;}
}

@media screen and (max-width: 600px) {
.nav-header { max-width: 200px;}
}

@media screen and (max-width: 500px) {
.nav-header { max-width: 180px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*手機LOGO
.nav-brand-m {}
*/

/*上方選單右邊設定 臉書/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個--結束 */

@media screen and (max-width: 1200px) {
    @media screen and (max-width: 980px) {
        @media screen and (max-width: 768px) {
            @media screen and (max-width: 600px) {
                .main_part {
                    padding: 50px 5% 10px;
                }
            }
        }
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車*/
.product_page .main_part {max-width: 1600px;}
.product-wrapper { width: 100%;}
.product_info_page .product-layer-two { display: none;}

.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 .products-list {  width: calc(100% - 350px);}

ul.page { width: 100%;}
.products-list {  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); grid-gap: 0px 0px;}
.products-list .item { border: 1px solid transparent; padding: 15px 20px 20px; transition: 0.5s;}
.products-list .item:hover { border: 1px solid #e8e8e8;}

/*hover*/
.products-list .more { opacity: 0; border: 1px solid #15729B; color: #15729B; font-size: 14px;}
.products-list .item a:hover .more { opacity: 1; background: #15729B;}

/*側邊*/
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_info_page .product_menu_list {  display: none;}/*內頁不顯示*/

.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 { 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:hover > a:before { background:#ad925e;}

.product-layer-two li li a{ padding:5px 10px 5px 17px; font-size: 12px;}
.product-layer-two li li > a:before { 
        content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 5px;
         margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li:hover > a { background:#fff; color:#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 {  border-bottom: unset;  padding-bottom: 15px;}
.product-layer-two li a {  border: unset;background: transparent;  padding: 7px 16px;  color: #333;font-size: 12px; transition: 0.5s;}
.product-layer-two li:hover a { letter-spacing: 2px;}
.product-layer-two li i { height: 22px;  font-size: 12px; top: 5px;}
.product-layer-two li i.close::before {  color: #51adc9;content: "\f107";}
.product-layer-two li li:hover > a:before {  background: #51adc9;}
.product-layer-two li li:hover > a { background: #fff; color: #51adc9;}
.product-layer-two li a:hover { background: #15729B; color: #fff;}

.fa-circle-plus::before { content: "\f107";}
.product-layer-two li:hover i:before { color: #15729B;}
.product-layer-two li.active a { border: unset; color: #51adc9;}
.product-layer-two li li.active a {  background: transparent;}

/*滿版*/
/*roducts-list {grid-gap:5px; grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));}*/

/*相關推薦*/
.prod_related h6 span:before {color: #353535; letter-spacing: 0px; font-weight: 500;}
.lastPage {background:none;}
.prod_related {background: none; padding: 100px 15px 70px 15px;}
.related_list li a {padding: 15px; box-shadow: 0 0 10px #d8d8d8e0;}
.related_list li a p {padding-top: 5px;}

/*內頁*/
#prod_thumbSwiper .swiper-slide::before {background:#ffffff;}
.pd_tabTitle li.activeTab::after {height: 0px;}
.pd_tabTitle li.activeTab a {color: #444; letter-spacing: 0px; font-size: 24px; font-weight: 600;}
.swiper-button-next, .swiper-rtl .swiper-button-prev {right: var(--swiper-navigation-sides-offset, 15px);}
.swiper-button-prev, .swiper-rtl .swiper-button-next {left: var(--swiper-navigation-sides-offset, 15px);}
.proImgSwiper {background: none;}
.sidebarBtn {border: 0px #f4f4f4 solid; background: none;}
.pd_tabTitle li {border-bottom: 1px solid #d7d7d7;}

/*特*/
.sidebarBtn h2 {color: #444;}
.products-list .pic {color: #d2c2af;}
.products-list .pic img {transform: scale(1); transition: 0.5s ease;}
.products-list .pic img:hover {transform: scale(1.1); transition: 0.5s ease;}
.products-list .pic img{left: 50%; top: 50%;}

.products-list .price {display: none;}
.products-list .price .sp_price {text-align: left;}
.products-list .price b{text-align: right; font-weight: 500; font-size: 15px;}


.inquiry_a1{background: #ADA17E;}
.inquiry_a2{background: #ADA17E;}
.inquiry_a3{background: #ADA17E;}
.inquiry_a1, .inquiry_a2, .inquiry_a3 {border-radius: 0px; letter-spacing: 2px;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover {background: #222222;}

.products-list .price b , .ori_price {color: #d2c2af; font-weight: 700;}
.products-list .price .sp_price , .sp_price {color: #d55c4e; font-weight: 700;}
.sidebarBtn .sp_price {color: #d55c4e;}

.product_info_page .edit {text-align: center;}


@media screen and (max-width: 1330px) {
.show-list { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
}

@media screen and (max-width: 950px) {
.sidebarBtn { padding: 0px; width: 100%;}
.product_main { padding: 0 30px 30px; width: 100%;}
.show_content { padding: 0px;}
}

@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;}

.products-list { grid-template-columns: 1fr 1fr;}

/*hover*/
.products-list .item { border: unset;  padding: 15px 10px 20px !important;}
.products-list .item:hover { border: unset;}
.products-list .more { opacity: 1;background: #15729B;  color: #fff;}

/*內頁*/
.prod_related {  padding: 50px 15px;}
.related_list { grid-template-columns: 1fr 1fr;}
.related_list li a p { text-align: left; line-height: 120%;}
#prod_thumbSwiper .swiper-slide {height: 100%;}
.news_related_list { grid-template-columns: 1fr;}
}

@media screen and (max-width: 600px) { 
.product_menu_list>h5 { font-size: 20px;}
.product-layer-two > li {padding-bottom: 0px; }
.product-layer-two li a { padding: 5px 0px; font-size: 12px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
/* .footer {
    padding: 3% 0 0;
    height: 33.6vh;
    font-size: 14px;
    background: #97908600;
    position: relative;
    z-index: 99;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://pic03.eapple.com.tw/fibernet/footer.jpg) center / cover no-repeat;
    z-index: -1;
}

.footer_info {
    display: none;
}

.copy {
    display: none;
} */

.footer_info { display: flex; align-items: center; flex-direction: column; justify-content: space-between;}
.footer_menu { display: flex; justify-content: center;}
.footer_info h6 { display: flex; justify-content: center;}
.footer_info h5 { display: flex; justify-content: center;}
.footer_info { display: flex; align-items: center;}
.footer_info li p, .footer_info li p a { display: flex; justify-content: center;}


@media (max-width: 1230px) {
    .footer_text {
         margin: 0 0 0 0;
    }
}


/*top按鈕*/
#to_top {left: auto;right: 20px;bottom: 16px;width: 42px;height: 42px;padding-top: 8px;color: #fff;
    box-shadow: none;background: #15729b;border-radius: 16px;font-size: 10px;}
#to_top i.top {height: 15px;}
#to_top i:before, #to_top i:after {background: #fff;height: 10px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {    
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    justify-content: flex-start;
    padding: 40px 80px;
}
.banner h5 {
    font-size: 50px;
    color: #ffffff;
    position: relative;
    letter-spacing: 3px;
    font-weight: bold;
    animation: slide-top 1.8s 0.5s both;
    text-align: left;
    width: 100%;
    top: 0px;
    max-width: 1300px;
    margin: 0 auto;
}

.banner h5:after {
    position: absolute;
    white-space: pre;
    font-size: 18px;
    color: #ecf0f1;
    font-family: "Poppins", sans-serif;
    left: 0;
    bottom: -25px;
    line-height: 160%;
    font-weight: 500;
}

.banner.banC h5{ top: 30px;}

.article_a .banner h5:after {
    content: "Knowledge+";
}

.article_b .banner h5:after {
    content: "Latest Offers";
}

.banner.banC h5:after{
    content: "Contact";
}

.banner.banA {}
.banner.banB {display: none;}
.banner.banC {
    background: transparent;
    max-width: 1300px;
    margin: 0 auto;
}
.banner.banD {}
.banner.banE {}
.article_a .banner {background: url(https://pic03.eapple.com.tw/fibernet/banblog.jpg) no-repeat center bottom ; height: 420px;}
.article_b .banner { background: url(https://pic03.eapple.com.tw/fibernet/banF.jpg) no-repeat center bottom ; height: 420px;}
/*.banner.banF { background: url(https://pic03.eapple.com.tw/fibernet/banF.jpg) no-repeat center bottom ; height: 420px;}*/


/*動畫*/
@keyframes slide-top {
    0% { -webkit-transform: translateY(100%);transform: translateY(100%); opacity:0; }
    100% {-webkit-transform: translateY(0); transform: translateY(0); opacity:1;}
}


@media screen and (max-width: 768px) {
.banner {padding: 60px 20px 120px;}
.banner h5 {font-size: 32px;}
.banner h5:after {font-size: 16px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*其他編輯頁*/
.services_page .path ,.other_page .path ,.contact_page .path {
    display: none;
}
.path p {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_page #content {
    min-height: 80vh;
    background: url(https://pic03.eapple.com.tw/fibernet/all_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: normal;
    background-attachment: fixed;
}

.list_before {
    display: flex;
    flex-direction: column;
}
/*標題*/
.blank_letter {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    padding-top: 20px;
}
/*左側資訊*/
.information_left.fadeInLeft.animated15.clearfix { padding: 0px 60px 0px 0px;}
.contact_content .information_left{margin-bottom: 80px;    width: 350px;}
.contact_page .list_before{color: #fff;}
.list_before.info li {
    border-bottom: 1px solid #eeeeee45;
    padding: 5px 5px 10px 70px;
    word-break: break-word;
    line-height: 170%;
	font-size: 14px;
}
.list_before.info li:before {
    font-weight: 400;
    letter-spacing: 1px;
    width: 60px;
    color: #fff;
}
.list_before * a {
    color: #ffffff;
}
.list_before * a:hover {
    color: #51adc9;
}
.info_LINE:before{
    content: "LINE ID";
}
/*順序*/

.info_LINE{order:1}
.info_PHONE{order:2}
.info_TEL{order:3}
.info_MAIL{order:4}
.info_ADD{order:5}



/*表格設定*/
.contact_content .information_right {
    width: calc(100% - 360px);
    padding: 80px 80px 20px;
    padding-top: 100px;
    background: transparent;
    backdrop-filter: saturate(93%) blur(15px);
    border-radius: 10px;
    border: 1px solid #51ADC9;
    box-shadow: 0 0 5px #51ADC9, 0 0 10px #51ADC9;
}
button, input, optgroup, select, textarea{outline: none;}
.contact_form { grid-gap: 25px;}
.contact_form li.last { grid-gap: 25px;}
.contact_form li input.noborder,.contact_form li textarea.noborder {border: none;background: #fafafa;}
.contact_form li.last blockquote, .contact_form li.last cite{border: 1px solid #51ADC9; border-radius: 30px; box-shadow: 0 0 5px #51ADC9, 0 0 10px #51ADC9;}
.contact_form li.last blockquote{color: #888;}
.contact_form li.last cite {background: #157298;}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input {letter-spacing: 4px;}
.noborder {padding: 10px; border-radius: 20px;}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
	grid-template-columns: repeat(auto-fit, minmax(20px, 20px) minmax(250px, 1fr));line-height: 1.8;}
.form select{width: 100%;border: 1px solid #eee;padding: 6px 26px 6px 6px;}
.contact_form li {
    grid-template-columns: 100px 1fr;
    grid-gap: 30px;
	margin-bottom: 8px;
}
.contact_form li .form__label {
    display: block;
    width: 90px;
    max-width: 100%;
    text-align: justify;
    font-size: 14px;
    color: #fff;
}
.contact_form li .form__label::after {
  content: '';
  display: inline-block;
  width: 100%;
}

.blank_letter.f {
    position: absolute;
    top: 10px;
    left: 55px;
}

.note.red {
    position: relative;
}

.red {
    color: #51ADC9;
    position: absolute;
    left: 50px;
}

.contact_form li.last input { color: #fff;}

.contact_form li .form__insert{
	font-size: 14px;
	letter-spacing: 2.5px;
}

    
@media screen and (max-width: 768px) {
    /*標題*/
    .contact_content .information_right {width: 100%;padding-left: 20px; padding: 80px 25px 20px;}
	/*左側資訊*/
    .contact_content .information_left{ width: 100%;}
    .information_left.fadeInLeft.animated15.clearfix {padding: 0px ;}
	.list_before.info li{
		font-size: 12px;
		padding: 5px 5px 15px 70px;
	}
	.list_before.info li:before{
		font-size: 12px;
	}
	.info_TEL2:before {
    content: "營業\A時間";
    word-break: break-word;
    }
    .info_TEL2 {
        display: flex;
        align-items: center;
    }
	/*表單設定*/
    .contact_form li {
        grid-gap: 5px;
        grid-template-columns: 140px 1fr;
    }
	.contact_form li .form__label{
		    padding-left: 25px;
			width: 85%;
	}
	.red {left: 20px;}
	.form select{margin: 0;}
	.contact_form li.last blockquote, .contact_form li.last cite{padding: 0;}
	.contact_form li.last input{font-size: 12px;}
    .contact_page .main_part { padding: 0 25px 150px;}
}

@media screen and (max-width: 600px){
    .blank_letter{font-weight: 500;}
	.contact_form {margin-top: 20px;}
	.contact_form li {margin-bottom: 10px;}
    .contact_form li .form__label {
        background: transparent;
        padding: 0;
        width: 80%;
        font-weight: 400;
        padding-left: 30px;
    }
	.contact_form li:nth-of-type(5) .form__label:after {
    letter-spacing: 5.9px;
}
	.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{
		font-size: 12px;}
	.form select{font-size: 12px;}
	.blank_letter {font-size: 16px;font-weight: 600;}
	.noborder {padding: 5px;}
}

@media screen and (max-width: 500px){
    .contact_form li {
        grid-template-columns: 1fr;
    }
	.contact_form li .form__label::after{
		display: none;
	}
    .contact_form li .form__label {
        text-align: start;
        letter-spacing: 1px;
        padding-bottom: 10px;
        padding-left: 0px;
    }
    .contact_form li:nth-of-type(5) .form__label:after {
        display: contents;
        letter-spacing: 1px;
        padding: 0px 0px 0px 20px;
    }
    .contact_content .information_right {
        width: 100%;
        padding-left: 10px;
    }

.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{
		padding-top: 10px;
	}
	.red {
    color: #51ADC9;
    position: static;}
}

/***********************************************************************/

@media screen and (max-width: 768px) {
	/* 開啟手機板下方按鈕所需設定 */
	#bottom_menu {
		display: flex;
	}
	.footer.with_shopping_mode {
		padding: 30px 0 70px;
	}
	#to_top {
		bottom: 60px;
	}
.stellarnav>ul>li:after{
	display: none;
}
.stellarnav>ul>li:before {
    left: 14%;
}

.stellarnav.mobile ul ul {
    margin: 10px;
}

.stellarnav a.dd-toggle .icon-plus:before,
.stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 2px #ffffff;
}

.stellarnav.mobile li.open {
    padding-top: 15px;
}

}



/**/

.info_fix_map span::before {
    content: "\f3c5" !important;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    position: static;
    padding-top: 15px;
}

/**/
#bottom_menu li:nth-of-type(2)  {display: none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章A/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*文章設定*/
.blog_page .main_part, .blog_in_page .main_part { max-width: 1600px;}
.subbox_item a {grid-template-columns: 1fr; grid-gap: 15px;}
.i_blog_le , .blog_list_le {aspect-ratio: 16 / 9;position: relative;}
.i_blog_ri h5 ,.blog_list_ri h5 { letter-spacing: 1px;}
.i_blog_ri em ,.blog_list_ri em { color: #555; margin: 5px 0 15px; padding-bottom: 15px;}
.i_blog_le img ,.blog_list_le img {transition: 0.5s;}
.subbox_item a:before ,.subbox_item a:after{display: none;}

/*hover*/
.module_i_news li a:hover .i_blog_le img , .subbox_item:hover .blog_list_le img { transform:scale(1.1);  transition: 0.8s;}
.blog_page.article_a .i_blog_le:before , .blog_page.article_a .blog_list_le:before { content: 'READ MORE'; position: absolute; z-index: 19; bottom: 0px;  right: 0px;  opacity: 0; text-align: center;
        font-size: 13px; color: #eeeeee; background: #15729B; padding: 14px 15px; transition: all .6s;}
.module_i_news li a:hover .i_blog_le:before , .subbox_item:hover .blog_list_le:before {  opacity: 1; transition: all .5s;}

/*按鈕*/
.i_blog_b { margin: -80px auto 0 0; text-align: center; order: 3;position: relative; overflow: hidden;}
/*.i_blog_b a i.fa-solid.fa-arrow-right { display: none;}
.fa-arrow-right::before { display: none;}*/
.i_blog_b a { background: transparent; width: fit-content;  margin-top: 0;  letter-spacing: 2px;  line-height: 60px;  height: auto;  display: block;  color: #6a6a6a;}


/*文章B/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*.blog_page.article_b .blog_le .accordion > li:hover, .blog_page.article_b .blog_le .accordion > li.on_this_category {
  background: #674636 !important;
  transition: all 1s;
}*/

.blog_page.article_b .blog_le .accordion > li:hover .link a, .blog_page.article_b .blog_le .accordion > li.on_this_category .link a {
    color: #ffffff !important;
}

.blog_page.article_b .blog_le .accordion > li:hover .link i,.blog_page.article_b .blog_le .accordion > li.on_this_category .link i {
    color: #fff !important;
}

.blog_page.article_b .subbox_item {
    padding-bottom: 50px;
    border-bottom: 1px solid #e3e2de;
}

.blog_page.article_b .blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
}

.blog_page.article_b .subbox_item a {
    grid-gap: 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.blog_page.article_b .blog_list_ri h5 {
    padding: 70px 0 20px;
}

.blog_page.article_b .blog_list_le {
    width: 35%;
}

.blog_page.article_b .subbox_item a::after{
  display: none;
}

.blog_page.article_b .subbox_item a::before {
  content: 'READ MORE';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #15729B;
  color: #ffffff;
  font-weight: 400;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1;
  border-radius: 0px;
}

.blog_page.article_b .subbox_item a:hover::before {
  transform: translateY(0%);
  opacity: 1;
  border-radius: 0px;
}

.blog_page.article_b .subbox_item:hover .blog_list_le img {
    transform: scale(0.9);
}

.blog_page.article_b .blog_list_le img {
    object-fit: contain;
    z-index: 999;
}


/*列表*/
.blog_le {  width: 220px;  position: sticky;  top: 100px;  margin-bottom: 0px; height: 500px;}
.blog_list_le { overflow: hidden;}
.blog_ri { padding: 0 0 0 100px;}
.blog_subbox { grid-template-columns: repeat(auto-fill,minmax(450px, 1fr));}

/*側邊*/
h5.blog_le_t { margin-bottom: 13px;}
.blog_search { margin-bottom: 50px;}
.blog_search input[type=search] { border: unset; border-bottom: 1px solid;  border-radius: 0px;}
.blog_le .accordion { border-radius: 0px;border: 1px #e8e8e8 solid;}
.accordion li+li .link { border-top: 1px solid #e8e8e8;}
h5.blog_le_t { display: flex; flex-direction: column-reverse; color: #2F2F2F;  letter-spacing: 5px; display: none;}
h5.blog_le_t span { font-size: 50px;}
h5.blog_le_t em {  font-size: 19px;  letter-spacing: 3px; padding-top: 5px; font-weight: 300; display: none;}
.accordion li .link a { color: #2f2f2f;letter-spacing: 1px;font-weight: 500;}

/*顏色*/
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background:#15729B !important;}

/*內頁*/
/*標題*/
.blog_shareData{flex-wrap: wrap; flex-direction: row;}
.articel_mainPic img { display: block; max-width: 50%;}
.blog_in_page.article_a .articel_mainPic img , .blog_in_page.article_b .articel_mainPic img {  display: none;}
.blog_box_edit {  width: 100%;}
.blog_box_edit { display: flex; flex-direction: row;  flex-wrap: wrap;}
.blog_box_edit * {  width: 100%;}
.news_tags {order: -1;}

/*按鈕*/
.blog_back { justify-content: center; justify-items: center; width: 100%; border-top: 1px solid #bebebe; padding-top: 30px;}
.blog_back a.article_btn_prev,.blog_back a.article_btn_back ,.blog_back a.article_btn_next{ background: transparent; width: 120px; border-radius: 99em; display: flex; align-items: center; justify-content: center; }
.blog_back a.article_btn_prev , .blog_back a.article_btn_next { border: unset; color: #2f2f2f;}
.blog_back a.article_btn_back{ color:#2f2f2f;}
.blog_back a.article_btn_back:hover  , .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {  color: #15729B;}


/*相關文章*/
.news_related { background: #f4f4f4; padding: 80px 15px;}
.news_related_list { max-width: 1550px; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));}
.news_related h6 span:before { content: '相關文章';  font-size: 24px; color: #2F2F2F; font-weight: 500; letter-spacing: 2px;}
.news_related h6 { margin: 0 auto 50px;}

.news_related_list li:nth-child(n+4) { display: none;}
.news_related_list li a { padding: 0px; background: transparent;}
.news_related_list li figure {  aspect-ratio: 16 / 9;}
.news_related_list li a p { padding-top: 15px;}

.lastPage { color: #15729B;  border: 1px solid; background: transparent; transition: 0.5s; margin: 100px auto 0;}
.lastPage:hover { background: #15729B; color: #fff;}


@media screen and (max-width: 1300px) {
.blog_subbox { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));}
}

@media screen and (max-width: 1200px){
.blog_page.article_b .subbox_item a::before {height: 35px;}
.blog_page.article_b .blog_list_ri h5 {padding: 35px 0 20px;}
}

@media screen and (max-width: 1024px){
/*.blog_page.article_b .blog_list_ri h5 { padding: 8px 0 20px;}
.blog_page.article_b .subbox_item a::before { height: 25px;}
.contact_content, .show_content, .contact_editbox {display: flex; flex-direction: column;}
.blog_le {width: 100%; position: unset; height: auto;}
.blog_ri {width: 100%;}*/
.blog_page.article_b .blog_list_le { width: 100%;}
}

@media screen and (max-width: 768px){
.blog_ri { padding: 0px;}
.blog_le { width: 100%; position: inherit;  margin-bottom: 0px; height: auto;}
.blog_search { margin-bottom: 0px;}
.blog_subbox { grid-template-columns: 1fr 1fr;}
.subbox_item { border-bottom: unset; }
.blog_search input[type=search] { background: transparent; }

.blog_page.article_b .blog_list_le {width: 100%;}
.blog_page.article_b .subbox_item a { grid-gap: 0px; padding: 0px;}
.blog_list_ri h5 { display: block;}
.blog_page.article_b .blog_list_ri h5 { padding: 20px 0 20px; font-size: 17px;}
.blog_page.article_b .blog_list_ri p { font-size: 12px; letter-spacing: 1px;}
.articel_mainPic img {max-width: 100%;}
.news_related_list { grid-template-columns: 1fr;}
}

@media screen and (max-width: 600px) { 
.blog_subbox { grid-template-columns: 1fr;}
.blog_le {padding: 0px; }
.blog_le .accordion { border: unset;}
.accordion li .link a {  padding: 10px 10px;}
.blog_page.article_b .blog_list_le{aspect-ratio: auto;}
}

@media screen and (max-width: 480px) {
.news_related { padding: 50px 15px;}
.blog_back {padding-bottom: 30px; }
}   


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他*/
.path {padding: 0px 0px 10px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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;}
.footer_info li+li{margin: 0;}
}





