@charset "utf-8";/*這段一定要加否則中文會變亂碼*/

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

/*動畫入場text-----------------------------------*/
.bannerindex .swiper-slide:nth-child(1):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/guanyunclean/text01.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;
}/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before{
    animation: inside1 1s;
    animation-timing-function: cubic-bezier(0.63, -0.01, 0.34, 0.99);
}
/*----------------------------------------------*/
.bannerindex .swiper-slide:nth-child(2):before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/guanyunclean/text02.png);
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, 0%);
    opacity: 1;
    z-index: 999;
    position: absolute;

}
/*---active分開寫避免時間差-----*/
.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before{
    animation: inside2 1s;
    animation-timing-function: cubic-bezier(0.63, -0.01, 0.34, 0.99);
}
/*---------大圖01下方煙霧--------------*/
.pageIndex .swiper-slide.swiper-slide:nth-child(1):after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0%;
    z-index: 1;
    background-image: url(https://pic03.eapple.com.tw/guanyunclean/smoke.png);
    background-repeat: no-repeat;
    background-position: center;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
    animation: updown 5s steps(15000) infinite alternate;
    background-size: cover;
}
/*---------大圖02右方煙霧--------------*/
.pageIndex .swiper-slide.swiper-slide:nth-child(2):after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0%;
    z-index: 1;
    background-image: url(https://pic03.eapple.com.tw/guanyunclean/smoke02.png);
    background-repeat: no-repeat;
    background-position: center;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
    animation: leftright 5s steps(15000) infinite alternate;
    background-size: cover;
}
/*------------------動畫在這裡---------------------------------------*/
@keyframes inside1{
	0% {transform: translate(0%, -10%);opacity: 0;}
	100%{opacity: 1;}
}
@keyframes inside2{
	0% {transform: translate(0%, -10%);opacity: 0;filter: blur(5px);}
	100%{opacity: 1;}
}

@keyframes updown{
    0% {background-position-y: 0px;}
    50%{background-position-y: 24px;transform: scale(1.1);}
    100% {background-position-y: 0px;}
}
@keyframes leftright{
    0% {background-position-x: 0px;}
    50%{background-position-x: 50px;}
    100% {background-position-x: 0px;}
}
/*-----------------------------------------*/
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
.header_area {
    z-index: 9999;
    padding: 10px;
    background: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100px;
    align-content: center;
}
.header_area.sticky {
    width: 100%;
    z-index: 9999;
    background: #fff;
}
.header_area:after {
    content: "";
    position: absolute;
    display: block;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #05913b, #8ec019);
    transform: translate(-10px, 20px);
    transition: .5s;
}
.header_area.sticky:after {
    width: 100%;
    transition: .5s;
}
.main_header_area .container {
    max-width: 1500px;
    margin: auto;
}
.navigation {
    width: 100%;
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 0 20px;
}
.nav-header {
    z-index: 123;
    top: 0;
    left: 0;
    max-width: 300px;
    width: 100%;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.me_tp_features {
    display: none;
    width: 100%;
    text-align: right;
}
.stellarnav > ul > li:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 20px;
    background: #f2ffcf;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    transition: .5s;
}
.stellarnav > ul > li:hover:before {
    transition: .5s;
    width: 80%;
}
.stellarnav > ul > li:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: #e1e1e1;
    transform: translate(-50%, -50%);
    top: 50%;
}
.stellarnav > ul > li > a {
    padding: 0;
    color: #4a552a;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}
.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 10px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #5b9c1b;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
/*----------------------------------*/
.stellarnav ul ul {
    top: auto;
    width: 160px;
    position: absolute;
    z-index: 9900;
    text-align: left;
    /* display: none; */
    background: #ffffff;
    border: 1px solid #cce1ae;
}
.stellarnav li li {
    display: block;
    border: 0px #eee solid;
    border-bottom-width: 0;
}
.stellarnav li li:last-of-type {
    border-bottom-width: 0px;
}
.stellarnav li a {
    padding: 10px 10px;
    display: block;
    color: #4a552a;
    font-size: 15px;
    letter-spacing: 1px;
}
.stellarnav li li:hover a {
    background: #f2f7ee;
    transition: .3s;
}



/*----------------------------------*/
.info_fix_links {display: flex!important;}
.linksBtn {display: none;}
.info_fix_links a {
    display: flex;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50px;
    transition: .3s;
    background: #a0cb3e;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 1.6em;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
    box-shadow: 2px 2px 4px 0px #0000003b;
}
.info_fix_links a:hover {
    background: #05902b;
}
/*
a.info_fix_default.info_fix_fb:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(https://pic03.eapple.com.tw/guanyunclean/icon4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: .5s;
}
a.info_fix_default.info_fix_fb:hover:before {
    opacity: 0;
    transition: .5s;
}

a.info_fix_default.info_fix_line:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(https://pic03.eapple.com.tw/guanyunclean/icon1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: .5s;
}
a.info_fix_default.info_fix_line:hover:before {
    opacity: 0;
    transition: .5s;
}

a.info_fix_default.info_fix_phone:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(https://pic03.eapple.com.tw/guanyunclean/icon2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: .5s;
}
a.info_fix_default.info_fix_phone:hover:before {
    opacity: 0;
    transition: .5s;
}

a.info_fix_default.info_fix_mail:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(https://pic03.eapple.com.tw/guanyunclean/icon3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: .5s;
}
a.info_fix_default.info_fix_mail:hover:before {
    opacity: 0;
    transition: .5s;
}*/

/*------------首頁串接最新消息----------*/
.module_i_news {
    background: #fff;
    padding: 70px 20px 0px 20px;
}
.module_i_news .title_i_box h6 {
    font-size: 36px;
    font-family: 'Josefin Sans';
    color: #dfdfdf;
    letter-spacing: 2px;
}
.module_i_news .title_i_box h4 {
    font-size: 25px;
    font-family: noto sans TC;
    color: #2c7665;
    font-weight: 700;
    letter-spacing: 1px;
}
.module_i_news_list, .module_i_news_list.swiper {
    padding: 30px 30px;
    border: 1px solid #e3c47c;
    background: #fffef0;
    border-radius: 10px;
}
.module_i_news ul {
    list-style: none;
    display: grid;
    grid-template-columns: unset;
    grid-gap: 20px;
}
.module_i_news li a {
    position: relative;
    display: grid;
    grid-template-columns: unset;
    grid-gap: 10px;
    padding: 10px 10px;
}
.i_blog_le {display: none;}
.i_blog_ri {
    display: grid;
    vertical-align: top;
    padding: 0px;
    width: 100%;
    grid-template-columns: 300px 1fr 150px;
    gap: 10px;
}
.i_blog_ri h5 {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    color: #6f954a;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    line-height: 200%;
}
.i_blog_ri em {
    font-size: 14px;
    color: #666;
    font-style: normal;
    display: block;
    margin: 7px 0;
    order: 3;
    text-align: right;
    letter-spacing: 1px;
}
.i_blog_ri p {
    font-size: 15px;
    color: #888;
    line-height: 200%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    letter-spacing: 1px;
}
.module_i_news li a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    border-radius: 8px;
    background: #b6d1d0;
    opacity: 0;
    border: 0px #ddd solid;
    transition: all .6s;
}
.module_i_news li a:before {
    content: 'Read More +';
    font-family: noto sans TC;
    position: absolute;
    z-index: 19;
    bottom: unset;
    right: unset;
    left: 50%;
    top: 50%;
    opacity: 0;
    text-align: center;
    font-size: 15px;
    color: #4a805b;
    transition: all .6s;
    transform: translate(-50%, -50%);
    font-size: 17px;
}
.animated-arrow {
    background: #a0cb3e;
    color: #fff;
    display: inline-block;
    margin-top: 40px;
    margin-left: auto;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    overflow: hidden;
    width: 250px;
    padding-left: 0%;
    text-align: center;
    position: relative;
    border: 0px;
}

/*-------------------------------------------------*/






/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */

/* 商品下拉超過30個--結束 */

/* = = = FOOTER分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.footer {
    padding: 100px 0 0;
    font-size: 14px;
    background: #ffffff;
    position: relative;
    z-index: 99;
    box-shadow: 0px -3px 6px 0px #0000001c;
}
.footer .center {
    position: relative;
    max-width: 1500px;
}
.footer_info {
    padding: 0;
    display: flex;
    grid-gap: 20px;
    padding-right: 0px;
    flex-direction: column;
}
.footer_logo {
    display: inline-block;
    vertical-align: top;
    max-width: 300px;
    margin: 0;
}
.box_link {
    display: none;
}
.footer_info ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.footer_info ul:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #96c055;
    display: block;
}
.footer_info li p {
    line-height: 180%;
    letter-spacing: 1px;
    color: #23440c;
}
.footer_info li p a {
    line-height: 180%;
    letter-spacing: 1px;
    color: #23440c;
}
.footer_info li p.add:after {
    content: "環藥病媒字第09-020號";
    display: block;
}
/*----------------------------------------*/
.footer_menu a {
    display: inline-block;
    padding: 10px 10px;
    border: 0px #ccc solid;
    margin: 0 4px 4px 0;
    font-size: 15px;
    line-height: 100%;
    color: #5b9c1b;
    background: unset;
    font-weight: 600;
    transition: .5s;
}
.footer_menu a:hover {
    background: #f2ffcf;
    color: #4a552a;
    transition: .5s;
}
/*----------------------------------------*/
.copy {
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: #99c270;
    border-top: 1px #ddd solid;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background: #07923a;
}
.copy a {
    color: #99c270;
}
.privacyLinks a+a {
    border-left: 1px solid #99c270;
}
/*-------------------------------------*/
.product-layer-two li a {
    position: relative;
    border: 1px #fff solid;
    background: #f3f3f3;
    padding: 7px 16px;
    display: block;
    font-size: 16px;
    color: #263911;
}
.products-list .name {
    font-size: 15px;
    color: #2d3f23;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
}
.products-list .more {
    border: 1px solid #385528;
    color: #385528;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    transition: all .5s;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}
.products-list .item a:hover .more {
    background: #385528;
    color: #fff;
    letter-spacing: 2px;
}
.prod_related {
    background: unset;
    padding: 25px 15px;
}

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

/*-------功能頁背景------------*/
#content:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    background: url(https://pic03.eapple.com.tw/guanyunclean/bcg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #ffffffd4 30%, #ffffff);}

/*#content_main:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(https://pic03.eapple.com.tw/guanyunclean/bcg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #ffffffd4 30%, #ffffff);
} */
 /*首頁表單背景*/   
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/

.main_part {padding: 100px 20px;}/*設定內頁和banner距離*/
.banner {}
.banner h5 {
    font-family: noto sans TC;
    color: #447877;
    letter-spacing: 2px;
    font-size: 30px;
}
.banner h5:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 114px;
    background: url(https://pic03.eapple.com.tw/guanyunclean/h5icon.png) no-repeat;
    background-size: cover;
    animation: move 3s infinite;
}
/*----h5動畫--------*/
@keyframes move{
	0% {transform: translate(0%, 0%);}
    50% {transform: translate(-10%, 0%);}
	100%{transform: translate(0%, 0%);}
}
/*---結束---*/


.banner.banA {}
.banner.banB {
    display: none;
}/*服務項目/聯絡我們-內頁*/

.banner.banC {
    background: linear-gradient(180deg, #fffdf3, transparent);
}/*預約估價-表單*/
.banner.banC.banner h5:before {
    content: "VALUATION";
    display: block;
    color: #999;
    font-size: 13px;
    text-align: left;
}
.banner.banD {}

.banner.banE {
    background: linear-gradient(180deg, #fffdf3, transparent);
}/*施作實績-相簿*/
.banner.banE.banner h5:before {
    content: "ALBUM";
    display: block;
    color: #999;
    font-size: 13px;
    text-align: left;
}

.banner.banblog {
     background: linear-gradient(180deg, #fffdf3, transparent);
}/*最新消息-文章*/
.banner.banblog.banner h5:before {
    content: "NEWS";
    display: block;
    color: #999;
    font-size: 13px;
    text-align: left;
}

.banner.banF {
    background: linear-gradient(180deg, #fffdf3, transparent);
}/*購物商城-購物車*/
.banner.banF.banner h5:before {
    content: "PRODUCT";
    display: block;
    color: #999;
    font-size: 13px;
    text-align: left;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*文章管理-病媒介紹-最新消息*/
h5.blog_le_t {
    font-size: 20px;
    font-weight: 700;
    color: #447849;
    font-family: noto sans TC;
    letter-spacing: 5px;
    margin-bottom: 7px;
    position: relative;
    text-align: center;
}
.blog_search input[type=search] {outline: none;box-sizing: border-box;width: 100%;font-size: 14px;color: #999;border: solid 1px #ccc;border-radius: 0px;padding: 10px 35px 10px 10px;}
.blog_le .accordion {list-style-type: none;margin: auto;border-radius: 0px;border: 0px #ccc solid;overflow: hidden;}
.accordion li .link a {cursor: pointer;display: block;padding: 15px 10px;color: #444;font-size: 15px;font-weight: 700;position: relative;letter-spacing: 1px;}
.blog_le .accordion > li {transition: .3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {background: #666 !important;transition: .3s;}
.submenu li.on_this_category a, .submenu a:hover {background: #8f9cb2;color: #FFF;}
/*----------------------------------------*/
.blog_subbox {display: flex;grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));grid-gap: 20px;flex-direction: column;}
.subbox_item {display: block;width: 100%;position: relative;background: #fff;flex-direction: row;}
.blog_list_ri h5 {
    font-weight: 500;
    font-size: 20px;
    font-family: Noto sans TC;
    letter-spacing: 1px;
    color: #5c835d;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}
.blog_list_ri {display: flex;padding: 5px 20px 5px 0px;flex-direction: column;justify-content: center;}
.blog_list_ri p {font-size: 15px;color: #444;line-height: 180%;letter-spacing: 1px;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;white-space: normal;overflow: hidden;word-break: break-all;}
.blog_list_ri em {display: none;}
@media screen and (max-width: 960px) {.subbox_item {border-bottom: 0px #eee solid;}}
@media screen and (max-width: 400px) {.blog_list_ri {padding: 5px 10px;}}
/*-------------------下層------------------*/
.blog_back {
    display: none;}
.blog_box_edit * {line-height: 180%;}
.news_related {
    background: #50784433;
    padding: 25px 15px;
}
.news_related h6 span:before {
    content: '相關文章';
    font-family: Noto sans TC;
    font-size: 24px;
    color: #507844;
    letter-spacing: 2px;
    font-weight: 500;
}
.lastPage {
    font-size: 16px;
    color: #fff;
    background: #507844;
    padding: 10px 20px;
    display: block;
    margin: 40px auto;
    width: 130px;
    text-align: center;
}
.news_related_list li a {display: block;padding: 10px;background: #fff;height: 100%;}
/*-----------------------------------------*/

/*------------------相簿設定----------------*/
.path p, .path p a {
    display: none;}
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 80px 40px;
}
.show-list .show_pic {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
}
.show-list .show_name {
    font-size: 17px;
    color: #3e502c;
    letter-spacing: 0.15em;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 26px;
}
.show-list .item:hover .show_name {
    color: #8cbd8a;
}
.page strong, .page a:hover {
    background: #447877;
    color: #fff;
}
/*-------下層-------*/
.subalbum-menu h2 {display: none;}
.album_fixed_title {display: none;}
.other_album_choice li {
    background: #9eb172;
    font-size: 15px;
    display: inline-block;
    border-radius: 5px;
    padding: 7px 20px;
    margin: 0 7px 7px 0;
}




/*一排呈現
.subbox_item { width:100%;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 表單設定 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #447877;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 10px;
}
.contact_content .information_right {
    width: 100%;
    padding-left: 10px;
}
.contact_content .information_left {
    display: none;}
.blank_letter {
    display: none;}/*"線上表單 * 為必填欄位"隱藏*/
.i_contact_box {
    padding: 0px 20px 50px;}/*減少上方與標題銜接空間*/

.contact_form li.last blockquote {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 1px #447877 solid;
    background: #ffffff66;
    width: 150px;
    max-width: calc(50% - 10px);
}   
.contact_form li.last blockquote input {
    color: #447877;
}    
/*重新填寫*/
.contact_form li.last cite {
    display: block;
    vertical-align: top;
    font-style: normal;
    padding: 7px;
    text-align: center;
    border: 0px;
    background: #447877;
    width: 150px;
    max-width: calc(50% - 10px);
}
.contact_form li.last cite input {
    color: #fff;
}
/*送出*/
/*--------表單結構調整---------*/
.i_contact_box section {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}
.contact_form li {
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-gap: 10px;
}
.contact_form li .form__label {
    display: block;
    max-width: 105px;
    text-align: right;
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {
color: #666;font-weight: 500;line-height: 160%;}/*選項文字調整*/
input {
    line-height: normal;
    background-color: #ffffffab;
}/*文字輸入處背景調整*/
.contact_form li input.noborder {
    border: 1px #ddd solid;
}/*文字輸入處不要框線*/
input, textarea {
    color: #555;
}/*文字輸入框文字顏色*/

@media screen and (max-width: 1024px) {
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #447877;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
}
@media screen and (max-width: 600px) {
.contact_form {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #447877;
    font-weight: 600;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
}






/* = = = 分隔線 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */

@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode { padding:30px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




