@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Gowun+Dodum&family=Lobster&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');


/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

.info_fix{ display: none;}
.path { display:none;}
.edit{ padding: 0px 0;}

body{
    font-family: "微軟正黑體", "Gowun Dodum" ,Arail;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.main_header_area{
    background: transparent;
}
.main_header_area .container{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: 22px;
    max-width: 1600px;
    background-color: #ffffffe0;
    border-radius: 9999px;
    -webkit-box-shadow: 0px 9px 20px 0px rgba(98, 110, 69, 0.2);
    box-shadow: 0px 9px 20px 0px rgba(98, 110, 69, 0.2);
    padding-left: 74px;
    padding-right: 26px;
    margin: auto;
    animation: show-nav 1.2s ease-in-out forwards;
}

@keyframes  show-nav {
    from,
    60%,
    75%,
    90%,
    to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
  
    0% {
      opacity: 0;
      transform: translate3d(0, -3000px, 0) scaleY(3);
    }
  
    60% {
      opacity: 1;
      transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
  
    75% {
      transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
  
    90% {
      transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
  }
.header_area.sticky .main_header_area .container{ background-color: #ffffff;}


.me_tp_features{ display: none;}


/* nav */
.navigation{
  padding: 16px 0 16px 210px;  
}
.stellarnav > ul > li > a{
    margin: 0 12px;
    text-align: left;
    position: relative;
}

.stellarnav li a{
    color: #91867D;
    font-weight: 500;
}
.stellarnav ul ul{
    font-size: 15px;
    left: 0px;
    width: 140px;
}
.stellarnav li li{
    border-left: 1px #EBE8E7 solid;
}
.stellarnav.desktop li.has-sub li a{
    transition: 0.3s;
}
.stellarnav.desktop li.has-sub li a:hover {
    padding-left: 15px;
    font-weight: bold;
}
.stellarnav>ul>li:hover:before, .stellarnav > ul > li > a:hover b {
    color: #a59c82;
}


/* ham */
.stellarnav .menu-toggle span.bars{
    top: 4px;
}
.stellarnav.mobile{
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 9px 20px 0px rgba(98, 110, 69, 0.2);
}


/* menu漢堡條 */
.stellarnav .menu-toggle:after{  display: none;}
.stellarnav .menu-toggle span.bars span { background: #22272B;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {
    background: #4c4c4b;
    color: #fff;
}


/* close menu 拉出來 */
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
  background: #91867D;
  color: #fff;
}
.stellarnav .icon-close:before{
  border-bottom: solid 3px #EDEAE9;
}
.stellarnav .icon-close:after{
  border-bottom: solid 3px #EDEAE9;
}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
  background: #fff;
}
.stellarnav a.dd-toggle .icon-plus:before{
  border-bottom: solid 3px #444444;
}
.stellarnav a.dd-toggle .icon-plus:after{
  border-bottom: solid 3px #444444;
}
.stellarnav.mobile li.open{
  background:#bfb7b01c;
}
.stellarnav.mobile ul ul{
  width: 100%;
  position: relative;
  left: 0;
}
.stellarnav.mobile > ul > li{
  border-bottom: 1px #bfb7b05b solid;
}
.stellarnav.mobile > ul > li > a{ padding: 20px 43px 20px 10px;}
.stellarnav.mobile > ul > li > a.dd-toggle{ top: 13px;}

/* logo */
.nav-brand {
    width: 290px;
}
.nav-header{ 
    top: 15px;
}
@media screen and (max-width:1600px) {
    .main_header_area .container{
        max-width: 1300px;
    }
}
@media screen and (max-width:1100px) {
    .stellarnav > ul > li > a{ margin: 0 0px;}
}

@media screen and (max-width:1024px) {
    .navigation{
        padding: 16px 0 16px 0px;
    }
    .stellarnav > ul > li > a{
        padding: 0 21px 0 0;
    }
    .main_header_area .container{ top: 14px; width: 95%;}
    .nav-brand{ display: none;}
}

@media screen and (max-width:784px) {
    .main_header_area .container{
        width: 98%;
    }
}

@media screen and (max-width:768px) {
    .nav-brand{ display: block; width: 200px; background: #fff; border-radius: 70px; -webkit-box-shadow: 0px 9px 20px 0px rgba(98, 110, 69, 0.2);
        box-shadow: 0px 9px 20px 0px rgba(98, 110, 69, 0.2); padding: 10px 24px;}
    .navigation{ padding: 6px 0 0px 0px;}
    .nav-header{ display: flex; justify-content: flex-end;}
    .stellarnav.mobile{ position: absolute; left: 13px ; top: 20px;}
    .header_area.sticky .main_header_area .container{ background-color: transparent;}
    .main_header_area .container{ width: 100%; top: 8px; background: transparent; -webkit-box-shadow:unset; box-shadow:unset; padding-left: 16px; padding-right: 16px; animation: unset;}
    .stellarnav > ul > li > a::before{ display: none;}
}

@media screen and (max-width:570px) {
    .stellarnav .menu-toggle{ padding: 12px 12px;}
}
@media screen and (max-width:320px) {
    .main_header_area .container{ padding-left: 0px; padding-right: 4px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*●●●●●●●●●●●●●●●●●●●●●●●●   FOOTER區塊   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*Footer/＝＝＝＝＝*/

/*footer*/
.footer {  background-image: url(https://pic03.eapple.com.tw/maskennel/footer.jpg);  max-height: 480px; background-size: cover; background-position: 100%;  min-height: 15vw;}
.footer_logo { display: none;}
.footer_menu { display: none;}
.footer_info li p { color: #fff;}
.footer_info li p a { color: #fff;}
.footer_info li:nth-child(1) {  display: none; width: 59%;}

/*四幅犬舍隱藏*/
.au03 li:nth-child(1) {display:none;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shiny at 2023.1.5  */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap;}
.product_page .product-layer-two { position: relative; width: 220px; letter-spacing: 1px; border-right: 1px solid #ccc; display: none;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px); display: flex; flex-wrap: wrap; align-items: flex-start;}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:10px; 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:5px 10px; transition:all ease .3s;}
.product-layer-two li li a{ padding:0;}
.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;}
.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: #fff; 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) {
.products-list .item { width: calc(100% / 3);}
}
@media screen and (max-width: 980px) {
.products-list .item { width: 50%;}
}
@media screen and (max-width: 768px) {
.product-layer-two,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0;}
.product-layer-two > li { margin-bottom: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product-layer-two{ min-height: unset!important;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2; margin-top: 60px;}
.product_page ul.page { order: 3;}
.product_page ul.product-layer-two { order: 4;}
}
@media screen and (max-width: 600px) {
.products-list .item { width: 100%; max-width: 350px;margin: 20px auto; display: block;}
}


/* 商品 */
/*購物車*/
.product_page .product-layer-two{ width: 200px; border-right: 0px;}
.product-layer-two {position: relative;width: 12%;margin-right: 3%;padding: 0 0; margin: 0; }
.product-layer-two > li { width: 100%;max-width: 100%;text-align: left; border-bottom: 0px;}
.product-layer-two li a{width: 100%;border: none;color: #fff;text-align:left;border: 0px;font-weight: bold; background: #8F847D;}
.product-layer-two li.active a{ color: #fff; border: 0px;}

.product-layer-two li:hover ul li a{color: #5C9097;}
.product-layer-two li:hover ul li a:hover{color: #8F847D;}
.product-layer-two li ul li a{padding: 6px 0 6px 0px;}
.product-layer-two li ul li a:before{display: none;}

.product_page .products-list {width: 100%;padding: 0 3%;}
.products-list .item { width: 25%;float: left;padding: 0 10px; margin-bottom: 50px;overflow:hidden; }
.products-list .item:nth-child(2n) { float: left;}/*加這個順序正常*/
.product_page .show_content,.product_info_page .show_content{width: 100%;display: flex;justify-content: center;flex-wrap: wrap; flex-direction: row;}
.product-layer-two li:hover ul {border: none !important;display:block !important;}	
/*.product-layer-two li li{ display: block;padding: 5px 10px; transition: all ease .3s;}*/
/* 產品次分類 */
.product-layer-two li li{ border: 0px; border-bottom:0px;}
.product-layer-two li li:last-child{ border: 0px;}
.product-layer-two li ul{position: relative;width: 100%; margin-left: 0;margin-top: 16px; border-radius: unset; color: #ffffff00;}
.products-list .name{text-align: center;color: #91867D;line-height: normal;    -webkit-line-clamp: 3;font-size: 17px;text-align: center;font-weight: bold;}
.price{text-align: center; margin: 4% auto; width:100%;}
.products-list .more{border: 1px solid #BFB7B0;color: #BFB7B0;}
.products-list a:hover .more{background: #BFB7B0;border-color: #BFB7B0;}
.products-list .item a:hover .more{ background: #8F847D; color: #BDB5AE;}
.product_info_page .sidebarBtn{border: none; background: unset;}
.prod_related h6 span:before{font-size: 27px;color: #787878;letter-spacing: 3px;}
.product_info_page .inquiry_a2{ display:none;}/*檢視詢價車隱藏*/
.product_info_page .inquiry_a1{ width:100%; background: #8F847D;}
.radio-inline__label{border-radius: 20px;background: #e3f0f9;border: none;font-weight: bold;color: #555555;letter-spacing: 1px;}/*尺寸那欄位*/
.product-layer-two li{margin: 0px 10px 24px 0;}
/* .product-layer-two li a:before { left: 0; top: 0; width: 0; height: 0;  content:url(https://pic03.eapple.com.tw/mrblue/right-button1.png);padding: 0 8px;} */
.product-wrapper{width: 87%;}
.block{background: #555555;}
.product_pic #bx-pager{color: #555555;}
.product_info_page .action-button{display: none;}/*下單隱藏*/
.product_info li:nth-child(3){display: none;}/*數量隱藏*/


.products-list .item a .pic img {
  transition: .5s;
  transform: scale(1);
}

.products-list .item a:hover .pic img {
  transform: scale(1.05);
}


/* 產品用d-flex整個變形 */
.product_page .products-list, .product-wrapper{ display: block;}

/* 產品內頁 */
.sidebarBtn h2{ color: #464F56; font-size: 32px;}
ul.prod li h3.prod-thumb{  color: #22272B;margin: 16px 0; background:unset; text-align: left; padding: 5px 0px;}
.product_info_page .lastaction{background-color: unset; border: 1px solid #8F847D;}
.product_info_page .nextaction{background-color: #8F847D; color: #BDB5AE;}
.product_info_page button, html input[type="button"], input[type="reset"], input[type="submit"]{color: #fff;}
.product_info_page button, html input[type="reset"]{ color: #8F847D;}
.qaform span{ color: #000;}
.qaform .breakF{border: 1px #EBE8E7 solid; background: #fff;}
ul.prod li .prod-panel{ color: #000; line-height: 32px;}
.product_info_page .lastPage{background: #8F847D;}

.inquiry_a1:hover, .inquiry_a2:hover, .inquiry_a3:hover{ color: #EBE8E7;}

/* 相關推薦 */
.prod_related{display: none;}

/* 商品規格跟數量弄掉 */
.product_info li{ display: none;}
/* 價錢隱藏 */
.toShare{ display: none;}

/* 詢價車 */
.send_simple{ background: #8F847D;}
.rewrite_simple { background: #EBE8E7;}

@media screen and (max-width:1488px) {
    .product_page .product-layer-two{ width: 150px;}
}

@media screen and (max-width:1131px) {
    /*手機板產品*/
.product_info_page .product-layer-two {
    display: none;}

.product_page .main_part, .product_info_page .main_part{max-width: 100%;}
.product_page .main_part{padding: 0 0;}
.product_page .product-layer-two,.product_info_page .product-layer-two{width: 100%;padding: 60px 0 20px 0;}
.product_page .product-layer-two > li{width: 33%;}


/*.product_page .product-layer-two li > ul{ display: none!important;}*/
.product_page .product-layer-two li > ul:hover{ display: block; }
.product_page .clearfix,.product_info_page .clearfix{width: 100%;}
.product_page .products-list .item{margin-bottom: 50px;width: 49%;}
.product_info_page .product-layer-two{width: 100%;}
.product_info_page .product-layer-two > li{width: 47%;float: left;}
.product_info_page .product-layer-two li ul{ position: absolute; padding-top: 16px;}
.product_info_page .product-layer-two li > ul{ display: none!important;}
.product_info_page .product-layer-two li > ul:hover{ display: block; }

.product_pic { display:block; width:100%;}
.product_info_page .mobile_product_name{ display:none; /*margin-bottom: 35px;margin-top: 35px; text-align: center;*/}
.product_info_page .path { display:none;}
article.product_main img { width:auto !important; max-width:100%; height:auto !important;}
article.product_main iframe { width:100% !important; min-height:300px !important;}
}
@media screen and (max-width:500px) {
    .products-list .name{ font-size: 15px;}
}
@media screen and (max-width:360px) {
    .product_page .products-list .item{ margin-bottom: 0px; width: 98%;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:static; height:auto; margin-top: -95px;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-slide img { height:auto;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner { 
    background: url(https://pic03.eapple.com.tw/maskennel/bn01.png) no-repeat;
    height: 400px;
    text-align: center;
    background-position: 30%;
    position: relative;
    background-size: cover;
    font-size: 40px;
}
.banner h5 {
    color: #443a30;
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40%;
}
.banner h5:before {
    content: "";
    display: block;
    font-size: 18px;
    color: #b9aa87;
    margin-bottom: 2px;
    font-weight: bold;
}
.blog_page .banner h5:before {content: "NEWS";}
.album_page .banner h5:before, .album_info_page  .banner h5:before {content: "MEMBER";}
.contact_page .banner h5:before {content: "CONTACT";}


@media screen and (max-width:1400px) {
.banner{
    padding: 146px 0px 185px;
    background-position: bottom;
}
}

@media screen and (max-width: 768px) { 
.banner {
    padding: 116px 0; height: 300px;}
}

@media screen and (max-width: 600px) { 
    .banner {    background-position-x: 23%;    padding: 110px 0;}
    .banner h5 {
        right: 14%;
        text-align: right;
        position: absolute;
        left: 0;
        transform: none;
        font-size: 25px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 活動相簿 */
.show-list .show_name { text-align: center;color: #BFB7B0;}
.show-list .item:hover .show_name { color: #91867D;}
.overlay{ background: rgba(76,70,64,0.88);}
.overlay:before{ 
  content: "MORE+";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color: #BDB5AE;
font-weight: bold;
font-family: "Gowun Dodum" ,Arail;
}

.show-list .show_pic img{ max-width: 108%;}

/* 最裡面的按鈕 */
.album_fixed_title{ background: unset; color: #636363;}
.other_album_choice li {
    background: #dad3c3;
    border: 0px;
    border-radius: 0px;
}
.other_album_choice li a {
    color: #6d634d;
}
.page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
/*●●● 文章分類 ●●●*/
/*文章管理/＝＝＝＝＝*/
h4.blog_category_title{font-size: 28px;}
h4.blog_category_title span{font-size: 24px;}
/*側邊*/
h5.blog_le_t em{display:none;}
h5.blog_le_t span {font-size: 14px;}
.blog_le .accordion > li{transition:all 0.3s;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {    background: #bfbfbf!important;}
.submenu a{ color: #4C4640;}
.submenu a:hover {    background: #BDB5AE;}
/*首*/
.module_i_news ul{width: 90%;	grid-template-columns:1fr 1fr 1fr 1fr;}
/*功*/
.blog_subbox{grid-template-columns:1fr 1fr 1fr;}
.blog_subbox:before{content:none;}

/*版面*/
.subbox_item a:before {
    content: 'READ MORE ' url(https://pic03.eapple.com.tw/alicemingmo/scr_icon_r.png);
    position: absolute;
    z-index: 19;
    right: auto;
    left: 7px;
    bottom: 80px;
    opacity: 1;
    text-align: left;
    font-size: 14px;
    color: #BDB5AE;
    transition: all .6s;
}
.subbox_item a {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
}
.subbox_item {
    width: 100%;
    border-bottom: 1px solid #EBE8E7;
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.blog_subbox {
    width: 100%;
}
.blog_list_le {
    width: 300px;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.blog_list_ri {
    display: flex;
    width: calc(100% - 300px);
    flex-direction: column;
}
.subbox_item a:after {display: none;}
.blog_list_le::before {
    content: "";
    width: 100%;
    height: 100%;
    background:rgba(76,70,64,.3);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s;
    opacity: 0;
}
.blog_list_ri h5 {
    font-weight: bold;
    font-size: 20px;
    color: #464F56;
    order: 2;
}
.blog_list_ri em {
    font-size: 12px;
    color: #8F847D;
    order: 1;
    margin: 7px 0;
    margin-bottom: 25px;
}
.blog_list_ri p {
    font-size: 14px;
    color: #090A0A;
    order: 3;
    margin-top: 6px;
}
.subbox_item a:hover:before {
    transition: 0.6s;
    content: 'READ MORE ' url(https://pic03.eapple.com.tw/alicemingmo/scr_icon_h.png);
    color: #6d6d6d;
}
.subbox_item a:hover .blog_list_le::before {
    opacity: 1;
    transition: 0.6s;
}
h5.blog_le_t span {
    display: none;
}
h5.blog_le_t em {
    font-size: 17px;
    font-weight: 400;
}
h5.blog_le_t {
    display: flex;
    flex-direction: column-reverse;
}
.blog_le {margin-top: 30px;}
.accordion li .link a {font-weight: 500; color: #615d54;}

/*詳細頁*/
.blog_in_page h4.blog_category_title {font-weight: 600;font-size: 24px;border-bottom: 1px solid #ddd;padding-bottom: 15px;
    margin-bottom: 15px; color: #464F56;}
.blog_back {margin-top: 8vw;}
.blog_back a.article_btn_back {background: #BDB5AE;}
.blog_back a.article_btn_prev, .blog_back a.article_btn_next {
    background: #bfbfbf;
}
.blog_back a.article_btn_back {
    background: #dad3c3;
}


@media screen and (max-width: 960px){
	/*文章分類*/
	/* .subbox_item{border-bottom: none;width: 48%;} */
}
@media screen and (max-width: 768px) {
	/*文章分類*/
	.blog_ri {width: 100%;padding: 0;}
	.blog_le{width: 100%;}
}
@media screen and (max-width:500px) {
    .blog_list_le{width: 180px;}
    .subbox_item a:before{ bottom: 20px;}
    .blog_list_ri{ width: calc(100% - 180px);}
}
@media screen and (max-width:400px) {
    .blog_list_ri p{ display: none;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {display: none; }
.footer.with_shopping_mode { padding:30px 0 60px; }
#to_top { bottom:60px;}

.bannerindex {
    padding-bottom: 2%;
}
.stellarnav > ul > li > a {
    font-size: 14px;
}
.au01 h5 {
    padding-bottom: 20px;
}
/*大圖位置調整*/
.swiper-slide img {
    height: auto;
    margin-top: 130px;
}

#bottom_menu li a:nth-child(2) {
    display: none;
}

}

@media screen and (max-width: 600px) { 
}




