@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family: "微軟正黑體",  "Inter", sans-serif;
}
.path p, .path p a{ display: none;}
.edit{ padding: 0px 0;}
.info_fix { display: none;}

.main_part{ max-width: 1400px;}
/* .pageIndex #content_main{background-image: url(https://pic03.eapple.com.tw/newbound/in-bg.jpg);background-position: top;} */



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    height: fit-content;
    position: relative;
}

.pageIndex .swiper-wrapper {
    position: relative;
    overflow: hidden;
}

.pageIndex .swiper-wrapper .swiper-slide {
    background-color: #000;
    height: fit-content;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    background-image: url(https://pic03.eapple.com.tw/newbound/ban1-block.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    background-image: url(https://pic03.eapple.com.tw/newbound/ban2-block.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.pageIndex .swiper-wrapper .swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
    z-index: 1;
}



.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(1)::before {
    background-image: url(https://pic03.eapple.com.tw/newbound/ban1-txt.png);
}


.pageIndex .swiper-wrapper .swiper-slide:nth-of-type(2)::before {
    background-image: url(https://pic03.eapple.com.tw/newbound/ban2-txt.png);
}


.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    content: "";
    animation: banner-block 2s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.pageIndex .swiper-wrapper .swiper-slide.swiper-slide-active::before {
    content: "";
    height: 100%;
    animation: banner-txt 2s both cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 1.2s;
}


@keyframes banner-block {
    0% {
        height: 95%;
        opacity: 0;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

@keyframes banner-txt {
    0% {
        transform: translate(0,-5%);
        opacity: 0;
    }

    100% {
        transform: none;
        opacity: 1;
    }
}



@keyframes bannerScrollAnimation {

    0%,
    100% {
        bottom: 81px;
        border-color: rgba(255, 255, 255, 0.5);
    }

    50% {
        bottom: 90px;
        border-color: #fff;
    }
}

/* @media screen and (max-width: 768px) {
    .pageIndex .swiper-banner .swiper-slide img {
        height: auto;
        width: 200%;
        max-width: 200%;
    }

    .pageIndex .swiper-fade .swiper-slide {
        display: flex;
        justify-content: center;
    }
}



@media screen and (max-width: 768px) {
    .bannerindex::after {
        width: 20%;
    }

    .bannerindex::after {
        filter: brightness(0);
    }
}


@media screen and (max-width: 500px) {
    .bannerindex::after {
        width: 30%;
    }

    .swiper-slide img {}
} */






/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* header */
.header_area {
    transition: all .4s ease;
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: #032d60e3;
    padding: 0;
}
.header_area.sticky { 
    background: transparent;
}

.header_area .main_header_area {
    background: transparent;
    transition: all 0.3s;
    position: relative;
    padding: 0;
}
.header_area.sticky .main_header_area {
    background: transparent;
    transition: all 0.3s;
    position: relative;
    padding: 0;
}
/* .header_area .main_header_area:before {
    content: "";
    background: linear-gradient(180deg, #c4c3bc, transparent);
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 1;
    transition: .5s;
    opacity: 0;
} */

.main_header_area .container {
    max-width: 100%;
    transition: 0.5s;
}
.main_header_area .container:after {
    display: block;
    content: '';
    background: #fff;
    width: 0;
    position: absolute;
    backdrop-filter: blur(10px);
    top: 0;
    right: 0;
    height: 100%;
    transition: all .3s ease;
    z-index: 0;
}
.sticky .container:after{
    width: 100%;
}


/* 導覽列-選單 = = = = = = = = = = = = = = = = =  */
.navigation {
    padding: 0;
    display: block;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    /* flex-direction: row; */
}
.stellarnav {
    position: relative;
    width: 100%;
    z-index: 9900;
    line-height: normal;
    height: 100%;
    text-align: right;
    width: fit-content;
}

.stellarnav.desktop > ul {
    margin: 0;
    text-align: right;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;    
    z-index: 1;
    position: relative;
}


/* 第一層 */
.stellarnav > ul > li {
    position: relative;
    padding: 0 10px;
    font-size: 0;
    padding: 0;
}
.stellarnav.desktop > ul > li > a {
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 500;
    padding: 11PX 15PX 5PX 15PX ;
    margin: 0;
    box-sizing: border-box;
    line-height: 1;
}
.stellarnav.desktop > ul > li > a b {
    color: #fff;
    line-height: 1.1;
    transition: all .3s;
    font-weight: bold;
}

.stellarnav.desktop > ul > li > a:hover b{
    color: #279DD6;
}
.sticky .stellarnav.desktop > ul > li > a b {
    color: #032D60;
}
.sticky .stellarnav.desktop > ul > li > a:hover b {
    color: #279DD6;
}




.stellarnav.desktop ul ul>li>a:hover, .stellarnav.desktop ul ul>li>a:focus {
    color: #101010;
    opacity: 1;
}
.stellarnav.desktop > ul > li.has-sub > a{
    padding-right: 15px;
}
/* 下拉符號移除 */
.stellarnav li.has-sub > a:after{
    content: none;
}




/* 第二層 */
.stellarnav > ul > li:nth-child(4) > ul li:first-child {display: none;
}
.stellarnav.desktop ul ul {
    padding: 0;
    padding-top: 20px;
    background: transparent;
    max-width: 160px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    position: absolute;
    display: block;
}
.stellarnav.desktop li li {
    border: 0;
    background: #032D60;
}
.stellarnav.desktop li.has-sub li a {
    font-size: 14px;
    text-align: center;
    padding: 12px 0;
    letter-spacing: 0.5px;
    color: #fff;
    transition: .3s;
    /* border-bottom: 1px solid #f6f6f6; */
}
.stellarnav.desktop li.has-sub li a:hover {
background: #279DD6;
color: #fff;
}


/* 第三層 */
.stellarnav.desktop ul ul ul{
    padding: 0;
    transform: unset;
    left: 100%;
}

.me_tp_features {
    display: none;
}


.stellarnav > ul > li > a:before{content: "";position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);
width: 60px;height: 1px;background: #279DD6;opacity: 0;transition: all .5s;}
.stellarnav > ul > li > a:hover {color: #279DD6;}
.stellarnav > ul > li > a:hover:before{opacity: 1;bottom: 1px;}
/* .stellarnav li.has-sub > a:hover:after {border-top: 4px solid #B49D77;}
.stellarnav > ul > li > ul a:hover {background: #B49D77;color: #fff;} */



/*電腦LOGO = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.nav-header{
    transition: all 0.3s;
    padding: 15px 0;
    grid-row: 1;
    width: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    align-self: center;
    filter: unset;
}
.nav-brand {
    max-width: 240px;
    font-size: 0;
    transition: all 0.3s;
}
.sticky .nav-brand {
    max-width: 230px;
    font-size: 0;
}
.nav-brand img {
    max-width: 100%;
    filter: contrast(0) brightness(10);
}
.sticky .nav-brand img {
    filter: none;
}

@media screen and (max-width: 1200px) {

/* = = header = = */
/* 導覽列 */
.stellarnav.desktop > ul > li > a {padding: 10px;}
.stellarnav.desktop > ul > li.has-sub > a{padding-right: 10px;}
}

@media screen and (max-width: 1100px) {
/* 導覽列 */
.stellarnav.desktop > ul > li > a {padding: 10px 8px;}
}

@media screen and (max-width: 1024px) {


/* = = header = = */
.header_area {position: sticky;background: #fff;}
.header_area.sticky {background: #fff;}
.navigation {grid-template-columns: 1fr;align-items: center;gap: 0;padding: 0;height: auto;}

/* logo*/
.nav-header {padding-bottom: 0;}
.nav-brand { padding: 5px 0;}
.nav-brand img{filter:unset; }

/* 導覽列 */
.stellarnav.desktop {opacity: 1;pointer-events: unset;height: auto;}
.stellarnav.desktop ul {text-align: center;height: auto;}
.stellarnav.desktop > ul > li {padding: 0;padding-bottom: 10px;}  
.stellarnav.desktop > ul > li > a {letter-spacing: 1px;margin: 0;font-size: 15px;padding: 10px;}
.stellarnav.desktop > ul > li > a b {color: #032D60;}
/* 第二層 */
.stellarnav.desktop ul ul {padding-top: 10px;}
}


@media screen and (min-width: 768px) {
/* header */
.stellarnav.desktop > ul {display: flex !important;}
}




/* @768上方區域_小於手機版面768 */
@media screen and (max-width: 768px) {
/* logo*/    
.nav-header {padding: 0;width: calc(100% - 60px);text-align: center;position: relative;z-index: 100;margin-left: 20px;height: 100%;display: flex;align-self: center;}
.nav-brand {width: 200px; margin-left: 0;}
.sticky .nav-brand {max-width: 180px;}




/* = = header = = */
.header_area { }
.main_header_area .container {padding: 0;}
.navigation {display: flex;justify-content: space-between;flex-direction: row;gap: 0;}


/* 導覽列 */
.stellarnav.mobile {
    /* left: 0; */
    right: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 60px;
    margin-left: auto;
    position: relative;
    z-index: 100;
    width: 60px;
    height: 60px;
    /* background: #4a4a4b; */
    padding: 8px;    
}
/* 導覽列漢堡選單 */
.stellarnav.mobile .menu-toggle {
    display: flex;
    margin: auto;
    padding: 0;
    flex-direction: column;
    gap: 8px;
}
/* 漢堡選單樣式 */
.stellarnav .menu-toggle:after {
    text-transform: capitalize;
    content: 'Menu';
    font-size: 10px;
    text-transform: uppercase;
    color: var(--SubColor5);
    transform: scale(1);
    letter-spacing: 0.04em;
}
.stellarnav .menu-toggle span.bars {
    display: block;
    margin: 0;
}
.stellarnav .menu-toggle span.bars span {
    width: 28px;
    height: 1px;
    border-radius: 0;
    background: var(--SubColor5);
    margin: 0 auto 6px;
}
.stellarnav .menu-toggle span.bars span:nth-child(3) {
    margin: 0 auto;
}

/* 導覽列展開 */
.stellarnav.mobile.left > ul {
    left: unset;
    right: 0;
    font-size: 0;
    max-width: 100%;
    padding: 0 30px;        
    /*右滑出現*/
    right: -100vw;
    overflow-y: auto;
    transition: all .5s ease;
}
.stellarnav.mobile.left.active > ul{        
    right: 0;
    max-width: 100%;
}


.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    display: inline-block;
    font-size: 12px;
    background: transparent;
    height: 76px;
    width: fit-content;
    padding: 0;
    margin: 26px 0 28px;
    text-transform: capitalize;
    content: 'Menu';
    font-size: 14px;
    color: #000;
    transform: scale(1);
    letter-spacing: 0.04em;
    height: fit-content;
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
}
.stellarnav .icon-close {
    box-sizing: border-box;
    width: 18px;
    height: 12px;
    position: relative;
    display: inline-block;
    margin: 2px 9px 0 3px;
}
.stellarnav .icon-close:before , .stellarnav .icon-close:after {
    width: 18px;
    height: 0px;
    border-bottom: solid 1px #000;
}
/* 導覽列選取Hover效果 */
.stellarnav ul:hover li a {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}


/* 第一層 */
.stellarnav.mobile  > ul > li:after {
    content: none;
}
.stellarnav.mobile > ul > li {
    padding: 5px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}
.stellarnav.mobile li.open {
    background: #f3f3f3;
    color: #fff;
    padding: 0 0 5px;
}
.stellarnav.mobile > ul > li > a {
    text-align: left;
    overflow: auto;
    height: auto;
    line-height: 150%;
    display: block;
    color: var(--MainColor);
    font-size: 15px;
    letter-spacing: 1px;
}
.stellarnav.mobile li.open > a {
    border: 0;
    padding: 15px 10px;
}    
.stellarnav > ul > li > a:before{content: none;}
.stellarnav.mobile > ul > li > a b:last-child{display: none;}
.stellarnav > ul > li > a b{ font-weight: bold; }
.stellarnav > ul > li > a:hover b { color: #279DD6;}


/* +符號修改 = = */
.stellarnav.mobile > ul > li > a.dd-toggle {top: 5px;}
.stellarnav.mobile > ul > li.open > a.dd-toggle {top: 0;}
.stellarnav a.dd-toggle .icon-plus:before {
    width: 8px;
    height: 8px;
    border-bottom: solid 1px #666;
    top: 50%;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
}
.stellarnav a.dd-toggle .icon-plus:after {
    width: 8px;
    height: 8PX;
    top: 50%;
    border-bottom: solid 1px #666;
    transform: rotate(45deg);
}
.stellarnav li.open > a.dd-toggle .icon-plus {
    -moz-transform: translateY(10px) scaleY(-1);
    -webkit-transform: translateY(10px) scaleY(-1);
    -o-transform: translateY(10px) scaleY(-1);
    transform: translateY(10px) scaleY(-1);
}/* +符號修改END = = */


/* 第二層 */
.stellarnav.mobile ul ul {
left: unset;
margin: 0 auto;
padding: 0;
width: calc(100% - 10px);
margin: auto;
left: unset;
box-shadow: none;
}
.stellarnav li li{
font-size: 13px;
color: #333333;
letter-spacing: .5px;
}


}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/* 展示footer demo */
.footer_logo{ display: none;}
.footer_info ul { display: none;}
.copy{ display: none;}
.box_link{ display: none;}
.footer {
    border-top: none !important;
    padding:0 0;
    height:305px;
    background-image: url(https://pic03.eapple.com.tw/newbound/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.fix_ri{display: block!important;}

@media screen and (max-width:1400px) {
    .footer{ height: 225px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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_menu_list { display: none;} 
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#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: 1024px) {
    .bannerindex{ margin-top: 151px; }
}

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;  margin-top: 57px; }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {}
.banner h5 {}
.banner.banA {}
.banner.banB {}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}


/*內頁BANNER 設定*/
.banner { display: flex; align-items: center; justify-content: center ;position: relative; background-size: cover; background-position:center; background-repeat: no-repeat; min-height: 320px; margin-top: 83px;}

.banner h5 {  font-family: "微軟正黑體",  "Inter", sans-serif;  font-size: 36px; color: #fff; display: flex; flex-wrap: wrap; justify-content: center ; z-index: 12; text-shadow:  5px 5px 8px #0000005c;}

.banner { background-image: url(https://pic03.eapple.com.tw/newbound/ban-all.jpg); background-position: left;}


@media screen and (max-width:1024px) {
  .banner { margin-top: 149px;}
}

@media screen and (max-width:768px) {
  .banner { min-height: 250px; margin-top: 57px;}
}

@media screen and (max-width:550px) {
    .banner h5:before{ font-size: 60px;}
}

@media screen and (max-width:500px) {
    .banner { min-height: 130px!important;}
    .banner h5{font-size: 26px;}
    .banner h5:before{ font-size: 44px;}
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.module_i_news .title_i_box h4{ font-size: 36px; color: #032d60; font-weight: bold; display: flex; flex-direction: column; justify-content: center;}
/* .module_i_news .title_i_box h4::before{ content: "CASE"; color: #0176c3; font-size: 28px; font-weight: 900;} */
.module_i_news section{ margin: 60px auto 20px; max-width: 1400px;}

.i_blog_ri h5{font-size: 22px; font-weight: bold; color: #032d60;}
.i_blog_ri em{ color: #0176c3;}
.i_blog_ri p{ color: #000;}
.module_i_news li a:after{ border: 2px #dae5ee dashed; background: unset;}
.module_i_news li a:before{
  top: 50%;
    left: 50%;
    bottom: unset;
    right: unset;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    font-size: 22px;
    font-family: "Inter", sans-serif;
    color: #dae5ee;
    font-weight: bold;
    text-align: center;
}
.animated-arrow{ background: #0176c4; border: 0PX; color: #fff; width: 180px; transition: 0.5s; border-radius: 6px;}
.animated-arrow:hover{ background: #032d60; color: #fff; border: 0px;}

.blog_page #content,.blog_in_page #content{ background-image: url(https://pic03.eapple.com.tw/newbound/in-bg.jpg); background-size: cover; background-position: center;}


/* 文章管理 */
h5.blog_le_t{ color: #346AB6;}
h5.blog_le_t em{ color: #003661;}
h4.blog_category_title{font-size: 28px; color: #032d60;}
h4.blog_category_title span{font-size: 24px;}
/*文章管理/外層＝＝*/
.module_i_news { padding: 0 20px 50px 20px; }
.module_i_news ul, .blog_subbox {    display: grid;    gap: 10px;}
.module_i_news li , .subbox_item {    width: 100%;border-bottom: unset;}
.module_i_news li a , .subbox_item a {
	padding: 5px;
	display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
.module_i_news li a:after , .subbox_item a:after{pointer-events:none;}
.i_blog_le, .i_blog_ri {    width: 100%;}
.blog_list_le { width: 100%; }
.blog_list_ri {  width: 100%;  padding: 0 0 0 10px;  position: relative; }

.i_blog_le , .blog_list_le{    /*position: relative;    padding-bottom: 100%;    height: 0;*/}/*文章縮圖長寬比例，100% →100:100 = 1:1 正方形 */

.blog_list_ri h5 {
    font-size: 22px;
    color: #032d60;
    display: block;
}
.blog_list_ri em{
  color: #0176c3;
}
.blog_list_ri p {
    margin-top: 10px;
    line-height: 180%;
    color: #000;
    -webkit-line-clamp: 3;
    min-height: 80px;
	letter-spacing: 1px;
}


.subbox_item a:before {
    top: 50%;
    left: 50%;
	bottom:unset;
	right:unset;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
	font-size: 22px;
  font-family: "Inter", sans-serif;
	color:#dae5ee;
  font-weight: bold;
  text-align: center;
}
.subbox_item a:after {
    border: 2px #dae5ee dashed;
}

/*側邊*/
.blog_le .accordion {
    border: unset;
    border-radius: 0px;
}
.blog_le .accordion > li{transition:all 0.3s;border-bottom: 1px solid #0176c4;}
.accordion li .link a{ color: #0176c4;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #032d60 !important;}
.submenu a:hover {    background: #032d60;}
.submenu li.on_this_category a, .submenu a:hover{ background: #C6C6C6; }

/*首*/
.module_i_news ul{ grid-template-columns:1fr 1fr 1fr 1fr;}
/*功*/
.blog_subbox{ grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}
/*文章管理/內層＝＝*/
.blog_back a.article_btn_back, .blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: unset;
    color: #0176c4;
    border: 1px solid #0176c4;
	transition:.3s;
}

.blog_back a.article_btn_back:hover, .blog_back a.article_btn_prev:hover, .blog_back a.article_btn_next:hover {
    background: #032d60;  border: 0px;
    color: #fff;
}

.subbox_item a:after {  background: rgb(255 255 255 / 0%); }

.news_related {
  background: #b8dbf62b; padding: 40px 15px;
}
.news_related h6 span:before{
  color: #003661;
}
.lastPage{
  background: transparent; color: #0176c4; border: 1px solid #0176c4; transition: 0.5s;
}

.lastPage:hover{background: #032d60;  border: 0px;
    color: #fff; }

@media screen and (max-width: 1200px) {
  /*文章管理*/
  .blog_list_ri h5 {
      margin-top: 0;
      font-size: 20px;
  }
  
  .blog_list_ri p {
      margin-top: 10px;
  }
  }
  
  @media screen and (max-width: 1024px) {
    /*文章管理/＝＝＝＝＝*/
    .module_i_news ul{grid-template-columns:1fr 1fr 1fr;}
    .header_area {  padding: 0px; }
    .blog_subbox{grid-template-columns:1fr 1fr;}
    }
  @media screen and (max-width: 768px) {
      
      /*文章管理/＝＝＝＝＝*/
      h4.blog_category_title{font-size: 24px;}
      h4.blog_category_title span{font-size: 20px;}
      .module_i_news ul{grid-template-columns:1fr 1fr;}
      
  }

  @media screen and (max-width:662px) {
    .subbox_item a:before{font-size: 18px; text-align: center;} 
  }
  @media screen and (max-width: 600px) {
    /*文章管理/＝＝＝＝＝*/
    .module_i_news ul , .blog_subbox{grid-template-columns:1fr 1fr;}
    h4.blog_category_title{font-size: 20px;}
    h4.blog_category_title span{font-size: 18px;}
    
    .blog_list_le {
        width: 100%;
    }
    .blog_list_ri {
        padding: 20px 10px 30px 10px;
        width: 100%;
    }
    .blog_list_ri h5 {
        font-size: 18px;
    }
    .blog_list_ri em {
        position: inherit;
    }
    
    .blog_list_ri p {
        margin-top: 15px;
        font-size: 14px;
        min-height: unset;
    }
    }

    @media screen and (max-width:430px) {
      .module_i_news ul , .blog_subbox{grid-template-columns:1fr;}
    }



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* 聯絡我們 */
/* .contact_page .main_part{ max-width: 1500px;} */
.contact_page #content{ background-image: url(https://pic03.eapple.com.tw/newbound/in-bg.jpg); background-size: cover; background-position: center;}

.contact_content .information_left{ display: none;}
.contact_editbox{ padding: 0px 0px;}
.contact_content .information_right{ width: 100%; padding-left: 0px; max-width: 1500px; display: flex; flex-direction: column; margin: auto ; padding: 0px 32px ;}


.i_contact_box section{ max-width: 1400px;}
/* 聯絡我們 */
.blank_letter{ color: #032d60; font-size: 24px;  }
.contact_form{ grid-gap:30px 40px; grid-template-columns:1fr 1fr;}
.contact_form li{ grid-template-columns:132px 1fr;}
.contact_form li.last{ justify-content: flex-start; margin-top: 0px; }
.contact_form li.last blockquote{ color: #0176c4;
  }
.contact_form li.last blockquote, .contact_form li.last cite{ border: 1px solid #0176c4; border-radius: 5px;}
.contact_form li.last cite{ color: #fff; background: #0176c4; border: 0px;border-radius: 5px;
}
/* .contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: unset;} */
.contact_form li .form__label{max-width: 132px;  font-size: 16px; text-align: left;}


@media screen and (max-width:980px) {
  .contact_form{ grid-template-columns:1fr;}
  .contact_form li.last{ justify-content: center;}
}

@media screen and (max-width:600px) {
    .contact_form li .form__label{ background: transparent; max-width: 114px;}
    .contact_form li .form__label{ font-size: 15px; }
}

@media screen and (max-width:450px) {
  .contact_content .information_right{ padding: 0 10px;}
  .contact_form li{  grid-template-columns:1fr;}
}





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




