@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Deva:wght@100..800&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/

body{
    font-family: "Zen Maru Gothic","微軟正黑體","Playpen Sans Deva", cursive;
}
.path p, .path p a{ display: none;}

.edit{ padding: 0px 0;}
.info_fix{ display: none;}


.other_select_page #content .promotion_title,.other_select_page #content .other_promotion ,.other_select_page #content .page { display: none;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*反白顏色*/
::-moz-selection{
    background-color: #6BA8DA;
    color: #e2e2e2;
  }
  ::selection{
    background-color: #6BA8DA;
    color: #e2e2e2;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #e2e2e2;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #e2e2e2;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #e2e2e2;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #6BA8DA;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}




/*首頁大圖文字特效*/

.bannerindex .swiper-wrapper {
    position: relative;
}

.bannerindex .swiper-slide.swiper-slide-active:before{
	content: "";
    position: absolute;
	animation: ss 2.5s ease backwards;
	
	display: block;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 10000;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):before,.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):before{
	background: url("https://pic03.eapple.com.tw/mumuah/ban-text.png") no-repeat left 80%;
	background: url("https://pic03.eapple.com.tw/mumuah/ban-text.png") no-repeat left 120%;
	background-size: cover;
}



.bannerindex .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	overflow: hidden;
	/*height: 100vh;*/
}

.bannerindex .swiper-slide img {
    object-fit: cover;
    object-position: 50% 50%;
}


@media screen and (max-width: 600px) {
	.swiper-wrapper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        overflow: hidden;
        background: #f9f4e8;
    }
	.swiper-wrapper .swiper-slide img {
        height: 65vw;
		object-fit: cover;
		object-position: 60% 50%;
    }
	.bannerindex .swiper-slide.swiper-slide-active:nth-of-type(1):before, .bannerindex .swiper-slide.swiper-slide-active:nth-of-type(2):before {
		background-size: 130%;
	}
}


@keyframes ss {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ss02 {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




@-webkit-keyframes scroll {
    0%,
    100%,
    20%,
    50%,
    80% {
        /*background-position-y: -57px;*/
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }
    40% {
        /*background-position-y: -38px;*/
        -webkit-transform: translate(-50%, 30%);
        transform: translate(-50%, 30%);
    }
    60% {
        /*background-position-y: -48px;*/
        -webkit-transform: translate(-50%, 40%);
        transform: translate(-50%, 40%);
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*LOGO*/

.nav-brand { width:260px;  transition: all 0.4s;  position: absolute; margin-top: 7px;}
.navigation{ grid-template-columns:300px 1fr;}

/*HEADER*/


.pageIndex .header_area {  animation: show-nav 1.2s ease-in-out forwards;}

@keyframes fade-in-elegant {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 從下方滑入 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 最終位置 */
    }
}

@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);
    }
  }

.main_header_area .container {  max-width: 90%;}
.header_area {  background: #ffffff;  transition: all .4s ease-in-out;   padding: 10px 0px;   
    /* position: fixed;  top: 20px;  border-radius: 120px; width: 96%;  margin: 0 2%;  */
 }
.header_area.sticky { width: 100%;  z-index: 9999;  background: #fff;   transition: all .4s ease-in-out;   top: 0;  border-radius: 0; margin: 0 0%;}
.me_tp_features {display: none;}

/*第一層*/

.stellarnav li.has-sub > a:after{display: none;}
.stellarnav > ul > li > a { letter-spacing: 3px; color: #355878; font-weight: 400; font-size: 16px; padding: 30px 26px 0px;  margin: 0px; position: relative; z-index: 1; height: 59px;} 
.stellarnav > ul > li > a:hover{color: #E8981F; transform: translateY(-3px);  transition: 0.3s ease-out;}
.stellarnav > ul > li:after { content: ''; position: absolute; right: 0px; bottom: 22px; width: 1px; height: 15px; background-color: #355878;}
.stellarnav > ul > li > a b:nth-of-type(2) {  font-size: 13px;}
.stellarnav > ul > li:nth-last-child(1):after{display:none}

/* 病例分享文章隱藏 */
.stellarnav > ul > li:nth-child(6) { display: none;}



/*選單icon*/
.stellarnav > ul > li > a:before {
     content: url(https://pic03.eapple.com.tw/mumuah/nav-01.png);
    position: absolute;
    display: inline-block;
    top: 32%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    }

.stellarnav > ul > li:nth-of-type(2) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-02.png);}
.stellarnav > ul > li:nth-of-type(3) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-08.png);}
.stellarnav > ul > li:nth-of-type(4) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-04.png);}
.stellarnav > ul > li:nth-of-type(5) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-04.png);}
.stellarnav > ul > li:nth-of-type(6) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-03.png);}
.stellarnav > ul > li:nth-of-type(7) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-05.png);}
.stellarnav > ul > li:nth-of-type(8) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-06.png);}
.stellarnav > ul > li:nth-of-type(9) > a:before {
    content: url(https://pic03.eapple.com.tw/mumuah/nav-07.png);}


/*第二層*/
.stellarnav ul ul {  background: #ffffff; box-shadow: 5px 5px 25px rgb(0 0 0 / 6%); width: 205px; left: 15px;}
.stellarnav li li {border: none;}
.stellarnav li li > a, .stellarnav li li.has-sub > a {  padding: 10px 12px;  transition: all 0.3s;  border: none;  position: relative; letter-spacing: 1px; font-size: 15px; color: #355878;;}
.stellarnav li li:hover > a, .stellarnav li li.has-sub:hover > a { color: #DB8B1F; padding: 12px 5px 12px 35px; background: transparent; border: none;}
.stellarnav li li > a:before { content: ''; position: absolute; left: -14px; opacity: 0; transition: all 0.8s; width: 0px; height: 1px; background: #DB8B1F;top: 25px;}
.stellarnav li li:hover > a:before{ opacity: 1; left: 10px; width: 14px;}
.stellarnav.desktop li.has-sub a{ color: #355878;}
.stellarnav.desktop li.has-sub a:hover{  color: #DB8B1F; }
.stellarnav > ul > li.drop-left > ul{ right: unset; left: 15px;}


/* 漢堡條 */
.stellarnav .menu-toggle span.bars span {background: #4c4c4c;}
.stellarnav .menu-toggle:after { color: #4c4c4c;}

/* close menu 拉出來 */
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
    background:  #52759C;
    color: #fff;
  }
  .stellarnav .icon-close:before{
    border-bottom: solid 3px #ECF0E5;
  }
  .stellarnav .icon-close:after{
    border-bottom: solid 3px #ECF0E5;
  }
  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
    background: #fff;
  }
  .stellarnav a.dd-toggle .icon-plus:before{
    border-bottom: solid 3px #F4AA39;
  }
  .stellarnav a.dd-toggle .icon-plus:after{
    border-bottom: solid 3px #F4AA39;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle{
    padding: 11px;
    top: 7px;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle:before{
      display: none;
  }
  .stellarnav.mobile li.open{
    background: transparent;
  }
  .stellarnav.mobile ul ul{
    width: 100%;
    position: relative;
    left: 0;
  }
  .stellarnav.mobile > ul > li{
    border-bottom: 1px rgba(224, 224, 224, 0.6) solid;
  }

  .stellarnav.mobile li a{ border-bottom: 0px;}

  .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}




@media screen and (max-width:1438px) {
    .stellarnav > ul > li > a{ padding: 30px 14px 0px;}
}
@media screen and (max-width:1308px) {
    .stellarnav > ul > li > a{padding: 30px 12px 0px; }
    .nav-brand{width: 200px; }
    .navigation{ grid-template-columns:200px 1fr;}
}
@media screen and (max-width:1134px) {
    .stellarnav > ul > li > a{ font-size: 14px;}
}

@media screen and (max-width: 1024px) {

.stellarnav ul {  text-align: center;    padding-top: 55px;   margin-bottom: -20px; }
.nav-brand { margin-top: 32px; width: 240px; z-index: 99;}
.header_area{padding: 30px 0; }
.header_area{ background: #ffffffe6;}
.nav-header{ z-index: 9999;}
}

@media screen and (max-width: 768px) {
  .stellarnav ul {  padding-top: 0px;   margin-bottom: 0px; }
  .stellarnav > ul > li.drop-left > ul{ left: 0px;}
.header_area {    background: #ffffff;    transition: all .4s ease-in-out;    padding: 10px 0px;     position: relative;    top: 0;   border-radius: 0;    width: 100%;    margin: 0;   height: 65px;}
.header_area.sticky {  background: rgb(255 255 255 / 92%); padding: 0px;  backdrop-filter: none;}
.header_area.sticky .nav-brand {  background: transparent; backdrop-filter: none; width: 100px; margin: 15px auto; animation: none;}
.header_area.sticky .nav-header { width: 170px; transition: all 0.3s;  background: #ffffffb5; box-shadow: 1px 1px 25px rgb(0 0 0 / 3%); border: 1pt solid #FFF; backdrop-filter: saturate(93%) blur(10px);}
.nav-brand {  margin-top: 50px;   width: 200px; }
.pageIndex .header_area {  animation: none;}
.stellarnav.mobile > ul > li > a{ padding: 20px 43px 20px 10px; font-size: 15px;}
.stellarnav > ul > li:after{ width: 0px; height: 0px;}
.stellarnav > ul > li > a:before{ top: 48%; left: 22%;}
.stellarnav.mobile.left > ul{ top: 0px;}
.stellarnav.mobile{ top: -4px;}
.nav-header{ z-index: 9;}
}


@media screen and (max-width: 570px){
    .nav-brand{ width: 190px;}
    .stellarnav.mobile{ top: 8px;}
    .stellarnav > ul > li > a:before{  left: 43%;}
}

/* 商品下拉超過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_logo {
    width: auto;
    /* display: none; */
}

.footer_logo a {
    background: url(https://pic03.eapple.com.tw/mumuah/f-logo.png);
    background-size: contain;
    width: 130px;
    height: 100px;
    background-repeat: no-repeat;
    text-indent: 101%;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}



.footer .center{ max-width: 1000px;}
.footer_logo{ max-width: 200px;}

.footer {
    padding: 24px 0 0;
    background-image: url(https://pic03.eapple.com.tw/mumuah/footer-bg.jpg );
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Zen Maru Gothic","微軟正黑體","Playpen Sans Deva", cursive;
}

.center {
    max-width: 1150px;
}

.footer_info {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 0;
}

.footer_info ul {
    width: 100%;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-flow: row wrap;
}

.footer_info li:nth-child(2) {
    text-align: center;
}

.footer_info li p {
    width: 100%;
    text-align: center;
}

.footer_info li p,.footer_info li p a {
    color: #000;
    font-size: 17px;
}

.footer_info li p.tel{ order: 1;}
.footer_info li p.line{ order: 2;}
.footer_info li p.mail{ order: 3;}
.footer_info li p.add{ order: 4;}

.footer_menu a{ 
    color: #6BADDF;
    background: #fff;
    border: 5px solid #B8DDF4; 
    border-radius: 40px;
        padding: 16px;
    transition: all .25s;
}

.footer_menu a:hover {
    background: none;
    color: #E8981F;
    background: #fff;
    border: 5px solid #F4AA39;
}

.footer_menu a:nth-of-type(1),.footer_menu a:nth-child(6) { display: none; }

.copy {
    padding: 16px 0;
    margin-top: 20px;
    border-top: 0px;
}

.box_link {
    display: none;
}


#to_top{
    box-shadow: unset;
    color: #4189C0;
}

#to_top i:before, #to_top i:after{ background: #4189C0;}


@media screen and (max-width: 1366px) {
    #to_top{
        right: 5PX;
    }
}
@media screen and (max-width:1200px) {
    .footer_info li:nth-child(2) {width: 50%; margin: auto;}
    .footer_menu{display: grid; grid-template-columns:1fr 1fr 1fr; }
}
@media screen and (max-width:768px) {
    .footer_menu{ margin-top: 16px;}
     .footer_menu{grid-template-columns:1fr 1fr; }
}
@media screen and (max-width:450px) {
     .footer_menu{grid-template-columns:1fr; }
     .footer_info li:nth-child(2){ width: 70%;}
}
@media screen and (max-width:357px) {
    .footer_menu a{ border-right: 0px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */

.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}

.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width:100%; max-width:100%; padding:0; text-align:left; border-bottom:1px dotted #ccc; padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product_menu_list { display: none;} 
.product_info_page .products-list,
.product-wrapper { width: 100%;}

.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;}

.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner { background: transparent; padding: 150px 20px 20px; position: relative;}
.banner:before {
    position: absolute;
    content: "";
    width: 224px;
    height:184px;
    transform: translate(-50%, -50%);
    left: 57%;
    top: 34%;
    /* border-radius: 50%; */
    /* border: 2px dotted #fac02ca3; */
    background: url(https://pic03.eapple.com.tw/mumuah/ban-cat.png) no-repeat;
    background-size: contain;
    z-index: 0;
    animation: rr 1s infinite linear alternate
}
@keyframes rr {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}

.blog_page.article_a .banner:before{ width: 170px;left: 62%; }

.banner h5 { color: #355878; font-size: 52px; font-family: "Zen Maru Gothic","微軟正黑體", cursive;}
.banner h5:after{
  content: "NEWS";
  display: block;
  font-size: 30px;
  color: #6BA8DA;
  font-weight:bold;
  text-align: center;
   font-family: "Playpen Sans Deva", cursive;
}

.blog_page.article_a .banner h5:after,.blog_in_page.article_a .banner h5:after {content: "CASES"; }
.banner.banA h5:after {content: "CLINIC SCHEDULE"; }

.blog_page.article_b .banner:before,.blog_in_page.article_b .banner:before {
    background: url(https://pic03.eapple.com.tw/mumuah/ban-dog.png) no-repeat;
     width: 224px;
    height:184px;
     background-size: contain;
}
.banner.banA:before {
    background: url(https://pic03.eapple.com.tw/mumuah/ban-dog-1.png) no-repeat;
     width: 180px;
    height:184px;
     background-size: contain;
     left: 60%;
}


.other_select_page #content .banner.banA { display: none;}
.banner.banA {}
.banner.banB { display: none;}
.banner.banC {}
.banner.banD {}
.banner.banE {}
.banner.banblog {}

@media screen and (max-width:1400px) {
  .blog_page.article_a .banner:before{ left: 67%; top: 53%; }
}
@media screen and (max-width:1280px) {
    .banner:before{  left: 62%;}
    .banner.banA:before{ left: 69%;}
}
@media screen and (max-width:768px) {
    .banner { padding: 80px 20px 20px;}
    .banner:before,.blog_page.article_b .banner:before,.blog_in_page.article_b .banner:before{  left: 67%; width: 193px; height: 136px;}
    .banner.banA:before{left: 73%; width: 144px;}
}
@media screen and (max-width:600px) {
    .banner:before, .blog_page.article_b .banner:before,.blog_in_page.article_b .banner:before{
        left: 13%;
        width: 156px;
        height: 109px;
        top: 73%;
    }
    .banner.banA:before{ left: 13%; top: 85%; width: 114px; }
     .blog_page.article_a .banner:before{ left: 13%; top: 85%; width: 114px;  }
}
@media screen and (max-width:480px) {
    .banner{ padding: 28px 20px 49px;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.promotions_page #content{
    background-image: url(https://pic03.eapple.com.tw/mumuah/in-bg.jpg);
    background-position: top;
}

/* 促銷方案 */
/* 促銷方案背景 */
.promotions_page .edit { color: #000; padding: 40px 0 80px; font-family: "Zen Maru Gothic","微軟正黑體","Playpen Sans Deva", cursive;}

/*上面那排標題*/
.promotion_title{font-family: "Zen Maru Gothic","微軟正黑體","Playpen Sans Deva", cursive;}
.promotions_page .promotion_title em{ border: 0px ;    padding: 16px 16px;   background: #6B9ED0;  color: #fff;}
.promotions_page .promotion_title span{ display: none;}
.promotions_page  .promotion_title h2{color: #355878; font-size: 28px;padding-left: 16px; line-height: 50px; font-weight: bold; font-family: "Zen Maru Gothic","微軟正黑體","Playpen Sans Deva", cursive;}
/* 下方sitemap */
.other_promotion li a{ background: #e2eaff2b; border: 0px; color: #D9891F; transition: 0.2s;}
.other_promotion li a:hover{ background: transparent; color: #D87633;}
.other_promotion .pmtTitle h3{ color: #271d1d;}

@media screen and (max-width:1024px) {
    .promotions_page #content{
        background-position: left;
    }
}

@media screen and (max-width:768px) {
    .promotions_page .promotion_title h2{ padding-left: 0px;}
    .promotions_page .main_part { padding: 100px 10px 10px;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.blog_page #content,.blog_in_page #content{
    background-image: url(https://pic03.eapple.com.tw/mumuah/in-bg.jpg);
    background-position: top;
}
.blog_page .main_part{
    padding: 50px 20px 70px;
}
  /*文章設定*/
  /*一排呈現
  .subbox_item { width:100%;}
  */
  
  /* 側邊hover */
  .blog_le{ margin-top: 50px; font-family: "Zen Maru Gothic","微軟正黑體","Playpen Sans Deva", cursive;}
  .blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category {
    background: #E3931F !important; border-radius: 50px;}
  .submenu {background: #fff;}
  .submenu a{padding: 12px 12px 12px 30px;}
  .submenu a:hover {background: #ddd1ba;color: #1e150d;padding: 12px 12px 12px 35px;}
  .blog_le .accordion {border-radius: 0;border: none;}
  .blog_le .accordion li{border-bottom: 0px;}
  .blog_le .accordion li:last-child{border-bottom: none;}
  .blog_le .accordion li.open {background: #ddd1ba;}
  .blog_le .accordion li.open a{color: #000;}
  h5.blog_le_t{ display: none;}
  h5.blog_le_t em{ display: none;}
  .blog_search input[type=search]{ border-radius: 0px;}

  /* 右邊 */

  /* 右邊往右上角移動 */
  .subbox_item:hover{
    /* -webkit-transform: translate(20px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px); */
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
  }

  .share_page .edit {    text-align: justify;    line-height: 180%;}
  .subbox_item a:before , .subbox_item a:after {    transition: 0.3s;}
  /* .subbox_item a::before{
    
    margin-bottom: 10px;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Serif TC", "微軟正黑體", sans-serif;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #fff;
    background-color: #caab7c;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
  } */
  .blog_le .accordion > li {    transition: all 0.3s;}
  .blog_box_edit {    line-height: 180%;    text-align: justify;}
  .blog_box_edit .edit { padding: 16px 0px 24px;}
  h4.blog_category_title {    text-align: justify; font-size: 36px;}
  .link a {    width: 100%;    display: block;    padding: 15px 10px;}
  .accordion li .link {    padding: 0; border: 0px!important;}
  .accordion li .link a{ font-size: 17px;}
  .blog_list_ri{padding:16px; }
  .blog_list_ri h5{ color: #4180AF; font-weight: bold; font-size: 22px; font-family:  "Zen Maru Gothic","微軟正黑體", "Quicksand", sans-serif;}
  .blog_list_ri em{ color: #A8C8EC;  border-bottom: 1px solid #E0E8FF; padding-bottom: 12px; font-size: 16px;}
  .blog_list_ri p{ height: 46px; padding-top: 4px; color: #0f0f0f; font-size: 17px;}
  
  .subbox_item a{
    display: flex;
    flex-direction: column;
  }
  .subbox_item a:after {
    display: none;
  }
  .subbox_item a:before {
    color: #803634;
    bottom: -25px;
    display: none;
  }
  .blog_list_le {
    overflow: hidden;
    border-radius: 36px;
  }
  .subbox_item a img{
    transition: all 0.3s;
    border-radius: 26px;
   
  }
  .subbox_item a:hover img{
    /* transform: scale(1.3);
    transition: all 0.3s; */
    -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  transition: all 1s linear;
border-radius: 30px;
  }


@media screen and (max-width:960px) {
    .subbox_item{ border-bottom: 0px;}
}
  
  /*文章分享變1排4個*/
  .blog_page .main_part {    max-width: 1600px;}
  
  .blog_list_le , .blog_list_ri {    width: 100%;}
  .blog_ri{ min-height: 55vh;}
  .blog_subbox {   display: grid; grid-template-columns:1fr 1fr 1fr 1fr;}
  .subbox_item {    width: 100%  ; padding: 12px; }
  @media screen and (max-width: 1024px) {
    .blog_subbox {  grid-template-columns:1fr 1fr 1fr;}
  }
  @media screen and (max-width: 768px) {
    .blog_subbox {   grid-template-columns:1fr 1fr;}
    h5.blog_le_t, .blog_le .accordion{ display: block!important;}
  }
  @media screen and (max-width: 600px) {.subbox_item {   transform: translateY(0px);}  }
  @media screen and (max-width: 450px) {
    .blog_subbox {   grid-template-columns:1fr;}
  }


  /* 內頁 */
.blog_shareData{ display: none;}
.news_related{ background: transparent; padding: 25px 15px 80px;}
.lastPage{ background: #E3931F; border-radius: 100px; font-size: 17px;}
.news_related_list li a p{ font-size: 16px;}
.news_related_list li a{ background: transparent;  }
.news_related_list li a img{ border-radius: 32px; transition: 0.3s;}
.news_related_list li a:hover img{
    opacity: 0.75;
    transition: 0.5s;
    border-radius: 32px;
}


  /* 內頁 */
  h4.blog_category_title{ color: #355878; font-weight: bold;}
  .blog_back a.article_btn_prev {background: #E27633; border-radius: 100px;}
  .blog_back a.article_btn_back {background: #E3931F; border-radius: 100px;}
  .blog_back a.article_btn_next {background: #E27633; border-radius: 100px;}
  .articel_mainPic img{ border-radius: 60px;}
  .blog_back a { padding: 10px 14px; font-size: 17px;}
  
  @media screen and (max-width:410px) {
    .blog_back{ 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; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




