@charset "utf-8";
/* *************至善科技檢測 專業驗屋****************** */
/*
關於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');



/* 英文字體 Lexend Deca */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..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');


/*網站全域設定/＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  /* --Color: #1c3459; */
  --MainColor: #004737; /*網站主要色系*/
  --SubColor: #2A2A2A; /*網站文字色*/
  --SubColor1: #56bc7e; /*網站輔助色系1*/
  --SubColor2: #408C5E; /*網站輔助色系2*/
  --SubColor3: #344763; /*網站輔助色系3*/
  --SubColor4: #192B3D; /*網站輔助色系4*/  
  --SubColor5: #8F91A1; /*網站輔助色系5*/ 
  --SubColor6: #ECF1F4; /*網站輔助色系6*/ 
  --SubColor7: #ef7a35; /*網站輔助色系7*/ 
  --SFontE: "Inter", "Noto Sans TC",sans-serif;/*英文字體-無襯線*/
  --SFontEN: "Lexend Deca","Noto Sans TC",sans-serif, system-ui;/*英文標字體*/
  --SFont: "Noto Sans TC", sans-serif;/*內文字體*/
  --pd100:100px 0;
  --m100:100px;
  --m50:50px;
  --m30:30px;
  --f80:80px;
  --f60:60px;
  --f52:52px;
  --f48:48px;
  --f44:44px;
  --f40:40px;
  --f36:36px;
  --f32:32px;
  --f28:28px;
  --f24:24px;
  --f22:22px;
  --f20:20px;
  --f18:18px;
  --f17:17px;
  --f16:16px;
}
@media (min-width:1520px) {
  :root{ }
}
@media (max-width:1024px) {
:root{
  --f80:70px;
  --m50:40px;
  --m30:25px;
  --f52:48px;
  --f48:40px;
  --f44:38px;
  --f40:36px;
  --f36:32px;
  --f32:28px;
  --f28:24px;
  --f24:22px;
  --f22:20px;
}
}
@media (max-width:768px) {
:root{
  --pd100:70px 0;
  --m100:70px;
  --f80:60px;
  --m50:30px;
  --m30:20px;
  --f52:44px;
  --f48:32px;
  --f44:30px;
  --f40:28px;
  --f36:26px;
  --f32:24px;
  --f28:20px;
  --f24:20px;
  --f20:18px;
  --f18:17px;
  --f17:16px;
}
}
@media (max-width:600px) {
:root{
  --pd100:50px 0;
  --m100:50px;
  --m50:25px;
  --f80:52px;
  --f52:36px;
  --f48:28px;
  --f44:26px;
  --f40:24px;
  --f36:22px;
  --f32:20px;
  --f28:18px;
  --f24:18px;
  --f22:18px;
  --f20:17px;
  --f18:16px;
  --f17:15px;
  --f16:13px;
}
}
@media (max-width:375px) {
:root{
  --f80:48px;
  --f52:32px;
  --f48:24px;
  --f44:22px;
  --f40:20px;
  --f36:18px;
  --f32:18px;
  --f28:17px;
  --f24:17px;
  --f22:17px;
  --f20:16px;
  --f18:15px;
}
}

/*反白顏色*/
/* ::-moz-selection { background-color: #060303; color: #fff; }
::selection { background-color: #060303; color: #fff; } */



/*卷軸*/
&::-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: #c1c1c1;
}
&::-webkit-scrollbar-track {
    box-shadow: transparent;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.path p, .path p a { display: none;}
.edit_part {  max-width: 100%;  margin: auto;  padding: 0px;}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*內頁*/
#content_main {      background: #FAFBFC;}
#content {
    min-height: 100vh;
    background: #FAFBFC;
    background: #FFF;
}
#content_main {
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: auto;
    position: relative;
    z-index: 1;
    margin-bottom: -5px!important;
}
	
/*電腦LOGO*/
.nav-header {
    grid-row: auto;
}
.nav-brand {
    position: relative;
    width: 120px;
    padding: 0;
    transition: .5s all ease;
    display: block;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
    border-radius: 0 0 20px;
    overflow: hidden;
    padding: 20px 15px 15px 20px;
    aspect-ratio: 1 / 1;
}
.nav-brand img {
    padding: 0;
    width: 100%;
    max-width: 80px;
    max-width: 100px;
    padding: 0 2px 0 0;
}
.nav-brand:hover { 
    transition: .3s all ease;
}

/* 下滑LOGO樣式 */
.sticky .nav-brand {
    width: 100px;
    border-radius: 0;
    padding: 10px 15px;
}


/*手機LOGO
.nav-brand-m {}
*/

/*footerLOGO*/
.footer_logo { display: none; }


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Header-------------------------------------------------------------------------*/
.pageIndex .header_area, .header_area{
    position: fixed;
    width: 100%;
    padding: 0;
    background: transparent;
}
.header_area.sticky {
    background: transparent;
}
.other_page .header_area{
    /* position: fixed; */
}
.main_header_area {
    transition: all 0.3s;
    width: 100%;
    background: transparent;
}




.main_header_area .container {
    max-width: 100%;
    transition: all 0.3s;
    height: 100px;
}
.header_area.sticky .main_header_area .container {
    transition: all 0.3s;
    height: 90px;
}

/* 首頁 */
.pageIndex .main_header_area .container{
    height: 145px;
}



.navigation {
    padding: 0;
    grid-template-columns: 140px 1fr;
    height: 100%;
}
.navigation::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(52 71 99 / 80%);
    backdrop-filter: blur(5px);
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    transition: all 0.8s;
    -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: -webkit-transform 0.8s, -webkit-clip-path 0.8s 0.3s;
    transition: -webkit-transform 0.8s, -webkit-clip-path 0.8s 0.3s;
    transition: transform 0.8s, clip-path 0.8s 0.3s, -webkit-transform 0.8s, -webkit-clip-path 0.8s 0.3s;
    pointer-events: none;

}
.header_area.sticky .navigation::before  {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* 第1層 */
.stellarnav {
    position: relative;
    width: 100%;
    z-index: 9900;
    line-height: normal;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% - 145px);
}
.stellarnav ul{
    font-family: var(--SFont);
    font-size: 0;
}
.stellarnav > ul > li {
    display: inline-block;
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 0 5px;
}
.stellarnav > ul > li > a {
    padding: 20px 15px;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    display: block;
    font-size: 15px;
    line-height: normal;
    height: 0;
    margin: 0;
    transition: all 0.3s;
    font-family: var(--SFontE);
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    text-shadow: 0 0 10px #2c3c34;
}
.header_area.sticky .stellarnav > ul > li > a {
    text-shadow: unset;
}
.stellarnav > ul > li > a::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 64%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    transition: all 0.5s;
}
.stellarnav > ul > li > a:hover::before {
    width: 40px;
}
.stellarnav > ul > li:hover > a {
    transition: all 0.3s;
}


/* 第2層 */
.stellarnav ul ul {
    min-width: 80px;
    width: 140px;
    transform: translateX(-50%);
    left: 50%;
    top: 90px;
    background: #1a4b6b;
}
.stellarnav * {
    transition: all .3s;
}
.stellarnav li li {
    border: unset;
    margin-bottom: 0;
}
.stellarnav li li a {
    font-size: 15px;
    text-align: center;
    padding: 10px;
    letter-spacing: 0.08em;
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
    color: #666;
    display: block;
    padding: 10px;
}
.stellarnav li li a:hover {
    color: #fff;
    background: #344763;
}
.stellarnav li li:last-of-type a{
    border-bottom: 0;
}
.stellarnav li li > a, .stellarnav li li.has-sub > a {
    padding: 10px;
}
.stellarnav li li:hover > a, .stellarnav li li > a:hover, .stellarnav.desktop li.has-sub li a:hover, .stellarnav.desktop li.has-sub li:hover > a {
    padding-left: 18px;
}


/* 第3層 */
.stellarnav ul ul ul {
    transform: translateX(0%);
}
.stellarnav li li li a {
    background: #e1e8eb;
    font-size: 14px;
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
    background-image: url(https://pic03.eapple.com.tw/procivil/BG_case.png);
}
div#content_main {}
.bannerindex {
    position: relative;
    height: auto;
}
.swiper-banner { position:static; margin:0; height:100%;} 
.swiper-slide img { height:auto;}
.swiper-slide{
    overflow: hidden;
    height: 100%;
}
/* 大圖預設 */
.swiper-banner .swiper-slide img{
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    width: 100%;
}




/*大圖-------------------------------------------------------------------------------*/
/* BN01 */
.swiper-wrapper{position: relative;}

/* 外層 */
.swiper-wrapper::before{
    content: "";
    background-image: url(https://pic03.eapple.com.tw/procivil/bnA_deco.png);
    background-size: cover;
    width: calc(28% + 10px);
    height: auto;
    aspect-ratio: 133 / 130;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 1;
    top: 50%;
    z-index: 100;
    -webkit-animation: spin 12s linear infinite;
    -ms-animation: spin 12s linear infinite;
    animation: spin 12s linear infinite;
}
.swiper-wrapper:after{
    content: "";
    background-image: url(https://pic03.eapple.com.tw/procivil/bnA_deco.png);
    background-size: cover;
    width: calc(28% + 10px);
    height: auto;
    aspect-ratio: 133 / 130;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 1;
    top: 50%;
    z-index: 100;
    -webkit-animation: spin 8s linear infinite;
    -ms-animation: spin 8s linear infinite;
     animation: spin 8s linear infinite;
}

/* 圖內層 */
.swiper-slide:before, .swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 100;
    pointer-events: none;    
    opacity: 0;    
} 
.swiper-slide:before {
    position: absolute;
    content: "";
    top: 23%;
    left: 0;
    background: url(https://pic03.eapple.com.tw/procivil/bnA_txt1.svg) no-repeat;
    width: 28%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    aspect-ratio: 133 / 130;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}
.swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/procivil/bnB_txt1.svg) no-repeat;
    background-size: cover;
}




@keyframes spin{
    0% {
        transform: translate(-50%,-50%) rotate(0deg);
    }
    
    100% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}


.swiper-slide img { height:auto;}




/* header動畫 */
@keyframes ani_LtoR {
    0% {    
        clip-path: polygon(-1% 0 ,0 0,-1% 100%, 0 100%);
    }
    100% {    
        clip-path: polygon(0 0,100% 0,100% 100%, 0 100%);
    }
  }
@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes arrow{
    0% {
        transform: translate3d(-50%, -6px, 0) rotate(-45deg);
    }
    50% {
        transform: translate3d(-50%, 6px, 0) rotate(-45deg);
    }
    100% {
        transform: translate3d(-50%, -6px, 0) rotate(-45deg);
    }
}





.swiper-pagination { display: none;}/*輪播白點移除*/


/* 下滑文字 */
span.swiper-notification {
    display: flex;
    position: absolute;
    right: 60px;
    bottom: 0;
    left: auto;
    top: auto;
    z-index: 2;
    flex-direction: column;
}
span.swiper-notification:before {
    position: relative;
    display: block;
    content: 'Scroll';
    line-height: 1;
    letter-spacing: .2em;
    white-space: nowrap;
    color: #fff;
    font-family: var(--SFontEN);
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 6px;
    -webkit-writing-mode: vertical-lr;
    float: left;
    writing-mode: vertical-lr;
    height: fit-content;
}
span.swiper-notification:after {
    position: relative;
    content: '';
    display: block;
    background-color: rgba(255, 255, 255, .5);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-name: scrollLine;
    animation-name: scrollLine;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.19,1,.22,1);
    animation-timing-function: cubic-bezier(.19,1,.22,1);
    width: 1px;
    height: 40px;
    margin-left: 5px;
}
@keyframes scrollLine{
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
    50% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}









button, html input[type="button"], input[type="reset"], input[type="submit"] { border-radius: 0px;}
.box_search input[type=text] {  border-radius: 0px;padding: 3px 10px 3px 32px;color: #111 !important;}
.shop_search_btn { background: #717171;}
.tp_links { display: none;}	
.me_tp_features {
    display: none;
}
.me_tp_features a {  margin-bottom: 3px;}


/* header下拉箭頭 */
/* .stellarnav li.has-sub > a:after{ display:none;} */
.stellarnav li.has-sub > a:after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--SubColor4);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: none;
}


.stellarnav li > a:before{   position: absolute;  width: 30px;  height: 30px;  top: -1px;  left: 50%; transform: translateX(-50%);}




@media screen and (min-width: 1400px) {
    .stellarnav > ul > li {
        margin-right: 21px;
    }
}

@media screen and (max-width: 1300px) {
    .stellarnav > ul > li > a {
        padding: 16px 8px;
    }
}

/* 上方區域_小於桌機版面@1200px */
@media screen and (max-width: 1200px) {
    .stellarnav > ul > li > a {
        padding: 16px 4px;
    }

    .pageIndex .main_header_area .container {
        height: 120px;
    }
}


/* 上方區域_小於桌機版面@1024px */
@media screen and (max-width: 1024px) {
/* logo */
.nav-brand ,.sticky .nav-brand{
    width: 90px;
    padding: 10px 15px;
    border-radius: 0 0 20px;
}
/* header */
.header_area.sticky .main_header_area .container {
    height: 50px;
    box-shadow: none;
}
.navigation::before{
    height: 50px;
    background-color: rgb(52 71 99 / 100%);
}


/*nav選單設定*/
.header_area {
    z-index: 9999;
    padding: 0;
    background: #f0f0f0;
    position: sticky;
    top: 0;
    width: 100%;
}
.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
}
.header_area.sticky .main_header_area {
    transition: all 0.5s;
}
.main_header_area .container {
    padding-top: 0;
}



.header_area .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    padding: 15px;
    display: block;
    position: fixed;
    transition: all 0.5s;
    pointer-events: all;
    opacity: 1;
    top: 0px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
}
.header_area.sticky .stellarnav .menu-toggle, .stellarnav .call-btn-mobile, .stellarnav .location-btn-mobile {
    top: 10px;
    transition: all 0.5s;
}



/* 漢堡 */
.stellarnav .menu-toggle{
    text-align: center;
}
.stellarnav .menu-toggle:after{
    content: "MENU";
    display: none;
    font-size: 12px;
    text-align: center;
    color: #43453D;
    font-family: "Klee One", 'Noto Serif TC';
    margin-top: 10px;
}
.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: relative;
    width: 25px;
    height: 1px;
    border-radius: 6px;
    background: #fff;
    margin: 0;
    left: 0;
    transition: 0.5s;
}
.stellarnav.desktop.active .menu-toggle span.bars span {
    background: #000;
}


.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    opacity: 0;
    transition: all 1s;
}





/* 漢堡開 */
.stellarnav .menu-toggle span.bars {
    display: inline-block;
    position: relative;
    top: 3px;
    height: 12px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0;
    top: 0;
}
.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    margin: 0;
    transform: rotate(45deg) scaleX(1) translate(4px, 4px);
    border-radius: 50px 50px 50px 0;
    transition: all 0.3s;
    animation: navbar-line .6s forwards;
}
.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {
    margin: 0;
    opacity: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 0px;
    transition: all 0.3s;
}
.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    margin: 0;
    transform: rotate(-45deg) scaleX(1) translate(4px,-4px);
    border-radius: 0 50px 50px 50px;
    transition: all 0.3s;
    animation: navbar-line2 .6s forwards;
}

@keyframes navbar-line {
    0%{
        transform: rotate(45deg) scaleX(0) translate(4px, 4px);
    }
    100%{
        transform: rotate(45deg) scaleX(1) translate(4px, 4px);
    }
}
@keyframes navbar-line2 {
    0%{
        transform: rotate(-45deg) scaleX(0) translate(4px, -4px);
    }
    100%{
        transform: rotate(-45deg) scaleX(1) translate(4px, -4px);
    }
}











/* nav未開啟 */
.stellarnav.desktop{
    position: fixed;
    width: 0%;
    height: 100%;
    top: 0;
    left: unset;
    right: 0;
    z-index: 1;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
    font-size: 0;
}
.stellarnav.desktop > ul {
    display: none !important;
    margin: 0;
    padding: 0;
    text-align: center;
    background: transparent;
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -5;
    transition: all 0.3s;
}
.stellarnav.desktop::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0;
    transition: 1s;
    content: none;
}

/* nav開啟 */
.stellarnav.desktop.active {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    z-index: 200;
}
.stellarnav.desktop.active > ul {
    display: flex !important;
    transition: all 0.3s;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    pointer-events: all;
    width: 50%;
    height: 100%;
    background: transparent;
    padding: 200px 5% 80px;
    padding-top: 100px;
}
.stellarnav.desktop.active > ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    left: unset;
    right: 0;
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
    animation: nav-left 0.5s forwards;
}
.stellarnav.desktop.active::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    opacity: 1;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes nav-left {
    0%{ width: 0; }
    100%{ width: 100%; }    
}

@keyframes line-up {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}




/* BAR */
/* 選項 */
.navigation {
    width: 100%;
    padding: 0;
    height: 90px;
}
.stellarnav > ul > li > a {
    color: #666;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 17px;
    line-height: 20px;
    height: auto;
    margin: 0;
    transition: all 0.3s;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 15px;
    border: 0;
    padding: 24px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    font-weight: 500;
    text-shadow: none;
}
.stellarnav > ul > li > a:hover {
    transition: all 0.3s;
}
.stellarnav > ul > li > a b {
    display: inline;
    line-height: 15px;
    height: 20px;
}
.stellarnav > ul > li > a b:nth-child(1) {margin-right: 20px;}
.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 12px;
    color: #43453D;
    word-break: keep-all;
}
.stellarnav li {
    opacity: 1;
    width: 100%;
}
/* icon */
.stellarnav > ul > li > a:before{
    content: none;
}
.stellarnav > ul > li > a:after, .stellarnav li.has-sub > a:after{
    position: relative;
    opacity: 1;
    top: unset;
}





/* 字動畫 */
.stellarnav > ul > li{
    opacity: 0;
    animation: up 1.5s forwards;
    animation-delay: 0.2s;
    height: auto;
}
.stellarnav > ul > li:nth-child(2) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.2s;
}
.stellarnav > ul > li:nth-child(3) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.4s;
}
.stellarnav > ul > li:nth-child(4) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.6s;
    max-height: 180px;
}
.stellarnav > ul > li:nth-child(5) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 0.8s;
}
.stellarnav > ul > li:nth-child(6) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1s;
}
.stellarnav > ul > li:nth-child(7) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.2s;
}
.stellarnav > ul > li:nth-child(8) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.4s;
}
.stellarnav > ul > li:nth-child(9) {
    animation: nav-down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 1.6s;
}


@keyframes up {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes nav-down {
    0% {
        opacity: 0;
        transform: translate(0, -10px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* 下拉 */
/* .stellarnav.desktop li.has-sub:hover { flex: 1; } */


.stellarnav ul ul {
    width: 100%;
    box-shadow: none;
}
/* 第二層平板不出現 */
.stellarnav.desktop ul ul{
    display: none !important;
}
.stellarnav li li {
    transition: all 0.3s;
}
.stellarnav li li:hover { }

.stellarnav li li a {
    transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
    background-color: #f8f8f8;
}
.stellarnav.desktop li.has-sub li+li a {
    border-top: 1px solid #fff;
    color: #999;
    text-align: left;
    padding: 15px;
    padding-left: 42px;
    font-size: 15px;
    font-weight: 500;
}
.stellarnav.desktop li.has-sub li a:hover {
    transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
    background: #f9f6f1;    
    color: #c7ae8f;
}
.stellarnav li li:hover > a {
    color: #fff;
    transition: all 0.3s;
}



/* 下拉二層 */
.stellarnav ul ul ul {
    top: 0;
    left: 240px;
}
@keyframes ul-show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
    
}





}


/* 上方區域_小於手機版面@768px */
@media screen and (max-width: 768px) {
/* 大圖 */
.bannerindex {
    padding: 0;
    margin: 0;
    height: 55vh;
}
.swiper-slide:before {
    top: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
}
.swiper-wrapper:after, .swiper-wrapper::before{
    width: calc(38% + 10px);
}



.me_tp_features a span { font-size: 13px;}
.me_tp_features a i {  margin: 0 3px; font-size: 11px;}
.stellarnav > ul > li > a{ color: #ffffff; }

/* LOGO= = */
.nav-brand, .sticky .nav-brand{
    width: 70px;
    padding: 8px;
    border-radius: 0 0 10px;
}
.sticky .nav-brand {
    border-radius: 0;
}
.nav-brand img {
    max-width: 100%;
    filter: none;
}

/* header */
.main_header_area {    
    background: linear-gradient(180deg, rgb(49 49 49 / 0%), transparent);    
    background: #fff;
}
.navigation {
    height: 70px;
    transition: box-shadow 1.5s ease;
}
.sticky .navigation {
    box-shadow: 0 0 2px rgba(51, 51, 51, .15);
}
.navigation::before {
    height: 100%;
    background-color: #fff;
}


/* 漢堡選單 */
.stellarnav.mobile {
    left: auto;
    right: 0;
}
.stellarnav .menu-toggle {
    font-size: 12px;
    position: relative;
    top: 10px;
}
.stellarnav .menu-toggle:after {
    color: #2e2e2e;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--SFontE);
}
.stellarnav .menu-toggle span.bars span:first-child{
    display: none
}
.stellarnav .menu-toggle span.bars span {
    width: 36px;
    height: 2px;
    margin: 2px auto 5px;
}

/* 導覽列展開 */
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {
    margin: 0;
    padding: 0;
    font-size: 0;
    max-width: 100%;
}

.stellarnav.mobile > ul > li {
    background-color: transparent;
    text-align: center;
    margin: auto;
    border: 0;
}
.stellarnav.mobile > ul > li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}
.stellarnav > ul > li > a:before{
    content: none;
}

/* CLOSE= = */
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    display: flex;
    color: #353535;
    padding: 10px 10px 11px 10px;
    font-family: var(--SFontE);
    font-weight: 600;
    letter-spacing: 1px;
    flex-direction: column;
    align-items: flex-end;
    background: transparent;
    padding: 0;
    margin: 0;
    color: #000;
    font-size: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
}
.stellarnav .icon-close {
    width: 38px;
    margin-right: 3px;
    height: 40px;
    text-align: center;
}
.stellarnav .icon-close:before {
    border-bottom: solid 2px #353535;
    width: 36px;
    transform: rotate(30deg);
}
.stellarnav .icon-close:after {
    border-bottom: solid 2px #353535;
    width: 36px;
    transform: rotate(-30deg);
}

.stellarnav.mobile li.open {
    padding: 0;
    background: transparent;
    border-bottom: 0 !important;
}
.stellarnav.mobile.sticky{left: 0;}
.stellarnav.mobile ul {
    background: #fff;
}
    


/* 導覽列漢堡選單 */
    .stellarnav.mobile .menu-toggle {
        display: flex;
        font-size: 0;
        top: 10px;
        right: 10px;
        height: 50px;
        align-items: center;
        justify-content: center;
        background: #344763;
        border-radius: 5px;
    }
    .stellarnav .menu-toggle span.bars span {
        display: block;
        position: relative;
        width: 25px;
        height: 1px;
        border-radius: 6px;
        background: #fff;
        margin: 0;
        left: 0;
        transition: 0.5s;
    }
    .stellarnav .menu-toggle span.bars span:nth-child(2) {
        margin-left: 0;
        transition: all .5s ease;
    }
    .stellarnav.mobile .menu-toggle:hover span.bars span:nth-child(2) { width: 25px; }
    /* 導覽列展開 */
    .stellarnav.mobile.left > ul {
        left: unset;
        right: 0;
        font-size: 0;
        max-width: 100%;
        padding: 0 25px;        
        /*右滑出現*/
        right: -100vw;
        overflow: hidden;
        transition: all .5s ease;
    }
    .stellarnav.mobile.left.active > ul{
        display: block !important;
        right: 0;
        background: #fff;
    }


    /* 第一層 */
    .stellarnav.mobile li.open {
        padding: 0;
        background: transparent;
    }
    /* 共用 */
    .stellarnav.mobile li a{
        text-align: left;
        padding-left: 25px;
        font-size: 14px;
    }
    .stellarnav.mobile > ul > li > a {
        margin: 0;
        text-align: left;
        margin-left: 0px;
        border-bottom: none;
        font-weight: 500;
        background: transparent;
        border: 0;
        padding: 15px 0;
        text-align: left;
        overflow: auto;
        height: auto;
        line-height: 150%;
        display: flex;
        letter-spacing: 0.04em;
        font-size: 16px;
        color: #000;
    }
    .stellarnav.mobile li.open > a.mob_main_link {
        border: 0;
        color: #0A3254;
        position: relative;
        width: 100%;
        border-bottom: 1px solid #e5e5e5;
    }
    .stellarnav.mobile li.open > a.mob_main_link:before {
        content: "";
        position: absolute;
        top: unset;
        bottom: 0;
        left: 0;
        display: block;
        width: 20px;
        height: 2px;
        background: #0A3254;
        transform: unset;
    }


    /* 第二層 */
    .stellarnav.mobile ul ul {
        border-radius: 0;
        left: unset;
        margin: 0 auto;
        top: unset;
        box-shadow: none;
        width: 100%;
        transform: unset;
        transition: all 1s ease;
        overflow: hidden;
        padding: 5px 0;
    }
    .stellarnav.mobile li li {
        border-bottom: 0;
        font-size: 14px;
        color: #333;
        letter-spacing: 0.04em;
        transition: all .6s ease;
        font-family: var(--SFont);
        padding: 5px 0;
    }
    .stellarnav .icon-close {
        box-sizing: border-box;
        width: 18px;
        height: 12px;
        position: relative;
        display: inline-block;
        margin: 0 8px 0 0;
    }
    .stellarnav .icon-close:before , .stellarnav .icon-close:after {
        width: 24px;
        height: 0px;
        border-bottom: solid 1px #344763;
    }
    .stellarnav > ul > li.has-sub > a {
        padding-right: 10px;
        display: flex    ;
        letter-spacing: 0.08em;
        flex-direction: row;
        justify-content: flex-start;
    }
    .stellarnav.mobile li li.has-sub a, .stellarnav li.has-sub li a{
        transition: .3s cubic-bezier(0.77, 0, 0.65, 0.99);
        background: transparent;
        font-size: 15px;
        font-weight: 400;
        color: #454545;
        letter-spacing: 0.04em;
        padding: 2px 0;
    }

    /* 第三層 */
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 5px 0;
    }
    .stellarnav.mobile li li.open > a.mob_main_link {
        border: 0;
        /* color: #0A3254; */
        font-weight: 500;
    }
    .stellarnav.mobile li li.open > a.mob_main_link:before{
        content: none;
    }
    .stellarnav.mobile ul ul ul {
        padding: 5px 0px 5px 15px;
    }    
    .stellarnav.mobile li li.has-sub ul a {
        padding: 0;
    }


    
    /* +符號修改 = = */
    /* 樣式 */
    .stellarnav li.open > a.dd-toggle .icon-plus{ transform: rotate(0); }
    .stellarnav a.dd-toggle .icon-plus:before { transition: all 0.5s; }
    .stellarnav li.open > a.dd-toggle .icon-plus:before { transform: rotate(0deg); transition: all 0.5s; }
    .stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after{ border-bottom: solid 2px #1a4b6b; }
    /* 位置 */
    .stellarnav.mobile ul li a.dd-toggle, .stellarnav.mobile li.open > a.dd-toggle{
        padding: 10px;
        position: absolute;
        text-align: center;
        top: 0;
        max-height: 30px;
        margin: 0;
        background: transparent;
        padding: 0;
    }    
    .stellarnav.mobile > ul > li > a.dd-toggle, .stellarnav.mobile li.open > a.dd-toggle { 
        border: 0;
        top: 10px;
    }

    /* .stellarnav.mobile > ul > li > a.dd-toggle:before{ content: none; } */

    /* nav右側按鈕 */
    .header_area .me_tp_features {
        margin-right: 45px;
    }


}






/* 上方區域_小於手機版面@600px */
@media screen and (max-width: 600px){
    /* 大圖 */
    .bannerindex {
        height: 60vh;
    }
    .swiper-slide:before {
        width: 50%;
        min-width: 250px;
    }
    .swiper-wrapper:after, .swiper-wrapper::before {
        width: calc(48% + 10px);
        min-width: 255px;
    }
}

@media screen and (max-width: 500px){
    /* header */    
    /* .header_area {
        background: #fff;
        position: sticky;
        height: 70px;
    }
    .header_area .main_header_area {
        height: 70px;
    } */

}





/* 上方區域_小於手機版面@400px */
@media screen and (max-width: 400px) {
    /* 大圖 */
    .bannerindex {
        height: 65vh;
    }
    .swiper-slide:before {
        width: 60%;
        min-width: auto;
    }
    .swiper-wrapper:after, .swiper-wrapper::before {
        width: calc(58% + 10px);        
        min-width: auto;
    }


.stellarnav .menu-toggle { padding: 16px 10px;}
.box_search input[type=text] { width: 71px;font-size: 10px;}
.me_tp_features a span { font-size: 9px;}
.me_tp_features a { margin: 0 1px;}
.shop_search_btn {  font-size: 10px; top: 3px; padding: 4px 15px;}
.shop_search_txt { font-size: 13px; height: 16px;}




    
}
 

/*浮動按鈕*/
.info_fix:hover>span{
    background-color: var(--SubColor1);
}
.info_fix:hover>span .fa-xmark::before {
    color: #FFF;
}
.info_fix>span {
    background-color: var(--MainColor);
    border-radius: 50%;
}
.info_fix_links a {
    background: var(--SubColor);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}
.info_fix_links a:hover {     
    background: var(--SubColor3);
    opacity:.7;
}

.info_fix_links {
    width: unset;
    padding-bottom: 10px;
}

.info_fix_links a span::before {
    content: '';
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 50%;
    margin: auto;
}
.info_fix_links a span {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 48% 44% 48% 47% / 44% 46% 44% 46%;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.box_link{    padding: 0;}
.box_link a {     display: none;}
.footer {
    background: #f7f7f7;
    padding: 0;
    background-color: #edf6f5;
    background-color: #e1e8eb;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.footer .center {
    padding: 30px 0;
    max-width: 100%;
    position: static;
    padding: 60px 0;
    z-index: 2;
}

/* footer資訊在單獨頁面= = */
.footer_info { padding: 0 60px; display: block; }
.footer .center .footer_info:nth-child(1) > ul {    display: none;}


/* copyright= = */
.copy {
    padding: 25px 0;
    font-size: 11px;
    letter-spacing: 1px;
    color: #8C8C8C;
    border-top: unset;
    margin-top: 0;
}
.copy a {
    color: #8C8C8C;
}

/* 置頂BTN */
#to_top {
    font-size: 0;
    text-align: left;
    font-family: var(--SFontE);
    color: var(--SubColor4);
    background: transparent;
    box-shadow: none;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s;
    bottom: 40px;
    height: 70px;
    width: 30px;
    margin: 0;
    margin-left: 4px;
    padding: 0;
    writing-mode: vertical-rl;
}
#to_top i.top {
    display: none;
}
#to_top::before {
    position: absolute;
    content: '';
    margin-bottom: -2px;
    margin-right: 5px;
    margin-left: 0;
    display: inline-block;
    width: 1px;
    height: 70px;
    left: 0;
    background-color: var(--SubColor4);
}
#to_top::after {
    top: 0;
    content: '';
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--SubColor4);
    display: inline-block;
    position: absolute;
    left: 0;
}
#to_top:hover{
    opacity: .6;
}








@media screen and (max-width: 1024px) {
    .footer_info {
        padding: 0 40px;
    }
}


@media screen and (max-width: 768px) {
.footer_logo {
    margin: 10px 17px;
    margin: auto;
    max-width: 180px;
}

.footer_info {  padding: 20px 0px;}
.footer .center {
    width: 86%;
    /* padding: 0; */
}
.footer_menu a { padding: 7px;}

#bottom_menu li a { background-color: #50aab5;}
.fa-house::before {  color: #1c1c1c;}
.fa-phone-volume::before{  color: #1c1c1c;}
#bottom_menu li a em { color: #222;}
#bottom_menu li a { display: none;}




  
}
@media screen and (max-width: 600px) { }


@media screen and (max-width: 400px) {
.footer_info li p { font-size: 12px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/*內頁BANNER 設定*/
.banner {
    background-position: center;
    position: relative;
    width: 100%;
    height: auto;
    padding: 140px 0px 45px;
    width: 100%;
    margin: auto;
    border-radius: 0;
    height: 420px;
    background: unset;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}
.banner:before {
    position: absolute;
    top: 0;
    display: block;
    content: '';
    background-image: url(https://pic03.eapple.com.tw/procivil/bnB.jpg);
    background-color: #eff6f7;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    margin: auto;
    filter: brightness(0.6);
}
.banner:after {
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    content: 'case';
    font-size: 84px;
    font-weight: 600;
    height: auto;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0px 0px 0px 0px;
    text-align: left;
    width: auto;
    max-width: 100%;
    padding: 0;
    z-index: 1;
    opacity: 0;
    font-family: var(--SFontEN);
    -webkit-animation: txtShow 1.2s 0s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
    animation: txtShow 1.2s 0s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.banner h5 {
    position: relative;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    font-family: var(--SFontEN);
    flex-direction: row;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 400;
    height: auto;
    line-height: 1.4;
    text-align: left;
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    color: #fff;
    opacity: 0;
    -webkit-animation: txtUp 1s .5s ease-in-out forwards;
    animation: txtUp 1s .5s ease-in-out forwards;
}
.banner h5:before {
    text-transform: uppercase;
    content: '';
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.08em;
    font-size: var(--f16);
    background: #FFFFFF;
    flex: none;
    height: 1px;
    margin: 0px 10px 0px 0px;
    width: 20px;
    max-width: calc(100% - 10px);
}


.contact_page .banner:after{
    content: 'contact';
}

@keyframes txtUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }    
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes txtShow {
    0% {
        display: inline-block;
        -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
        clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
        opacity: 0;
    }    
    100% {
        -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
        clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
        opacity: 1;
    }
}







@media screen and (max-width: 768px) {
    .banner {
        padding: 70px 0px 30px;
        height: 320px;
    }
    .banner:after {
        font-size: 72px;
    }
    .banner h5 { }
}

@media screen and (max-width: 600px) {    
    .banner:after {
        font-size: 60px;
    }
    .banner h5 {
        font-size: 18px;
    }   
}

@media screen and (max-width: 500px) {
    .banner {
        padding: 80px 0px 40px;
        height: 240px;
    }    
    .banner:after {
        font-size: 48px;
    }
    .banner h5 {
        font-size: 16px;
    } 
}

@media screen and (max-width: 400px) {          
    .banner:after {
        font-size: 40px;
    }
    .banner h5 {
        font-size: 14px;
    } 
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */


/*文章設定 = = = = = = = = = == = = = = = = = = = = = = = = = = = = */

/* 外層= = = = */
.blog_page .main_part, .article_a .main_part{
    max-width: 1280px;
    padding: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 120px;
    font-family: var(--SFontEN);
}
.blog_box {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 左側分類 */
.blog_le {
    order: 2;
    padding: 0;
    width: 300px;    
}
h5.blog_le_t {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
h5.blog_le_t em {
    color: #222;
    font-weight: 500;
}
h5.blog_le_t span {
    padding-left: 0;
    font-size: 0;
}
h5.blog_le_t span:before {
    content: 'CATEGORY';
    font-size: 12px;
    opacity: .5;
    letter-spacing: .15em;
    display: block;
    line-height: 1;
    margin-top: 8px;
    color: #333;
    font-family: var(--SFontEN);
    font-weight: 600;
}
.blog_search{
    display: none;
}
/* 主分類 */
.blog_le .accordion {
    border-radius: 5px;
    border: unset;
    background: unset;
}
.blog_le .accordion li .link:last-child {
    padding: 15px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
.accordion li{    
    transition: all .4s ease-out;
}
ul#accordion .link {
    padding: 0;
    border: 0;
    border-bottom: 1px solid #ddd;    
}
ul#accordion li:last-child .link{
    border: 0;
}
.accordion li .link a {
    color: #000;
    padding: 10px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.08em;
    position: relative;
    display: block;
    padding-left: 22px;
    transition: all .4s ease-out;
    text-align: left;
}
.blog_le .accordion li .link i {
    width: 15px;
    left: 0;
}
.fa-chevron-down::before {
    z-index: 1;
    content: "\f138";
    font-size: 14px;
    color: #344763;    
    transition: all .3s ease-out;
}
.blog_le .accordion > li.on_this_category .fa-chevron-down::before { 
    color: #eb7840;
}
.blog_le .accordion li.open i.fa-chevron-down::before {
    content: "\f138";
    transform: rotate(90deg);
}
.blog_le .accordion > li.on_this_category .fa-chevron-down::before {
    transform: rotate(90deg);
}
.blog_le .accordion > li.on_this_category.open .fa-chevron-down::before  {
    transform: rotate(0deg);
}
.blog_le .accordion > li.on_this_category {
    background: transparent !important;
    border-bottom: unset;
}
.blog_le .accordion > li.on_this_category .link a {
    color: #344763 !important;
}
.blog_le .accordion > li:hover{
    background: transparent !important;
}
.blog_le .accordion > li:hover .link a{
    color: #000 !important;
}
/* 次分類 */
.submenu {
    display: none;
    background: #ecf1f4;
    font-size: 14px;
}
.submenu li.on_this_category a{    
    background: #ecf1f4;
    color: #344763;
}
.submenu a:hover, .submenu li.on_this_category a:hover{
    background: #344763;
    color: #FFF;
}
.submenu a {
    color: #111A24;
    line-height: 1.2;
    padding: 10px 12px 10px 25px;
}
.fa-circle-chevron-right::before {
    content: "\f138";
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    left: 5px;
    top: -1px;
    bottom: 0px;
    border-radius: 5px;
    background: #eb7840;
    transform: translateX(-20px);
    transition: all .3s ease;
}
.submenu li.on_this_category a, .submenu a:hover .fa-circle-chevron-right::before{
    transform: translateX(0px);

}

/* 右側文章圖 */
.blog_ri {
    order: 1;
    flex: 1;
    margin: 0;
    margin-right: 60px;
    padding: 0;
    min-height: 50vh;
}
h4.blog_category_title {
    font-size: var(--f32);
    border: 0;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #333;
}

.blog_subbox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
/* 文章item */
.subbox_item {
    border: 0;
    width: 100%;
}
.subbox_item a {
    display: flex;
    padding: 30px;
    background-image: url(https://pic03.eapple.com.tw/procivil/BG_case.png);
    border-radius: 5px;
    overflow: hidden;
    font-family: var(--SFontEN);
}
.subbox_item a:before {
    font-family: var(--SFontE);
    transform: translate(-50%, 0%);
    left: 50%;
    right: 0;
    bottom: -17%;
    letter-spacing: 0.08em;
    opacity: 0;
    display: block;
    color: #1a4b6b;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
    width: 100%;
    padding: 10px;
    text-align: right;
    content: none;
}
.subbox_item a:hover:before {
    bottom: 0%;
}
.subbox_item a:after{
    content: none;
}
/* 文章item圖 */
.blog_list_le {
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    max-width: 280px;
    aspect-ratio: 3 / 2;
    border-radius: 5px;
}
.blog_list_le:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
    color: #fff;
    font-size: 113%;
    opacity: 0;
    background-color: hsla(216, 31%, 30%, 0.6);
    transition: all .4s ease-out;
    z-index: 1;
}
.blog_list_le:after {
    position: absolute;
    content: 'View Detail';
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    transition: all .4s ease-out;
    z-index: 2;
    font-family: var(--SFontEN);
    letter-spacing: 0.08em;
}
.blog_list_le img {
    transition: 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.subbox_item a:hover .blog_list_le:before, .subbox_item a:hover .blog_list_le:after{
    opacity: 1;
}
.subbox_item a:hover .blog_list_le img {
    transform: scale(1.05);
}

/* 文章item文 */
.blog_list_ri {
    display: flex    ;
    width: -webkit-fill-available;
    background: #ffffff00;
    padding: 20px;
    margin-top: -15px;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 4px;
}
.blog_list_ri h5 {
    color: #2E2E2E;
    font-weight: 600;
    width: fit-content;
    order: 2;
    font-size: var(--f24);
    color: #121212;
    letter-spacing: 0.04em;
}
.blog_list_ri em {
    orphans: 1;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    font-style: normal;
    letter-spacing: 0.04em;
    margin: 0;
}
.blog_list_ri p {
    order: 3;
    line-height: 160%;
    font-size: 15px;
    letter-spacing: 0.06em;
    font-weight: 400;
}


/* 文章內層 */
.blog_shareData{display: none;}
/* 上下篇BTN */
.blog_back {
    margin-top: 60px;
    width: 100%;
    order: 3;
    grid-template-columns: 1fr;
}
.blog_back a.article_btn_back {
    position: relative;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    max-width: 180px;
    width: 100%;
    min-height: 45px;
    border-radius: 25px;
    padding: 10px 20px;
    letter-spacing: 1.5px;
    color: #fff;
    background-color: #111A24;
    transition: all 0.4s ease;
}
.blog_back a.article_btn_back:hover {
    background-color: #1a4b6b;
}
.blog_back a.article_btn_back:before {
    content: "";
    position: absolute;
    top: calc(50% - 2.5px);
    right: 24px;
    z-index: 1;
    width: 22px;
    height: 5px;
    -webkit-filter: invert(1);
    filter: invert(1);
    background: url(https://pic03.eapple.com.tw/procivil/BTNarrow.png) no-repeat;
}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    display: none;
}
/* 內層首圖 */
.articel_mainPic{
    display: none;
}


/* 相關連結 */
.lastPage, .news_related_list li:last-child{display: none;}
.news_related {
    padding: 25px 15px;
    margin: 30px auto 80px;
    max-width: 1280px;
    padding: 0;
    width: 80%;
    font-family: var(--SFontEN);
    background: transparent;
}
/* 標 */
.news_related h6 {
    max-width: 100%;
    margin: 0;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}
.news_related h6 span:before {
    content: '相關案例';
    font-size: 20px;
    letter-spacing: 2px;
    color: #6d7980;
    color: #222;
    font-weight: 500;
}
.news_related h6 span:after {
    content: 'RELATED POST';
    font-size: 12px;
    opacity: .5;
    letter-spacing: .15em;
    display: block;
    line-height: 1;
    margin-top: 8px;
    color: #333;
    font-family: var(--SFontEN);
    font-weight: 600;
}
/* 圖文 */
ul.news_related_list {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100%;
}
.news_related_list li {
    padding: 0px;
}
.news_related_list li a {
    padding: 0;
    background: transparent;
    height: 100%;
}
.news_related_list li figure {
    background: #000;
    aspect-ratio: 3 / 2;
    border-radius: 5px;
}
.news_related_list li figure img {
    transition: all .8s ease-in-out;
    transform: scale(1.01);
}
.news_related_list li figure:hover img {
    opacity: .8;
    transform: scale(1.06);
}
.news_related_list li a p {
    font-size: 15px;
    color: #111A24;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 1.25px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
}
.news_related_list li a:hover p {
    text-decoration: underline;
    color: #0A3254;
}


@media screen and (max-width: 1280px) {
    .blog_page .main_part, .article_a .main_part, .news_related {
        width: 90%;
    }
    .blog_page .main_part, .article_a .main_part{
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .blog_ri {
        margin-right: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .module_i_news li:last-child {
        display: block;
    }
    .module_i_news ul {
        grid-template-columns: 1fr 1fr;
        max-width: 90%;
        row-gap: 30px;
    }
    /* 外層 */
    .blog_box {
        flex-direction: column;
    }
    .blog_ri {
        order: 2;
        width: 100%;
    }
    .blog_le {
        order: 1;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .blog_page .main_part, .article_a .main_part, .news_related {
        width: 86%;
    }
    .fa-caret-down::before {
        content: "\f107";
    }
    .openNext a.news_menu_toggle i::before {
        content: "\f106";
    }
    .blog_list_ri{
        padding: 20px 0 10px;
    }

    ul.news_related_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    /* .news_related_list li:last-child {
        display: block;
    } */
    .blog_le {
        padding: 10px 15px;
        background: #f7f7f7;
        border-radius: 10px;
    }
    h5.blog_le_t {
        margin-bottom: 5px;
    }
    .submenu, .submenu li.on_this_category a {
        background: #fff;
    }
    .submenu li+li {
        border-top: 0;
    }
    
    

}
@media screen and (max-width: 600px) {
    .blog_subbox {
        flex-direction: column;
    }
    .subbox_item a {
        padding: 20px;
        flex-direction: column;
    }
    .blog_list_le{
        max-width: 100%;
    }
    .blog_list_ri {
        padding: 20px 0 5px;
    }
}

@media screen and (max-width: 500px) {
    .module_i_news ul {
        grid-template-columns: 1fr;
        max-width: 92%;
        row-gap: 20px;
    }

    ul.news_related_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .edit {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
}

@media screen and (max-width: 400px) {
    .subbox_item a {
        flex-direction: column;
    }
    .subbox_item a:before{
        content: none;
    }
    .blog_list_le {
        width: 100%;
        border-radius: 5px;
        padding: 0;
        overflow: hidden;
        position: relative;
        max-width: fit-content;
        aspect-ratio: 38 / 25;
    }
    .blog_list_ri {
        width: 100%;
        padding: 10px 0;
        margin-top: 0;
        gap: 4px;
    }


    
}



	
	
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*相簿*/
.show-list .show_name {  text-align: center; font-weight: 400;position: relative;  /*top: 50%; left: 50%;  transform: translate(-50%, -50%);*/}
.show-list .item a {  position: relative;}
.show-list .item:hover .show_name {  color: #7f765b;}
.album_page .overlay { background: #ffffff1c;  transition: .2s;}
.album_class_page .other_subalbum li { text-align: center;}
.other_album_choice li { background: #535353; border-radius: 0px;}
.album_fixed_title {  color: #535353;  background: #f5f5f5;}





/*版面*/
ul.show-list, .other_subalbum {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 20px;}
ul.show-list:before , ul.pic-list:before{content:none;}
.overlay {    z-index: 1;}
.show-list .item , .other_subalbum li , .pic-list .item{width: 100%;margin:0;padding:0;position: relative;    -webkit-column-break-inside: avoid;    page-break-inside: avoid;    break-inside: avoid;}
.show-list .show_pic , .other_subalbum li a div{    display: block;    position: relative;    overflow: hidden;    height: 0;    padding-bottom: 100%;}
.show-list .show_pic img , .other_subalbum li a img{ display:block;  max-width: 100%;  min-width: 100%;  height: 100%;  object-fit: cover;   -moz-object-fit: cover;  -ms-object-fit: cover; -o-object-fit: cover;  -webkit-object-fit: cover;  position: absolute; left: 50%;  top: 50%;  transform: translate(-50%,-50%);transition:all 0.5s;    filter: none;}
/*.show-list .item:hover img, .other_subalbum li:hover img{    filter: grayscale(1) brightness(0.85);}*//*相簿hover變灰階*/
.show-list a .show_pic img, .other_subalbum li a img {  filter: blur(1.1px);}/*相簿模糊*/
.show-list a:hover .show_pic img, .other_subalbum li a:hover img {  transform: translate(-50%, -50%) scale(1.1); filter: brightness(1) blur(0);}/*相簿放大不模糊*/
.show-list .item:hover .overlay { opacity: 0;}
ul.pic-list {  -moz-column-count: 3;  -moz-column-gap: 10px;  -webkit-column-count: 3;  -webkit-column-gap: 10px;  column-count: 3;   column-gap: 10px;  width: 100%;  margin: 0 auto;}
.pic-list .show_pic {    height: auto;    padding: 0;}
.pic-list .show_pic img{display: block;}
.show-list .item:hover .show_name {    color: #000;}
.other_album_choice li {    background: #3f3f3f;}
.subalbum-menu h2{display: none;}
.other_subalbum li p {  font-size: var(--f20);  text-align: center;  position: relative;  /*top: 50%;  left: 50%;  width: 90%;   transform: translate(-50%,-50%);  */color: #313131;  transition: all 0.4s;  font-family: var(--SFont);  letter-spacing: 0.5px;  opacity: 1;pointer-events:none;margin: 10px;}
.other_subalbum li:hover p{opacity: 1;}
.pic-list .item h6{display: none;}
.pic-list .item a {    margin: 0 auto 10px;}
.pic-list .item{ display: block;}
@media screen and (max-width: 450px) {
ul.show-list, .other_subalbum {  grid-template-columns: 1fr;}
}
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車*/
.product-layer-two li a {  position: relative; border: 1px #e1e1e1 solid; background: none; padding: 3px 16px; display: block; font-size: 14px; width: 154px; text-align: center;  color: #391911;}
.product-layer-two li li a { border: none !important; background: none; font-size: 13px;}
.product-layer-two {  margin: 30px 0px 60px 0px;}
.inquiry_a1, .inquiry_a2, .inquiry_a3 { border-radius: 0px;}
.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover { letter-spacing: 0px; filter: brightness(1.1);}
.inquiry_a1:hover { background-color: #448f99;}
.inquiry_a1 {  background-color: #327a83;}
.inquiry_a2 {  background-color: #717171;}
.sidebarBtn { padding: 25px;border: 2px #ebebeb solid; background: #fff; margin-top: 5px;}
ul.prod li h3.prod-thumb { background: #f6f6f6; color: #454545; text-align: center; font-size: 17px; letter-spacing: 1px; padding: 5px 0px 7px 0px;}
ul.prod li:nth-child(2) h3.prod-thumb { display: none;}/*QA隱藏*/
ul.prod li:nth-child(2) .prod-panel {display: none;}/*QA隱藏*/
.prod_related h6 span:before { color: #414141;}
.prod_related h6 {  margin: 25px auto 20px;}
.lastPage { background: #717171;}
.mobile_product_name { display: none;}/*標題隱藏*/
.product_page .products-list .name { height: 24px; padding: 0px 3px;text-align: center; margin: 10px 5px;}
.products-list .price b { color: #7f765b;}
.products-list .item a:hover .more {  background: none;  color: #327a83; letter-spacing: 2px;}
.products-list .more {  border: 1px solid #327a83;  color:#327a83;  letter-spacing: 2px; font-size: 15px;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*促銷方案*/
.promotion_title {
    display: grid;
}
/* 小標 */
.promotion_title span {
    border: 0;
    padding: 2px 7px;
    font-size: 12px;
    font-family: var(--SFontE);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #6B7880;
    padding-left: 5px;
}
.promotion_title em {
    display: inline-block;
    letter-spacing: 0.08em;
    vertical-align: middle;
    font-size: 12px;
    background-color: #1c294f;
    color: #fff;
    padding: 5px 12px;
    width: fit-content;
    border: 0;
}
/* 大標 */
.promotions_page .promotion_title h2 {
    display: block;
    color: #1c3459;
    font-size: var(--f24);
    letter-spacing: 0.05em;
    font-weight: 600;
}
/* 內文 */
.edit {
    margin: auto;
    padding: 20px 0 40px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: #333;
    font-weight: 400;
    margin-bottom: 40px;
    border-bottom: 1px solid #cccccc;
}


/* 其他訊息 */
.other_promotion {
    margin-top: 40px;
}
.other_promotion li {
    width: 100%;
    margin: auto;
}
.other_promotion li a {
    margin: 0;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    transition: all .4s ease-out;
    padding: 30px 35px;
}
.other_promotion li a:after, .other_promotion li a:before{
    content: none;
}
/* 時間 */
.other_promotion .pmtTime span {
    float: left;
    font-size: 12px;
    font-family: var(--SFontE);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #6B7880;
    padding-left: 5px;
}
/* 文字 */
.other_promotion .pmtTitle{
    display: flex;
}
.other_promotion .pmtTitle span{
    display: inline-block;
    letter-spacing: 0.08em;
    vertical-align: middle;
    font-size: 12px;
    background-color: #1c294f;
    color: #fff;
    padding: 5px 12px;
    float: left;
    white-space: nowrap;
    margin: 0.125rem;
    /* width: 20%; */
    margin-right: 2rem;
}
.other_promotion .pmtTitle h3{
    margin: 0;
    font-size: 16px;
    color: #2e2e2e;
    letter-spacing: 0.04em;
    font-family: var(--SFont);
    line-height: 1.5;
    font-weight: 500;
}
.other_promotion li a:hover {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
    background: #fcfcfc;
    opacity: .8;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*線上估價*/
.separate_title { background: none;background-color: #eee;}
.filltext { background: #327a83; padding: 5px;}
.rewrite_simple { background: #327a83 url(../images/simple_left.png) 10% center no-repeat;}
.send_simple { background: #327a83 url(../images/simple_right.png) 88% center no-repeat; border-radius: 0px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們*/
.contact_page #content {
    background-image: url(https://pic03.eapple.com.tw/procivil/BG_case.png);
    /* background: #eeeeee; */
}
.contact_page .main_part {
    padding: 0px 0px 120px 0px;
    max-width: 1500px;
}

.contact_content {
    font-family: var(--SFont);
    max-width: 1280px;
    padding: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 0;
}
.contact_content > form {
    display: grid;
    grid-template-columns: 24em 1fr;
    gap: unset;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    /* clear: both; */
}
/* 標 */
.contact_page .blank_letter {
    margin: auto;
    margin-top: 20px;
    font-family: var(--SFont);
    padding: 0;
    color: #1c3459;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
    color: #131848;
    margin-bottom: 16px;
}

/* 右側表單 = = = = */
.contact_content .information_right {
    order: 1;
    padding: 0px;
    width: 90%;
    max-width: 70rem;
    margin-right: auto;
    flex: 1;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -ms-flex-align: start;
}

.information_right.fadeInRight.animated15.delay5 {}
/* 標 */
h4.blank_letter.f {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid #c8c8c8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
h4.blank_letter.f:before {
    margin-top: 10px;
    position: relative;
    content: '至善是一群專業且負責的檢測團隊，能夠清楚的了解客戶需求，讓我們陪伴您安心交屋。';
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 2;
    margin-bottom: 0;
    color: #353535;
    font-weight: 400;
    line-height: 1.7;
    order: 2;
}
.note {
    position: absolute;
    font-size: 13px;
    text-align: right;
    left: 100px;
    padding-top: 5px;
    letter-spacing: 1px;
    font-weight: 500;
}
/* 表單 */
.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    gap: 0;
    margin-left: -10px;
    margin-right: -10px;
}
.contact_form li {
    padding: 10px;
    width: 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
}
.contact_form li .form__label {
    background: transparent;
    font-size: 15px;
    width: 100%;
    margin-left: 0px;
    color: #333;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-bottom: 12px;
    position: relative;
}
/* 紅字 */
.red {
    order: 2;
    color: #d50000;
}
.contact_form li input.noborder {
    border: 0;
    padding: 8px 10px;
    background: transparent;
    border: 1px solid #cccccc;
    color: #333;
    letter-spacing: 1px;
    font-weight: 400;
    border-radius: 4px;
}
.contact_form li textarea.noborder {
    background: transparent;
    border: 1px solid #cccccc;
    color: #333;
    padding: 8px 10px;
    letter-spacing: 1px;
    font-weight: 400;
    border-radius: 4px;
}
/* 按鈕 */
.contact_form li.last {
    display: flex ;
    gap: 0;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
    margin-top: 40px;
}
.contact_form li.last blockquote, .contact_form li.last cite {
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    padding: 0;
    color: #fff;
    background-color: #111A24;
    width: 100%;
    max-width: 180px;
    margin: 0 10px;
    min-height: 45px;
    letter-spacing: 0.5px;
    
    transition: all 0.4s ease;
}
.contact_form li.last input {
    width: 100%;
    text-align: left;
    padding: 10px 10px 10px 25px;
    letter-spacing: 1.5px;
}
blockquote:after {
    position: absolute;
    right: 24px;
    z-index: 1;
    content: '';
    top: calc(50% - 6.5px);
    width: 13px;
    height: 13px;
    filter: invert(0);
    background-image: url(https://pic03.eapple.com.tw/procivil/BTNback.png);
}

.contact_form li.last cite {
    transition: all 0.4s ease;
    background: #1a4b6b;
}
.contact_form li.last cite i{display: none;}
cite:after {
    content: "";
    position: absolute;
    top: calc(50% - 2.5px);
    right: 24px;
    z-index: 1;
    width: 22px;
    height: 5px;
    -webkit-filter: invert(1);
    filter: invert(1);
    background: url(https://pic03.eapple.com.tw/procivil/BTNarrow.png) no-repeat;
}

.contact_form li.last blockquote:hover {
    background: #1a4b6b;
}
.contact_form li.last cite:hover {
    background: #111A24;
}
.contact_form li.last blockquote:hover input, .contact_form li.last cite:hover input{
    letter-spacing: 1.5px;
}

/* 左側資訊 = = = = */
.information_left .blank_letter.i, .list_before{
    display: none;
}
.contact_content .information_left {
    border-radius: 20px;
    padding: 0;
    position: relative;
    order: 2;
    width: 440px;
    padding-left: 60px;
}
/* C編輯器 */
.contact_le_nomap *{
    transition: all .3s;
}














.contact_page .noborder {  padding: 10px;}
.contact_editbox { padding: 0px;}
.form select {
    color: #565757;
    background: transparent;
    border: 1px solid #cccccc;
    width: 100%;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 0;
    min-height: 39px;
}




@media screen and (max-width: 1280px) {
    .contact_page .main_part {
        padding-bottom: 80px;
    }
    .contact_content{
        width: 90%;
    }
}

@media screen and (max-width: 1200px) {
    .contact_content .information_left {
        width: 400px;
        padding-left: 40px;
    }
}


@media screen and (max-width: 1024px) {
    .contact_page .main_part {
        padding-bottom: 80px;
    }
    .contact_content {
        padding-top: 40px;
    }
    .contact_content > form {
        gap: 2em;
        flex-direction: column;
    }    
    .contact_content .information_right {
        width: 100%;
    }
    .contact_form {
        /* margin: auto; */
    }
    .contact_form li {
        padding: 8px 10px;
    }

    .contact_content .information_left {        
        order: unset;
        width: 100%;
        padding-left: 0;
    }
}


@media screen and (max-width: 768px) {
    .contact_content {
        width: 86%;
    }
    h4.blank_letter.f {
        margin-bottom: 20px;
    }
    .contact_form li {
        grid-template-columns: 1fr;
        border: 0;
        width: 100%;
    }
    .contact_form li.last blockquote, .contact_form li.last cite {
        margin-right: 0;
    }

}
@media screen and (max-width: 450px) {
    .contact_form {
        margin: auto;
    }
.contact_form li {  
    padding: 0 0 8px 0
}
h4.blank_letter.f {
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.contact_form li input.noborder {
    padding: 4px 8px;
    min-height: 40px;
}
.contact_form li.last {
    gap: 5px;
    justify-content: center;
    padding: 0;
    width: 100%;
    margin-top: 40px;
}

}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */




/* 下方區域_小於手機版面@768px */
@media screen and (max-width: 768px) {

/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: block; }

#to_top{ }

}



@media screen and (max-width: 600px) { 
    .main_part {
        padding: 40px 5%;
    }
}

