@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
@charset "utf-8";

/*↓↓↓↓↓↓↓此網站更改↓↓↓↓↓↓↓↓*/
/* = = = = = = = 字型 = = = = = = = =*/
body {
    letter-spacing: 1px;
}


/* 大圖 LOGO 進場 */
.bannerindex::before { 
	content: "";
	display: block;
	background-image: url(https://pic03.eapple.com.tw/04-24363325/prlogo.png);
	width: 250px;
	height: 250px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: fixed;
	top: 27%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	backface-visibility: hidden; /* 隱藏背面避免閃爍 */
	
	animation: banner-logo 3s ease-out forwards, bounce-loop 2.5s ease-in-out 3.2s infinite;
	/* 前 3 秒主進場，之後持續小彈跳 */
	z-index: 50000001;
	opacity: 0;
}

/* 背景遮罩 */
.bannerindex::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 110%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: opacity; /* 優化透明度動畫 */
  animation: banner-bg 1s ease-in-out forwards;
  z-index: 50000000;
}

/* 白色背景淡出 */
@keyframes banner-bg {
  0%   { opacity: 1; }
  70%  { opacity: 0.9; }
  100% { opacity: 0; }
}

/* LOGO 主進場：旋轉+放大淡入 */
@keyframes banner-logo {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6) rotate(-20deg);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
  }
  70% {
    transform: translate(-50%, -50%) scale(0.95) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

/* LOGO 循環小彈跳 */
@keyframes bounce-loop {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  30%      { transform: translate(-50%, -52%) scale(1.05); }
  60%      { transform: translate(-50%, -48%) scale(0.98); }
}



/* = = = = = = = 大圖滿版 = = = = = = = =*/
.swiper-banner .swiper-slide img {
    width: 100%;}

/* = = = = = = = header = = = = = = = =*/
.header_area {
	background: #f8f9f6;
	padding: 0px ;
    position: sticky; 
}
.main_header_area .container {
    max-width: 1600px;}       

/*下滑header */
.header_area.sticky {
    position: fixed;
    background: rgb(240 240 240 / 100%);   /* 底色再深一點 (比純白略灰) */
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 50px;       /* 左下角圓角 50px */
    border-bottom-right-radius: 50px;      /* 右下角圓角 50px */
}

/*logo*/
.nav-header {max-width: 200px; transition: 0.6s;}
.navigation {grid-template-columns: 200px 1fr;}
/* ---------- LOGO 容器 ---------- */
.nav-brand {
    display: block;
    max-width: 100%;
    margin: 0 auto;

    /* 加入淡入動畫 */
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}
.nav-brand img {    padding: 5px 0;   display: block;
    max-width: 100%;

    /* 呼吸效果（輕微縮放） */
    animation: breathe 4s ease-in-out infinite;
    transform-origin: center center;}
.header_area.sticky .nav-header {
    max-width: 165px;
    transition: 0.6s;
}
/* ---------- 關鍵影格：淡入 ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- 關鍵影格：呼吸（縮放） ---------- */
@keyframes breathe {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/*小icon隱藏*/
.tp_links,.me_tp_features  {
    display: none;
}

/*購物車*/
.shop_search_btn {
    background: #013d3b;
}
.box_search input[type=text] {border: solid 1px #f4f1ea;}
.me_tp_features a {color: #fff;}

/*按鈕*/

.stellarnav > ul > li > a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #364125;
    padding: 35px 10px 0;
    height: 75px;
    overflow: hidden;
    transition: color 0.3s ease;
}


.stellarnav > ul > li > a b:nth-child(2) {
    font-size: 13px;
}

.header_area.sticky .stellarnav li.has-sub > a:after {
    border-top: 6px solid #ababab;
}
/* 基礎樣式 */
.stellarnav > ul > li > a:nth-of-type(1)::before {
  content: '';
  background: url(https://pic03.eapple.com.tw/04-24363325/t1.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* 平滑過渡曲線 */
}
.stellarnav > ul > li:nth-of-type(2) > a::before {
   background: url(https://pic03.eapple.com.tw/04-24363325/t2.png) no-repeat center/contain;
}
.stellarnav > ul > li:nth-of-type(3) > a::before {
   background: url(https://pic03.eapple.com.tw/04-24363325/t3.png) no-repeat center/contain;
}
.stellarnav > ul > li:nth-of-type(4) > a::before {
   background: url(https://pic03.eapple.com.tw/04-24363325/t4.png) no-repeat center/contain;
}
.stellarnav > ul > li:nth-of-type(5) > a::before {
   background: url(https://pic03.eapple.com.tw/04-24363325/t5.png) no-repeat center/contain;
}

/* 脈搏跳動動畫 (常駐) */
@keyframes pulse {
  0% { transform: translateX(-50%) scale(1) rotate(0deg); }
  50% { transform: translateX(-50%) scale(1.18) rotate(2deg); }
  100% { transform: translateX(-50%) scale(1) rotate(0deg); }
}
.stellarnav > ul > li > a:nth-of-type(1)::before {
  animation: pulse 3s ease-in-out infinite;
}

/* 懸浮時強化動畫 */
@keyframes hoverSpin {
  0% { transform: translateX(-50%) scale(1.1) rotate(0deg); }
  25% { transform: translateX(-50%) scale(1.15) rotate(8deg); }
  50% { transform: translateX(-50%) scale(1.1) rotate(0deg); }
  75% { transform: translateX(-50%) scale(1.15) rotate(-8deg); }
  100% { transform: translateX(-50%) scale(1.1) rotate(0deg); }
}
.stellarnav > ul > li > a:nth-of-type(1):hover::before {
  animation: hoverSpin 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); /* 金色光暈增強懸浮感 */
}

/* 點擊瞬間效果 */
.stellarnav > ul > li > a:nth-of-type(1):active::before {
  transform: translateX(-50%) scale(0.9);
  filter: brightness(0.9);
  transition: all 0.1s;
}


/*按鈕下拉*/
.stellarnav li a {
	font-size: 14px;
	color: #fff;
}
.stellarnav li li {
	border: none;
    background-color: rgb(146 146 146 / 20%);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    transition: opacity .2s;
}
.stellarnav li li:hover {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.stellarnav ul ul {background: #7dae4b;}
.stellarnav li.has-sub > a:after {
    top: 70% !important;}

@media screen and (max-width: 1440px) {
.nav-header {

	padding-left: 30px;
}
.header_area.sticky .nav-header {
    max-width: 220px;}
}



/*大圖特效*/

#content_main {  margin: 0;}
.bannerindex { position: static; height: auto;}
.swiper-banner { position: static; margin: 0; height: auto;}
.swiper-slide { padding: 0px !important;}

.swiper-slide img { height: auto;}
.swiper-pagination { display: none;}
.swiper-slide { position: relative;}
.bannerindex .swiper-slide.swiper-slide-active:before {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
.bannerindex .swiper-slide.swiper-slide-active:after {content: ""; position: absolute;  z-index: 999; pointer-events: none;}
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0;}
	.header_area { position: unset;}
    }

/* 大圖文字/裝飾圖案 */
.bannerindex .swiper-slide.swiper-slide-active:before {
    content: '';
    position: absolute;
    background: url(https://pic03.eapple.com.tw/04-24363325/text.png) no-repeat left center;
    background-size: contain;
    bottom: 29%;
    right: 9%;
    width: 24% !important;
    height: 60% !important;
    padding-bottom: calc(100% / 1* 0.12);
    opacity: 0; /* 初始透明，避免突兀 */
    animation: lively-in 1.8s cubic-bezier(.25,.46,.45,.94) forwards,
               swing-loop 3s ease-in-out 2s infinite; 
    /* 進場 lively-in 後，延遲 2 秒啟動搖擺循環 */
}

/* --------- 動畫定義 --------- */

/* 進場：從上方掉落+彈跳 */
@keyframes lively-in {
  0% {
    transform: translateY(-60px) scale(0.7);
    opacity: 0;
  }
  60% {
    transform: translateY(0) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* 循環搖擺+閃亮 */
@keyframes swing-loop {
  0%   { transform: rotate(0deg) scale(1); filter: brightness(1); }
  25%  { transform: rotate(3deg) scale(1.05); filter: brightness(1.1); }
  50%  { transform: rotate(-3deg) scale(1.05); filter: brightness(1); }
  75%  { transform: rotate(2deg) scale(1.02); filter: brightness(1.1); }
  100% { transform: rotate(0deg) scale(1); filter: brightness(1); }
}
.bannerindex .swiper-slide.swiper-slide-active:after { 
    content: '';
    position: absolute;
    background: url(https://pic03.eapple.com.tw/04-24363325/dog.png) no-repeat left center;
    background-size: contain;
    bottom: 7%;
    right: 15%;
    width: 80% !important;
    height: 80% !important;
    opacity: 0;
    animation: float-in 1.8s ease-out forwards,
               float-loop 3.5s ease-in-out 2s infinite;
}

/* 浮上來 */
@keyframes float-in {
  0%   { transform: translateY(80px) scale(0.8); opacity: 0; }
  70%  { transform: translateY(-5px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* 慢慢漂浮 */
@keyframes float-loop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

 
/* = = = = = = = footer = = = = = = = =*/
/*footer icon按鈕隱藏*/
.box_link {display: none;}
.footer_menu a:nth-of-type(1) {display: none;}

/*footer*/
.footer {background:#f8f9f6;}
.footer_info li p, .footer_info li p a {color: #000;}
.footer_info li {padding: 0 10px 10px;}
.footer_menu a {
    padding: 5px 10px 5px 0;
    border: 0px #354e51 solid;
    margin: 0 4px 4px 0;
    color: #c9b693;
    background: transparent;
}
.footer_menu a:hover {
    background: transparent;
    color: #c7a47a;
}
.copy {
    color: #fff;
    border-top: 0px #ddd solid;
    background:#dfbd6c;
}
.copy a, .copy a:hover {
    color: #fff;
}

/*footer logo*/
.footer_logo {max-width: 175px; margin-left: 10px;}

/*置頂按鈕*/
#to_top {
	color: #013d3b;
    font-weight: bold;
    background: #f4f1ea;
}
#to_top i:before, #to_top i:after {
	background: #013d3b;
}
#to_top i.top:before, #to_top i.top:after {
	width: 2px;
}

/* = = = = = = = banner = = = = = = = =*/
.path {display: none;}
.banner {
    background: url(https://pic03.eapple.com.tw/04-24363325/banner.jpg) center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: all 8s ease;
}


.banner h5 {
    font-size: 35px;
    color: #547720;
    letter-spacing: 3px;
    padding-top: 0px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: bounce 2s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.banner h5::after {
    color: #fff;
    background: #547720;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
	 font-size: 14px;
    display: block;
    margin-top: 15px;
}



.banner.banF h5::after {
    content: "photo";
    
}


/* = = = = = = = 購物車 = = = = = = = =*/
/*外層*/
.products-list .price b {
    color: #364f52;display:none;}
.products-list .more {
    border: 1px solid #364f52;
    color: #364f52;
}
.products-list .item a:hover .more {
    background:#dfbd6c;}
.product-layer-two li a {
      background:#568267;
    color: #ffffff;
}  
.product-layer-two li a:hover{
      background:#75a341;
  
}    

/*內層*/
.sidebarBtn .sp_price {color: #bf0f0f;}
.sidebarBtn {
    padding: 25px;
    border: 0px #ddd solid;
    background: #fff;
    box-shadow: 0 0 5px #5555553b;
    border-radius: 15px;
}
.inquiry_a3 {
    background: #538266;
}
.inquiry_a1 {
    background: #568267;
}
.inquiry_a2 {
    background: #959189;
}


/*推薦*/
.prod_related {
    background: #F7F7F7;}
.prod_related h6 span:before {
    color: #013d3b;
}
.lastPage {
    color: #fff;
    background:#568267;
    border-radius: 10px;
}

/*購物車-訂購頁*/
.shopping-cart .cart_head {
    background: #005757;}
.shopping-cart .cell.product_name p {color: #555;}
.shopping-cart .cart_content .row {
    border-bottom: 1px solid #027373;
    color: #555;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
    color: #555;
}
.contact_le_map a {background: #77a349;}
.total_amount li {color: #555;}
.rewrite_simple {
    background: #057979 url(../images/simple_left.png) 10% center no-repeat;
}
.send_simple {
    background: #057979 url(../images/simple_right.png) 88% center no-repeat;
}

/*購物車-訂購資料*/
.form label, .formbox_form, .form label.Bigcheck {color: #555;}
.declaration {
    background: #d9d9d9;}
.border200, .total_amount li input[name=DiscountCode] {color: #555;}

/*購物車-訂購完成*/
.animated-arrow {
    background: #538266;
    border-radius: 10px;}
.order_list_tit span {
    color: #057979;
    border-bottom: 1px #057979 solid;
}
.payer {
    background: #013d3b;
}
.order_list_tab td:nth-child(1) {color: #013d3b;}
.order_list_head p {
    color: #555;
    border-bottom: 2px #057979 solid;}
.order_list_pro tr:first-child td {
    color: #555;}
.order_list_pro tr:first-child {
    background: #057979;
}  
.last_box_money p, .last_box_money em {color: #555;}






@media screen and (max-width: 1200px) {


}

@media screen and (max-width: 1100px) { 
/*HEADER按鈕文字*/
    .stellarnav > ul > li > a {
    font-size: 14px;}


}
@media screen and (max-width: 1024px) {
/*header*/
.nav-header, .footer_logo, .header_area.sticky .nav-header {
    max-width: 200px;}
.me_tp_features {margin: 0;}   



}
@media screen and (max-width: 768px) { 
/*banner*/
.banner {
    height: 300px;
}


/*HEADER寬度*/
.main_header_area .container {
    max-width: 100%;
}
/*header*/
.header_area {padding: 10px;}
.me_tp_features {display: none;}
.header_area {
        padding: 10px;
        padding-bottom: 0;
    }    
/*漢堡按鈕*/

.header_area.sticky .menu-toggle span.bars span {background: #585858;}
.header_area.sticky .menu-toggle:after {color: #585858;}
/*手機底部*/
#bottom_menu {display:none;background: #f4f1ea;}
#bottom_menu li a {color: #013c3a;}
/*側邊選單*/
.stellarnav.mobile ul {background: #364f52;}
.stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu {background: #364f52;}
.stellarnav .icon-close:before, .stellarnav .icon-close:after {border-bottom: solid 2px #f4f1ea;}
.stellarnav a {color: #f4f1ea;}
.stellarnav.mobile > ul > li {border-bottom: 1px #4a696d solid;}
.stellarnav > ul > li > a {color: #f4f1ea;}
.stellarnav > ul > li > a:hover {
    color: #f4f1ea;
    font-weight: 500;}
.stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul {border-right: 0px #eee solid;}
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {border-bottom: solid 2px #7ba9af;}
.stellarnav.mobile li.open {
    background: #538266;}
.stellarnav.mobile li a {
    border-bottom: 0px solid rgba(255, 255, 255, .15);
} 

.stellarnav li li {
    background-color: rgb(146 146 146 / 0%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
} 
.header_area.sticky {backdrop-filter: none;} 
.header_area.sticky .stellarnav > ul > li > a {
    color: #f4f1ea;
}
.header_area.sticky .stellarnav li a {
    color: #fff;
}

/*首頁文館*/
.module_i_news li {border-bottom: 0px #eee solid;}

}

@media screen and (max-width: 600px) {
/*    表單*/
.contact_form li .form__label {background: rgb(84 121 111 / 7%);}

}

@media screen and (max-width: 500px) {

 }



/*↑↑↑↑↑↑↑↑此網站更改結束↑↑↑↑↑↑↑↑*/




/* 商品下拉超過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 #content,.product_page #content{ background: url(https://pic03.eapple.com.tw/04-24363325/bg.jpg) center top;
    background-repeat: no-repeat;
    background-size: cover;
 }
.pd_tabTitle li {
    display: none;}
/* .product_info_page .main_part { max-width:1200px;} */
.pd_tabTitle li.activeTab a {display: none;}
.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%;}
.prod_tabs {
    margin-top: 25px;
}
.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;background: #ad907a;}
.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;}
.products-list .pic {aspect-ratio: 3.5 / 5;}
.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}
.products-list .pic img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20% 20% 10px 10px; /* 蘑菇形狀 */
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.i_prod_tit span, .i_video_tit span  {
    font-size: 40px;font-weight: 800;
    color: #86583F;
	
}
.products-list .pic:hover img {
    transform: scale(1.15);
    border-radius: 30% 30% 10px 10px;
    box-shadow: 0 10px 25px rgba(239, 71, 111, 0.4);
}
.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;grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
.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;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
/*#bottom_menu {display: block; }*/
.footer.with_shopping_mode {
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
    body {font-weight: 600;}
    .module_i_news .title_i_box h4, .i_blog_ri h5,  {font-weight: 600;}
    .total_amount li b {
    font-weight: 600;
}
}



.info_fix_links {
    display: flex !important;}
.info_fix>span {display:none;}
.info_fix_links a.info_fix_fb {
    background: #315fb0d8;
}
.info_fix_links a.info_fix_line {
    background: #599d4ad8;
}
.info_fix_links a.info_fix_tel {
    background: #d39e4cd8;
}
.info_fix_links a.info_fix_mail {
    background: #53771f;
}
.info_fix_links a:hover {
    background: #865842;
}	
.info_fix_links a {
      background: rgb(226 90 98);}

.product_info li span {
    display: none;
}