@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/
.header_area {
    padding: 0;
    border-top: 8px solid #405d47;
    background: linear-gradient(to top, rgb(53 80 56 / 85%) 0%, rgb(125 211 143 / 60%) 50%, rgb(241 247 242) 100%);
    background: -moz-linear-gradient(to top, rgb(53 80 56 / 85%) 0%, rgb(125 211 143 / 60%) 50%, rgb(241 247 242) 100%);
    background: -webkit-linear-gradient(to top, rgb(53 80 56 / 85%) 0%, rgb(125 211 143 / 60%) 50%, rgb(241 247 242) 100%);
    background: -ms-linear-gradient(to top, rgb(53 80 56 / 85%) 0%, rgb(125 211 143 / 60%) 50%, rgb(241 247 242) 100%);
	background: #fff0;
}
.header_area.sticky {
    background: #d7e3dae3;
    box-shadow: 0 0 30px #0000009e;
}
.main_header_area .container { max-width: 1500px;}
.navigation {
    grid-template-columns: 180px 1fr;
    margin: 0 0 6px;
    padding: 0 30px 6px;
}
.tp_links { padding: 0 10px; display: none;}


/*電腦LOGO*/
.nav-header, .nav-brand { width: 100%; max-width: unset;}
.nav-brand {
    text-align: center;
    filter: contrast(0.8) opacity(0.7);
	transform: scale(1.15) translate(0, 12px);
    transition: .5s ease-out;
}
.nav-brand:hover {
    filter: contrast(1) opacity(0.8);
	transform: scale(1.25) translate(20px, 15px);
}
.header_area.sticky .nav-brand {
    transform: scale(1) translate(0, 0);
}
.header_area.sticky .nav-brand:hover {
    transform: scale(1.05) translate(0);
}
.pageIndex .nav-brand {
    filter: contrast(1) opacity(0.65);
    transform: scale(1.5) translate(12%, 25%);
}
.pageIndex .nav-brand:hover {
    transform: scale(1.6) translate(12%, 25%);
}
.nav-brand img {
    width: 100%;
	max-width: 180px;
    margin: 18px 18px 0;
}

@media screen and (max-width: 1500px) {
.pageIndex .nav-brand { transform: scale(1.3) translate(8%, 15%);}
.pageIndex .nav-brand:hover { transform: scale(1.4) translate(8%, 15%);}
}
@media screen and (max-width: 1200px) {
.pageIndex .nav-brand { transform: scale(1.15) translate(0, 12px);}
.pageIndex .nav-brand:hover { transform: scale(1.2) translate(0, 12px);}
}
@media screen and (max-width: 1024px) {
.navigation { padding: 0;}
.pageIndex .nav-brand, 
.nav-brand { filter: contrast(0.8) opacity(0.7); transform: scale(1) translate(0);}
.pageIndex .nav-brand:hover, 
.nav-brand:hover { transform: scale(1.05) translate(0);}
.nav-brand img { margin: 20px 0 0;}
}
@media screen and (max-width: 768px) {
.navigation { padding: 0;}
.header_area { padding: 10px 10px 0;}
.nav-brand img { width: 88%; max-width: 150px; margin: 5px 0 0;}
}
@media screen and (max-width: 400px) {
.pageIndex .nav-brand, 
.nav-brand { padding-left: 30px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*按鈕字體設定*/
.stellarnav ul { margin: -8px 0 0;}
.stellarnav li {
	background: #ffff0;
    padding: 0;
    margin: 0 -2px;
    border-top: 8px solid #405d47;
    transition: ease 1s;
}
.stellarnav li:hover {
    background: linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255) 100%);
    background: -moz-linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255) 100%);
    background: -webkit-linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255) 100%);
    background: -ms-linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255) 100%);
    border-top: 8px solid #ffffff4a;
}
.header_area.sticky .stellarnav li:hover {
    background: linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255 / 70%) 50%, rgb(255 255 255) 100%);
    background: -moz-linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255 / 70%) 50%, rgb(255 255 255) 100%);
    background: -webkit-linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255 / 70%) 50%, rgb(255 255 255) 100%);
    background: -ms-linear-gradient(to top, rgba(255 255 255 / 0%) 0%, rgb(255 255 255 / 70%) 50%, rgb(255 255 255) 100%);
    border-top: 8px solid #ffffff8f;
}
.stellarnav > ul > li > a, 
.stellarnav li.has-sub > a, 
.stellarnav > ul > li.has-sub > a {
    color: #063f15;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 5px #fff, 1px 1px 15px #fff;
    letter-spacing: .03em;
    line-height: 35px;
    height: 84px;
    margin: 0;
    padding: 50px 25px 0;
}
.stellarnav li.has-sub > a:after { 
	top: 78%;
    right: 5%;
	border-top: 6px solid #405d47;
}
.stellarnav li.has-sub:hover > a:after {
    border-top: 6px solid #405d4700;
}

.stellarnav ul ul { margin: 0;}
.stellarnav li li {
    border: 0;
    border-bottom: 1px #eee solid;
}
.stellarnav li li:hover {
    background: #e6ebda;
    border: 0;
    border-bottom: 1px #eee solid;
}
.stellarnav.desktop li.has-sub li a, 
.stellarnav li li a {
    color: #111;
	font-size: 14px;
    line-height: 34px;
    margin: 0;
	height: auto;
    line-height: 20px;
}
.tp_links { display: none;}

@media screen and (max-width: 1024px) {
.stellarnav ul { margin: 0;}
.stellarnav li.has-sub > a:after { top: 45%;}
.stellarnav li, .stellarnav li:hover, .header_area.sticky .stellarnav li:hover { border-top: 0;}
.stellarnav > ul > li > a, 
.stellarnav li.has-sub > a, 
.stellarnav > ul > li.has-sub > a { height: 50px; padding: 5px 3.5vw 0; margin: 3px 0;}
}
@media screen and (max-width: 768px) {
.stellarnav.mobile > ul > li { background: #fff0; border-bottom: 1px #ccd5b4 solid; transition: ease.3s;}
.stellarnav.mobile > ul > li:hover { border-bottom: 1px #ccd5b4 solid; background: #e6ebda;}
.stellarnav.mobile li.open { background: #e6ebda; padding: 0;}
.stellarnav > ul > li.has-sub > a { text-align: left; height: auto; line-height: 150%;}
.stellarnav.mobile > ul > li > a { padding: 10px 43px 9px 10px; margin: 0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto; margin-top: -100px;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 1024px) {
.bannerindex { margin-top: -62px;}
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin: -5px 0 0;}
}
@media screen and (max-width: 600px) {
.main_part { padding: 25px 10px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*內頁BANNER 設定*/
.banner {
    margin-top: -100px;
    padding: 130px 0 0;
    background: no-repeat center #f9f9f9;
    background-size: cover;
    background-position-y: -13.5vw;
	border-bottom: 1px solid #05280f;
}
.banner h5 {
    font-family: Noto Serif TC;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 15px #06370c, 2px 2px 25px #06370c7a, 2px 2px 40px #06370c94;
    letter-spacing: .1em;
}
.banner.banA, .banner.banB, .banner.banC, .banner.banD, .banner.banE, .banner.banF, 
.banner.banblog { background-image: url(https://pic03.eapple.com.tw/lizhutree/ban01.jpg);}

@media screen and (max-width: 1024px) {
.banner { margin-top: -62px; padding: 140px 0 20px;}
.banner h5 { font-size: 32px;}
}
@media screen and (max-width: 768px) {
.banner { background-position-x: left; margin-top: -5px; padding: 100px 0 50px; min-height: unset;}
.banner h5 { font-size: 28px;}
}
@media screen and (max-width: 400px) {
.banner { padding-left: 30px; background-size: 383px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer設定*/
.footer {
    padding: 50px 0 0;
    background: linear-gradient(to top, #ffffff 25%, #0b3b150d 100%);
	background: -moz-linear-gradient(to top, #ffffff 25%, #0b3b150d 100%);
    background: -webkit-linear-gradient(to top, #ffffff 25%, #0b3b150d 100%);
    background: -ms-linear-gradient(to top, #ffffff 25%, #0b3b150d 100%);
}
.footer .center {
    max-width: unset;
}
.footer_logo {
    margin: 18px 10px 30px;
    max-width: 220px;
	width: 90%;
}
.footer_logo img { width: 95%; max-width: 245px;}

.footer_info {
	grid-template-columns: 280px 1fr;
    padding-right: 110px;
    padding: 0 70px 0 30%;
}
.footer_info li {
    padding: 25px 10px 0;
}
.footer_info li p, 
.footer_info li p a {
    letter-spacing: 4px;
    color: #90af97;
    font-weight: 600;
}

/*footer聯絡資訊 順序對調*/
.footer_info li:nth-child(1) { display: flex; flex-direction: column; padding: 10px 10px 30px;}
p.tel { order: -1;}

/*footer聯絡資訊隱藏*/
p.phone, li.info_PHONE, .box_link { display: none;}

/*footer按鈕設定*/
.footer_menu a {
    font-weight: 500;
    letter-spacing: .05em;
    color: #649f72;
    background: #fff0;
    border: 1px #fff0 solid;
    border-radius: 0;
    padding: 7px 0 0 10px;
    margin: 0 2.2vw 8px 0;
    transition: .5s ease-out;
}
.footer_menu a:hover {
    color: #03270c;
    background: #fff0;
    font-weight: 600;
}
.footer_menu a:before {
    content: "";
    width: 1px;
    height: 25px;
    margin: 0 7px -8px -7px;
    background: #90af97;
    display: inline-block;
    transition: .2s ease-out;
}
.footer_menu a:hover::before {
    width: 77px;
    height: 2px;
    margin: 27px -67px -12px -9px;
    background: #405d47;
}

/*版權欄位設定*/
.copy { background: #3e5d46; color: #9ba99f;}
.copy a { color: #9ba99f;}
.copy a:hover { color: #dce7df;}

@media screen and (max-width: 1300px) {
.footer_info { grid-template-columns: 280px 1fr; padding: 0 70px 0 18%;}
.footer_menu a { margin: 0 .5vw 8px 0;}
}
@media screen and (max-width: 1024px) {
.footer_info { margin: 0 0 0 auto; max-width: 90%; grid-template-columns: 240px 1fr; padding: 0 40px 0 3%;}
.footer_logo { margin: 18px 10px 30px;}
.footer_menu a { min-width: 75px;}
}
@media screen and (max-width: 900px) {
.footer_info { max-width: unset; grid-template-columns: 220px 1fr; grid-gap: 15px; padding: 0 0 0 6%;}
.footer_logo { max-width: 200px;}
.footer_info li p, 
.footer_info li p a { letter-spacing: .22em;}
}
@media screen and (max-width: 768px) {
.footer_info { padding: 0 5%;}
.footer_logo { margin: 30px 10px -6px; max-width: 200px;}
.footer_info ul { display: flex;}
.footer_info li:nth-child(1) { padding: 10px 12px 30px; width: 77%;}
.footer_info li p, .footer_info li p a { letter-spacing: .18em;}
.footer_info li:nth-child(2) { width: 120px; margin: -112px 0 0;}
.footer_menu a { margin: 0 0 12px;}
}
@media screen and (max-width: 600px) {
.footer_info ul { flex-direction: column;}
.footer_logo { max-width: 200px;}
.footer_info li:nth-child(1) { width: 100%;}
.footer_info li:nth-child(2) { margin: 0 0 0 55%; padding: 30px 0 10px;}
}
@media screen and (max-width: 400px) {
.footer_info { padding: 0 3%;}
.footer_logo img { width: 88%;}
.footer_info li p, .footer_info li p a { letter-spacing: .03em;}
.footer_info li:nth-child(2) { margin: 0 35px 0 auto; padding: 10px;}
}



/* 跨欄位+置中 11版必放 */
.footer_info div:nth-of-type(3) { grid-column: 1 / 3; text-align: center; margin-top: 10px;}
@media screen and (max-width: 768px) {
.footer_info { grid-template-columns: 1fr;}
.footer_info div:nth-of-type(3) { grid-column: unset;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡我們 聯絡資訊*/
.contact_content { padding: 30px 0 80px;}
.contact_page .main_part { max-width: unset;}
.blank_letter { font-family: Noto Serif TC; font-size: 24px; color: #4b8153; letter-spacing: .05em; padding: 40px 0 5px;}

.contact_content .information_left, 
.contact_content .information_right { padding: 0 5vw;}
.contact_content .information_left { width: 58%;}
.contact_content .information_right { width: 40%; border-left: 1px solid #90af97;}

.list_before { margin: 15px 2px 40px;}
.list_before.info li { padding-left: 65px; letter-spacing: 3px; color: #5b8a91; font-weight: 600;}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before { color: #8fbcc5; width: 70px; font-size: 15px; letter-spacing: 17px;}
.info_LINE:before { letter-spacing: .3em;}
.contact_le_nomap { filter: saturate(.5) opacity(.9);}
.contact_le_nomap:hover { filter: saturate(.6) opacity(1);}

.contact_form { margin-top: 20px;}
.contact_form li.last blockquote, 
.contact_form li.last cite { border: 1px #4b8153 solid; max-width: 150px; width: calc(50% - 10px);}
.contact_form li.last blockquote { color: #4b8153;}
.contact_form li.last cite { background: #689f70;}
.contact_form li.last { margin-top: 70px;}

@media screen and (max-width: 1300px) {
.contact_content .information_left, 
.contact_content .information_right { padding: 0 2.5vw;}
}
@media screen and (max-width: 900px) {
.contact_content { padding: 0 0 40px;}
.contact_content .information_left, 
.contact_content .information_right { width: 100%; padding: 0 6vw;}
.contact_content .information_right { border-left: 0; border-top: 1px solid #90af97; margin-top: 50px;}
}
@media screen and (max-width: 600px) {
.contact_form li { grid-template-columns: 1fr;}
.contact_form li .form__label { background: none; padding: 3px 0 0; margin: 0 0 -5px;}
.contact_content .information_left, 
.contact_content .information_right { padding: 0 2vw;}
.list_before.info li { padding-left: 48px; letter-spacing: .1em;}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before { letter-spacing: 5px;}
.info_LINE:before { letter-spacing: .06em;}
}
@media screen and (max-width: 350px) {
.list_before.info li { padding: 25px 0 0;}
.info_TEL:before, .info_TEL2:before, .info_PHONE:before, .info_LINE:before, .info_FAX:before, .info_TAXID:before, .info_MAIL:before, .info_ADD:before, .info_ADD2:before { margin-top: -23px;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*工程實績 相簿設定*/
.subalbum-menu h2 { font-family: Noto Serif TC; font-size: 24px; color: #4b8153; letter-spacing: .05em;}
.album_fixed_title { background: #fff0;}
.other_album_choice li { background: #405d47;}


/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding: 30px 0 55px;}
#to_top { bottom: 65px;}
#bottom_menu li:last-child { display: none;}  /*手機隱藏*/
}
@media screen and (max-width: 600px) { 
.copy { padding-top: 8px;}
}




