﻿@charset "UTF-8";

/**
   識別色：
   主色 #6F8C31 
   輔色 #369936
   紅色 #ea0000
**/

@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(https://fonts.googleapis.com/css?family=Barlow+Condensed|Days+One);
/*for數字*/
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400'); 
* {
  box-sizing: border-box;
  font-family: Microsoft JhengHei, Arial, Helvetica, sans-serif;
}
body { overflow-x: hidden; }
a, a:hover, a:focus, a:visited, a:active { text-decoration: none; }
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #999;
  opacity: 1; /* Firefox */
  font-size:14px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #999;
}
.float_left { float: left; }
.float_right { float: right; }
.on { display:block; }
.off { display:none; }
hr { margin-bottom:10px; margin-top:10px; }
/**
 **上方狀態列
 **/
header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, .25);
  height: 60px;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index:9;
}
/**
 **狀態列左邊選單
 **/
span.mobile_mode .icon-menu {
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 5px 15px 5px 0;
  display: block;
  /*手機選單*/
}
.logo img {
  height: 33px;
}
.logo {
  display: inline;
}
.logo img {
  float: left;
  margin: 10px 0;
}
.logo.mobile_mode {
  display: inline;
}
.logo.mobile_mode a {
  z-index: 999;
}
.logo.mobile_mode img {
  margin-left: calc( ( 100% - 302px )/2 );
  margin-top: 10px;
  z-index: 999;
}
.search, .currency {
  display: inline-flex;
  margin: 12px 10px 0 20px;
  vertical-align: text-top;
}
.currency {
  margin: 12px 10px 0 0;
}
.searchInput {
  padding: 5px 10px;
  border-radius: 4px 0 0 4px;
  border: none;
  color: #444;
  max-width: 160px;
  height: 35px;
  float: left;
  background: #f3f3f3;
}
input.searchInput:focus {
  outline: 0;
  border-color: #fff;
  background: #fff;
  color: #333;
}
.searchButton {
  width: 35px;
  border: 1px solid #f3f3f3;
  background: #6F8C31;
  text-align: center;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 18px;
  position: relative;
}
.searchButton:hover {
  background: #369936;
}
.searchButton i {
  color: #fff;
  font-weight: 600;
  position: absolute;
  right: 7px;
  bottom: 7px;
}
.currency {
  height: 35px;
}
.currency label {
  color: #666;
  font-weight: 400;
  padding: 7px;
}
.currency select {
  border-radius: 4px;
  color: #444;
  border: 1px solid #999;
  padding: 6px;
}
/**
 **狀態列右邊選單
 **/
ul.top {
  top: 0;
  margin: 0;
}
ul.top li {
  display: inline-block;
  padding: 10px 0;
  letter-spacing: 1px;
  float: left;
}
ul.top li a {
  color: #666;
  padding: 10px;
  display: inline-flex;
  vertical-align: middle;
}
ul.top li:hover {
  background-color: #6F8C31;
}
ul.top li:hover a {
  color: #fff;
}
ul.top li a i.icon {
  font-size: 24px;
  height: 20px;
  position: relative;
  z-index: -1;
}
ul.top li:hover a i.icon {
  color: #fff;
  z-index: 0;
}
ul.top li a i.icon span {
  position: absolute;
  background-color: #ea0000;
  border: 1px solid #ea0000;
  color: #fff;
  left: 16px;
  bottom: 8px;
  padding: 3px 6px;
}
/**
 **登入
 **/
.login.off {
  display: none;
}
.login a {
  border: 1px solid #6F8C31;
  border-radius: 4px;
  box-shadow:none;
  color: #6F8C31;
  font-weight:normal;
  letter-spacing: 2px;
  padding-left:12px;
  padding-right: 12px;
  margin: 13px;
}
.login a:hover,
.login a:focus,
.login a:active {
  color: #fff;
  background-color: #6F8C31;
  transition: all .5s;
}
/**
 **會員下拉選單
 **/
.dropdown.user button {
  border:none;
  background: none;
  padding: 15px 10px;
}
.dropdown.user button i {
  color:#666;
  font-size:26px;
}
.dropdown.user button:focus i,
.dropdown.user ul.dropdown-menu > li:hover > a {
  color: #6F8C31;
}
.dropdown.user ul.dropdown-menu {
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  min-width: 125px;
  padding:0;
  top: 58px;
}
.dropdown.user ul.dropdown-menu > li > a {
  padding:12px 20px;
  text-align: center;
}
/*購物車*/
.shopping-cart {
  padding: 15px 10px;
}
.shopping-cart a > i {
  position: relative;
  color: #666;
  font-size:24px;
}
.shopping-cart a > i span {
  position: absolute;
  background-color: #ea0000;
  border: 1px solid #ea0000;
  color: #fff;
  left: 16px;
  bottom: 8px;
  padding: 3px 6px;
}
.shopping-cart a:focus > i {
  color: #6F8C31;

}
/**
 **側選單
 **/
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index:9; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #fff;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 50px; /* Place content 60px from the top */
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.2);
  /*transition: .1s;*/
}
.sidenav a {
  padding: 8px 10px 8px 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  color: #888;
  display: block;
  letter-spacing: 1px;
}
.sidenav a:hover {
  background-color: #eee;
  color: #333;
}
.sidenav a i {
  color: #369936;
  display: inline-block;
  font-size: 24px;
  margin-right: 10px;
  width: 40px;
  text-align: center;
}
.sidenav a:nth-child(2) {
  text-align: center;
  width: 85%;
}
.sidenav a:nth-child(2) i {
  font-size: 44px;
  padding: 5px 0;
  width: 100%;
  display: block;
}
.sidenav a:hover:nth-child(1),
.sidenav a:hover:nth-child(2) {
  background-color: #fff;
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
/**
 **Overlay
 **/
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  cursor: pointer;
}
/**
 **手機板搜尋
 **/
.search-box.mobile_mode {
  margin-top: 60px;
  height: 65px;
  width: 100%;
  background-color: rgba(0, 0, 0, .05);
  display: block;
  padding: 12px;
}
input.form-search {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  color: #555;
  font-size:16px;
  letter-spacing: .5px;
  padding: 7px 15px;
  float: left;
  width: calc( 100% - 90px );
}
button.btn-search {
  float: right;
  width: 80px;  
  background: #6F8C31;
  border-radius: 4px;
  border: none;
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
  letter-spacing: 2px;
}
button.btn-search:hover {
  background: #369936;
}
button.btn-search i {
  margin-right: 5px;
  font-weight: bold;
  font-size: 16px;
}
main {
  margin:0;
}
/**
 **Slider
 **/
.slider {
  position: relative;
  height: 150px;
  margin: 0 auto;
  width:100%;
}
.slider .slides {
  background-color: #9e9e9e;
  margin: 0;
  height:150px;
}
.slider .slides li {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: inherit;
  overflow:hidden;
}
    .slider .slides li img {
        height: 100%;
        width: 100%;
        background-size: 100% 100%;        
        background-position: center;
    }
.slider .slides li.active {
  z-index:2
}
.slider .indicators {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: 0;
  z-index: 8;
}
.slider .indicators .indicator-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: rgba(0, 0, 0, .35);
  -webkit-transition: background-color .3s;
  -moz-transition: background-color .3s;
  -o-transition: background-color .3s;
  -ms-transition: background-color .3s;
  transition: background-color .3s;
  border-radius:50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.slider .indicators .indicator-item.active {
  background-color:#6F8C31;
}
.slider.fullscreen {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
}
.slider.fullscreen ul.slides {
  height:100%;
}
.slider.fullscreen ul.indicators {
  z-index: 2;
  bottom:30px;
}
/**
 **商品分類
 **/
.sort{
  height:40px;
}
.sort a i {
  margin:0 5px 0 0;

}
.sort a i:hover,
.sort a i:focus {
  color: #669966;
}
#sort-menu {
  position: fixed;
  background-color: #fff;
  border-radius:10px;
  box-shadow:5px 5px 10px rgba(0, 0, 0, .5);
  padding: 20px;
  padding-right: 5px;
  left:5%;
  top:12%;
  z-index:9;
  width:90%;
}
#sort-menu .modal-header {
  border-bottom: none;
}
#sort-menu button {
  border:none;
  background-color: transparent;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size:2em;
}
#sort-menu ul {
  max-height: 400px;
  overflow: auto;
}
#sort-menu ul li p {
  color: #6F8C31;
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}
#sort-menu ul li a {
    color: #6F8C31;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}
#sort-menu ul > li {
  margin-bottom:20px;
}
#sort-menu ul ul li {
  clear: both;
}
#sort-menu ul ul > a {
  color:#333;
  display: inline-block;
  font-size: 1.1em;
  font-weight: 300;
  letter-spacing: .5px;
  width:calc( 50% - 5px);
  margin:3px 0;
}
#sort-menu button:hover,
#sort-menu ul ul > a:hover li {
  color: #369936;
}
/**
 **快捷Menu
 **/
.nav_group {
  border-bottom:1px solid #ddd;
  letter-spacing: .25px;
  padding:5px 0;
  margin-bottom: 20px;
}
.pgwMenuCustom { background: #fff; height: 40px; position: relative; list-style: none;margin-left: 5px; }
.pgwMenuCustom ul { list-style: none; white-space: nowrap; margin: 0; padding:0; }
.pgwMenuCustom .pm-links.mobile, .pgwMenuCustom .pm-viewMore>ul { 
    background:#fff; 
    position:absolute; left:0; top:52px; z-index:1; 
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .25);
    border: 1px solid #eee;
    border-top: none;
    height:200px; overflow:auto;
    overflow-x: hidden;
  }
.pgwMenuCustom .pm-links.mobile { top: 46px; }
.pgwMenuCustom .pm-links.mobile li, .pgwMenuCustom .pm-viewMore>ul>li { display: block; clear: both; width: 175px }
.pgwMenuCustom .pm-links.mobile li:hover, .pgwMenuCustom .pm-viewMore>ul>li:hover { background-color: rgba(54, 155, 54, .05); }
.pgwMenuCustom li { float: left; padding:8px 0; }
.pgwMenuCustom a { display: block; color: #333; line-height:35px; padding: 0 20px; text-decoration: none; border-radius:5px; }
.pgwMenuCustom a.selected, .pgwMenuCustom a:hover.selected { background: #6F8C31; color:#fff;}
.pgwMenuCustom li a:hover { color: #369936; text-decoration: none }
.pgwMenuCustom .pm-dropDown, .pgwMenuCustom .pm-viewMore, .pgwMenuCustom .pm-viewMore>ul { display:none; margin-top: 5px; }
.pgwMenuCustom .pm-viewMore>ul { margin-top:0; }
.pgwMenuCustom .pm-dropDown a, .pgwMenuCustom .pm-dropDown a.active { display: inline-block; background:#6F8C31; color:#fff; }
.pgwMenuCustom .pm-viewMore a.active { color:#369936; }
.pgwMenuCustom .pm-dropDown span.icon, .pgwMenuCustom .pm-dropDown span.black { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOvgAADr4B6kKxwAAAABZ0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMDvo9WkAAABpSURBVEhL7ZPLCcAwDEM9jefI/ks1Hyj2QbiGSLcKHggl8sEktjTc/WGyZxo6YKAbrFzFoav3/hdhmsrlijBN5XJFmKZyuSJMU7lcsfV/kIN0FRJgyACGDGDIAIYMpK8CHt6iG6xZhY0JIJ+6AHGbUFsAAAAASUVORK5CYII=) no-repeat; display: block; height: 22px; width: 22px; margin: 9px 5px }
.pgwMenuCustom .pm-dropDown span.white { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwQAADsEBuJFr7QAAABZ0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMDvo9WkAAABKSURBVEhL7ZOxDQAwCMN6O4/T0tmjsxHJDB4yROJ0dz3s1BRHEi2OTREBpQFKA5QGKA3m7IP8RKeIgNIApQFKA5QGc/ZBfkJTdF0oUafLBAFNbAAAAABJRU5ErkJggg==) no-repeat; display: block; height: 22px; width: 22px; margin: 9px 5px }
.pgwMenuCustom .pm-viewMore { display: none; position:absolute; right:0; padding:3px 0 8px 0; }
.pgwMenuCustom .pm-viewMore>a { display: inline-block }
.pgwMenuCustom .pm-viewMore>ul { left: auto; right:-10px; }
.pgwMenuCustom .pm-viewMore li { float: none }
.pgwMenuCustom .pm-viewMore span.icon, .pgwMenuCustom .pm-viewMore a > span.white { border-color: #333 transparent; border-style: solid; border-width: 8px 6px 0; margin-left: 3px; display: inline-block }
.pgwMenuCustom .pm-viewMore a.active > span.icon { border-color: #369936 transparent; }
.pgwMenuCustom .pm-viewMore span.black { border-color: #000 transparent; border-style: solid; border-width: 8px 6px 0; margin-left: 3px; display: inline-block }
/**
.nav_group ul.nav.nav-pills li,
.nav_group ul.nav.nav-pills li a {
  background-color: #fff;
  font-weight: 300;
}
.nav_group ul.nav.nav-pills li a {
  color:#666;
  border-radius: 0;
  letter-spacing: .5px;
}
.nav_group ul.nav.nav-pills li:hover a {
  background-color: #fff;
  color: #6F8C31;
}
.nav_group ul.nav.nav-pills li.active a { 
  background-color: rgba(54, 155, 54, .05);
  color:#369936; 
}
**/
/**
 **首頁商品
 **/
.product_group {
  width: 100%;
}
ul.product_item {
  width: 100%;
  float: left;
  margin-bottom:0;
}
ul.product_item li {
  display: inline-block;
  margin:0 5px 15px 5px;
  text-align: left;
  vertical-align: top;
  width: calc( 50% - 12px );
  float: left;
}
    ul.product_item li > a {
        display: block;
        width: 100%;
        height: 0px;
        padding-bottom: 100%;
        position: relative;
    }

    ul.product_item li img {
        width: 100%;
        height: 100%;
        position: absolute;
        /*圖片裁剪居中*/
        object-fit: cover;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        border: 1px solid #ccc;
        /*border-bottom: none;*/
    }
ul.product_item li img:hover,
ul.store_item li img:hover  {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
ul.product_item .product_info {
  border: 1px solid #ccc;
  border-top: none;
  min-height: 210px;
  padding: 10px;
  position: relative;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
ul.product_item .product_info p {
  margin: 0;
  letter-spacing: .5px;
}
.product_info p.name {
  color: #333;
  font-size: 1.25em;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product_info p.price {
  color: #444;
  font-size: 1.2em;
  font-weight: 200;
}

.product_info p.price:nth-child(2) {
  font-size: 1em;
}
.product_info p.price2 {
  color: #666;
  font-size: 0.9em;
  font-weight: 200;
}
.add_group {
  margin-top: 10px;
  vertical-align: middle;
  width: 100%;
  position: absolute;
  bottom: 55px;
}
.add_group a:nth-child(2) {
  border: 1px solid #6F8C31;
  color: #6F8C31;
  padding: 8px 6px;
  font-size: 16px;
  letter-spacing: .5px;
  text-align: center;
  border-radius: 4px;
  float: left;
  vertical-align: middle;
  width: 58%;
}
.add_group a:nth-child(2) i {
  display: inline-block;
  font-size: 18px;
  margin: 0 5px 0 0;
}
.add_group a:nth-child(2):hover {
  border: 1px solid #369936;
  background-color: #369936;
  color: #fff;
}
.add_group a:nth-child(3) {
  background-color: transparent;
  display: inline-block;
  float: right;
  width: calc( 42% - 10px );
}
.add_group a i.icon-heart,
.add_group a i.icon-heart-black {
  color: #ea0000;
  display: block;
  font-size: 1.8em;
  margin-top: 8px;
  opacity: .7;
}
.add_group a i.icon-heart-black {
  color: #ea0000;
  opacity: 1;
}
.add_group a span:nth-child(3) { 
  display:none; 
}
.product_info .brand {
  border-top: 1px solid #ccc;
  width: calc( 100% - 20px );
  bottom: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 4px;
  padding-right: 4px;
  position: absolute;
  text-align: center;
}
/**
 **首頁主題商店
 **/
.shop-sort {
  float: left;
  width: 100%;
}
.shop-sort ul {
  margin-bottom: 0;
}
.shop-sort ul li {
  display: inline-block;
  padding:5px; 
  width: 100%; 
}
.shop-sort ul li img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  /*圖片裁剪居中*/ 
  object-fit:cover;
}
/**
 **首頁商店
 **/
ul.store_item {
  margin-bottom: 0;
  width:100%;/* 22/07/11 商店搜尋跑版*/
}
ul.store_item li {
  display: inline-block;
  margin:0 5px 15px 5px; 
  vertical-align: top;
  width: calc( 50% - 12px ); 
  float: left;
}
ul.store_item .name {
  position: relative;
  height: 55px;
  color: #666;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border: 1px solid #ccc;
  border-bottom: none;
}
ul.store_item .name img {
  border:0;
  width: 40px;
  height: 40px;
  /*圖片裁剪居中*/ 
  object-fit:cover;
  position: absolute;
  left: 8px;
  top: 8px;
}
ul.store_item .name img + p { 
  font-size: 17px;
  margin: 18px 0 0 55px;
}
    ul.store_item li img {
        width: 100%;
        /*圖片裁剪居中*/
        object-fit: cover;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        border: 1px solid #ccc;
        height: 135px;
    }
ul.store_item li img  {
  border-radius: 0 0 6px 6px;
}
/**
 **配送地區
 **/
.delivery_area {
  float: left;
  width: 100%;
  float: left;
}
.delivery_area li {
  border: 1px solid #ccc;
  border-radius: 35px;
  height: 70px;
  display: inline-block;
  width: 47%;
  margin: 10px 2px 1px 2px;
}
.delivery_area li img {
  height: 58px;
  width: 58px;
  /*圖片裁剪居中*/ 
  margin: 5px;
  margin-right:8px;
  border-radius: 50%;
  object-fit:cover;
  float: left;
}
.delivery_area li p {
  font-size: 1em;
  color: #333;
  line-height: 70px;
}
.delivery_area li p span {
  display: none;
}
/**
 **看更多
 **/
.more { 
  float: left;
  width:100%; 
  padding-bottom:20px;
}
.more a {
  color: #666;
  font-size: 1em; 
  float: right;
  margin-right: 25px;
  font-weight: bold;
}
.more span.icon {
  border-color: #333 transparent;
  border-style: solid;
  border-width: 8px 6px 0;
  margin-left: 3px;
  display: inline-block;
}
.more a:hover {
  color: #669966;
}
.more a:hover span.icon {
  border-color: #669966 transparent;
}
/**
 **商品or商店標題
 **/
h3 {
  padding: 50px 0 0 0;
  width: 100%;
  float: left;
  text-align: center;
  font-weight: bold;
  color: #333;
}
/**
 **商店街→城市
 **/
.city_list {
  margin: 15px 0;
}
.city_item li {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  width: calc( 50% - 4px);
}
.city_item li .city_name {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  width: calc( 100% - 10px);
  left: 4px;
  height: 30px;
}
.city_item li:hover .city_name {
  background: rgba(0, 0, 0, 0.6);
}
.city_item li .city_name span {
  color: #fff;
  position: absolute;
  left: 10px;
  bottom: 5px;
}
.city_item li img {
  height: calc( 100% - 10px);
  width: calc( 100% - 10px);
  /*圖片裁剪居中*/ 
  object-fit:cover;
  float: left;
  margin: 0 4px;
}
/**
 **商店街→主打商店
 **/

 .store_item{
   display: inline-block;
 }
.store_list ul.store_item li {
  margin: 0 8px 30px 8px;
  width: calc( 100% - 10px );
}
.store_list ul.store_item li img {
  border:none;
  border-radius: 6px;
  height: 160px;
  /*圖片裁剪居中*/ 
  object-fit:cover;
}
.store_list ul.store_item .name {
  border: none;
  display: block;
  height: 40px;
  width: 100%;
}
.store_list ul.store_item .name img {
  border:0;
  width: 30px;
  height: 30px;
  /*圖片裁剪居中*/ 
  object-fit:cover;
  float: left;
  position: absolute;
  left: 5px;
  top: 5px;
}
.store_list ul.store_item li img:hover {
  filter: alpha(opacity=100);
  opacity:1; 
}
.store_list ul.store_item .name img + p {
  float: left;
  margin: 10px 0 0 42px;
}
.store_list .store_item a.btn {
  letter-spacing: 3px;
  width:100%;
}
/**
 **HOT熱搜
 **/
.keyWords {
  width: 100vw; 
  height:112px; 
  margin: 10px 0; 
  overflow:hidden;
}
.keyWords h2 {
  z-index:1;
  width:50px; 
  height: 112px; 
  float:left; 
  font:13px/18px Helvetica, sans-serif; 
  background:transparent no-repeat scroll left top; 
  background-size: auto 100%; 
  margin: 0; 
  padding: 0 5px 0 0; 
  position: relative;
}
.keyWords .shadow { 
  box-shadow: 10px 85px 12px #FFFFFF, 2px 15px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 50px;
  height: 112px;
}
    .keyWords .category {
        /*
  width: calc(100% - 50px); 
  */
        /*max-width: 1610px;*/
        margin-right: 16px;
        height: 112px;
        box-sizing: border-box;
        margin-left: 55px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 12px 10px 0;
    }
.keyWords .category ul {
  width: 1600px;
  margin: 0; 
  overflow: hidden; 
  padding: 0; 
  box-sizing: border-box;
}
.keyWords .category ul li {
  height: 34px; 
  background: #f2f2f2; 
  border: 1px solid #e1e1e1; 
  border-radius: 17px; 
  box-sizing: border-box; 
  cursor: pointer; 
  float: left; 
  font: 15px/30px Helvetica, sans-serif; 
  margin: 1px 10px 6px 0; 
  padding: 2px 16px; 
}
.keyWords .category ul li a {
  display: block; 
  height:34px;
  color: #666; 
}

/**
 **商品內頁
 **/
.product {
  position: relative;
}
.detail,
.content {
  width: 100%;
  display: inline-block;
}
/**
 **產品圖瀏覽
 **/
.detail .product_photo {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  float: left;
}
#featured{
  width: 100%;
  height: 290px;
  object-fit: cover;
  cursor: pointer;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: .5em;
}
#featured img { 
  border-radius: .5em;
}
.thumbnail{
  object-fit: cover;
  max-height: 80px;
  cursor: pointer;
  opacity: 0.4;
  margin: 5px;
  border: 1px solid #ccc;
}
.thumbnail:hover,
.active {
  opacity: 1;
}
#slide-wrapper{
  width: 100%;
  display: flex;
  min-height: 100px;
  padding: 0 8px;
  align-items: center;
}
#slider{
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
}
#slider::-webkit-scrollbar {
  width: 8px;
}
#slider::-webkit-scrollbar-track {
-webkit-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
#slider::-webkit-scrollbar-thumb {
  background-color: #dede2e;
  outline: 1px solid slategrey;
  border-radius: 100px;
}
#slider::-webkit-scrollbar-thumb:hover{
    background-color: #18b5ce;
}
.arrow {
  width: 27px;
  height: 27px;
  cursor: pointer;
  transition: .3s;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 15px;
  text-align: center;
}
.arrow:hover{
  background-color: rgba(0, 0, 0, .5);
}
.arrow i {
  font-size: 14px;
  color: #fff;
  margin: 8px 0 0 0;
  display: block;
}
#slideLeft {
  margin-right: 10px;
}
#slideRight {
  margin-left: 10px;
}
/**
 **產品右方資訊
 **/
.detail .product_info {
  position: relative;
  float: left;
  margin: 20px 0;
}
.detail .product_info p {
  margin: 0;
  letter-spacing: .5px;
}
.detail p.name {
  color: #333;
  font-size: 1.5em;
  letter-spacing: .5px;
  min-height: 52px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
   -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.detail p.product_mark {
  margin: 10px 0;
  height: 59px;
  overflow-y: hidden;
}
.detail p.product_mark span {
  border: 1px solid #ea0000;
  color: #ea0000;
  padding:0 5px;
  margin:3px 2px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: inline-block;
}
.detail p.market_price:before {
  content: "市價："
} 
.detail p.market_price,
.detail p.sell_price,
.detail p.arrival,
.detail p.share {
  color: #444;
  font-size: 1.2em;
  font-weight: 200;
  margin: 10px 0;
}
.detail p.sell_price:before {
  content: "售價：";
  color: #444;
}
.detail p.sell_price {
  color: #ea0000;
}
.detail p.share:before {
  content: "分享至：";
  font-size: 0.8em;
}
p.market_price small,
p.sell_price small {
  margin-left: 10px;
}
.detail p.share button.btn-fb,
.detail p.share button.btn-line,
.detail p.share button.btn-copy {
  color: #f3f3f3;
  letter-spacing: .5px;
  opacity: .7;
}
.detail p.share button.btn-fb {
  background-color: #3b5998;
}
.detail p.share button.btn-line {
  background-color: #00c300;
}
.detail p.share button.btn-copy {
  background-color: #777;
}
.detail p.share button:hover.btn-fb,
.detail p.share button:hover.btn-line,
.detail p.share button:hover.btn-copy {
  color: #fff;
  opacity: 1;
}
.detail .add_group {
  margin-top: 20px;
  position: relative;
}
/**
 **商品下拉選數量
 **/
.custom-select {
  position: relative;
}
.custom-select:after {
  color: #666;
  font-size: 18px;
  font-family: 'icomoon' !important;
  content: "\e904";
  padding: 0.5em;
  pointer-events: none;
  position: absolute;
  right: 5px;
  vertical-align: middle;
}
.custom-select select {
  color: #666;
  cursor: pointer;
  border: 2px solid #6F8C31;
  border-radius: 4px;
  font-size: 1.4em;
  width: 100%;
  padding: 6px 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/**
 **商品立即購買、加入購物車、收藏
 **/
.detail .add_group a:nth-child(2),
.detail .add_group a:nth-child(3),
.detail .add_group a:nth-child(4) {
  border: 2px solid #6F8C31;
  color: #6F8C31;
  padding: 8px 20px;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 4px;
  margin-top: 8px;
  float: left;
  vertical-align: middle;
  width: 100%;
}
.detail .add_group a:nth-child(2) {
  color: #fff;
  background-color: #6F8C31;
}
.detail .add_group a:nth-child(2):hover,
.detail .add_group a:nth-child(3):hover {
  color: #fff;
  border: 2px solid #369936;
  background-color: #369936;
}
.detail .add_group a:nth-child(3) i,
.detail .add_group a:nth-child(4) i {
  display: inline-block;
  font-size: 18px;
  margin: 0 10px 0 0;
}
.detail .add_group a i.icon-heart {
  color: #ea0000;
  opacity: .7;
}
.detail .add_group a:hover i.icon-heart,
.detail .add_group a i.icon-heart-black {
  opacity: 1;
}
/**
 **商品詳細文字介紹
 **/
.product.content {
  color: #333;
  text-align:justify;
  letter-spacing: .5px;
  line-height: 1.6em;
}
.product.content .red-word {
  color: #ea0000;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.25em;
  margin-bottom: 15px;
  border-left: 4px solid #ea0000;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product.content p {
  font-size: 1.2em;
  margin:5px 0 15px 0;
}
.product.content img {
  width: 100%;
}
/**
 **商品規格表格
 **/
.specification {
  font-size: 18px;
  color: #444;
  margin-top:30px;
}
.rwd-table {
  width: 100%;
  color: #666;
  overflow: hidden;
  letter-spacing: 1px;
}
.rwd-table th, .rwd-table td {
  text-align: left;
  margin: 5px;
}
.rwd-table th {
  display: none;
  background-color: #eee;
}
.rwd-table td {
  display: block;
}
.rwd-table th, .rwd-table td:before {
  color: #369936;
}
.rwd-table td:before {
  content: attr(data-th) "：";
  font-weight: bold;
  width: 7em;
  display: inline-block;
  letter-spacing: 1.5px;
  background-color: #eee;
  padding: 6px 10px;
  margin-right: 10px;
  text-align: right;
}
/**
 **商店精選商品
 **/
h1.storename {
  margin-top: 10px;
}
h1.storename img {
  width: 40px;
  /*圖片裁剪居中*/ 
  object-fit:cover;
}
h1.storename p {
  color: #444;
  display: inline-block;
  font-size:.8em;
  margin: 0;
}
.store_product {
  display: block;
}
.store_product h3 {
  display: inline-block;
  margin:40px 0 10px 0;
  letter-spacing: 1px;
  font-weight:normal;
  font-size: 1.75em;
  text-align: center;
  width: 100%;
}
ul.store_product_item.featured,
ul.store_product_item.favorite,
ul.store_product_item.coupons {
  width:100%; 
  float: left;
}
ul.store_product_item.featured img,
ul.store_product_item.favorite img,
ul.store_product_item.coupons img {
  border: 0;
  float: right;
  margin: 0 0 0 15px;
  height: 100px;
  width: 100px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-left:none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
ul.store_product_item.featured img:hover,
ul.store_product_item.favorite img:hover,
ul.store_product_item.coupons img:hover {
  opacity: .7;
}
ul.store_product_item.featured .product_info {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  min-height: 100px;
}
ul.store_product_item.featured .product_info p,
ul.store_product_item.favorite .product_info p,
ul.store_product_item.coupons .product_info p {
  margin: 0;
  letter-spacing: .5px;
}
ul.store_product_item.featured .product_info p.name,
ul.store_product_item.favorite .product_info p.name,
ul.store_product_item.coupons .product_info p.name {
  min-height: 25px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
ul.store_product_item.featured .product_info p.remark,
ul.store_product_item.favorite .product_info p.remark,
ul.store_product_item.coupons .product_info p.remark {
  color:#999;
  font-size: 1em;
  font-weight: 200;
}
ul.store_product_item.featured .product_info p.price,
ul.store_product_item.favorite .product_info p.price,
ul.store_product_item.coupons .product_info p.price {
  color:#ea0000
}
/**
 **購物車
 **/
h1.title {
  height: 45px;
  font-size: 1.75em;
  margin:0 auto 30px auto;
  padding: 30px 0 0 15px;
  color: #444;
}
.cart-item {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.cart-item.checkbox-all {
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  padding:10px 0;
  width: 100%;
}
.cart-item.checkbox-all span {
  color: #666;
  font-size:18px;
  vertical-align: top;
  line-height: 42px;
}
.float_left i:before {
  display: inline-block;
  margin-top: 9px;
}
.store-title,
.cart-content {
  border: 1px solid #ccc;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #fff;
  padding:10px 0;
}
.cart-item i,
.store-title i,
.cart-content li i {
  color: #999;
  cursor: pointer;
  font-size: 1.75em;
  margin:0 15px;
}
.store-title .store-name {
  color: #666;
  display: inline-block;
  font-size: 18px;
}
.store-title .store-name img,
.cart-content li img {
  width: 40px;
  height: 40px;
  margin-right: 6px;
  object-fit: cover;
} 
.cart-content {
  border-radius: 0 0 6px 6px;
  border-top: none;
  padding: 0;
  width: 100%;
  float: left;
}
.cart-content li {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  float: left;
  width: 100%;
}
.cart-content li:nth-last-child(1) {
  border-bottom: none;
}
.cart-content li i {
  float: left;
  margin-top: 30px;
}
.cart-content li img {
  float: left;
  width: 80px;
  height: 90px;
}
.cart-content .product-info {
  display: inline-block;
  width: 50%;
}
.cart-content .product-info span.name,
.cart-content .product-info span.intro {
  color: #333;
  font-size: 1.25em;
  font-weight: 400;
  letter-spacing: .5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
   -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 5px;
  text-align: justify;
}
.cart-content .product-info span.intro {
  color: #999;
  font-size: 1em;
  float: left;
  width: 100%;
}
.price-group {
  font-size: 1.2em;
  padding:10px 0 0 55px;
  width: 100%;
}
.price-group.float_right {
  float: none;
}
.price-group span.price {
  color: rgba(0,0,0,.4);
  text-decoration: line-through;
}
.price-group span.price2 {
  margin-left: 10px;
}
.price-group span.price2,
.price-group span.price3 {
  color: #ea0000;
}
.price-group span.price3 small {
  color: #666;
  font-size: 14px;
  margin-right: 5px;
}
.price-group span.price3 small:after {
  content: "："
}
.cart-content .count {
  display: inline-flex;
  margin:10px 0 0 55px;
  width: 100%;
}
.cart-content .count button {
  border: 1px solid #ccc;
  display: inline-block;
  height: 32px;
  width: 32px;
}
.cart-content .count input {
  color: #333;
  display: inline-block;
  padding: 3px;
  height: 32px;
  width: 50px;
  font-size: 16px;
  font-weight: 400;
  float: left;
  text-align: center;
  cursor: text;
  border-radius: 0;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
}
.cart-content .count button i {
  color: #333;
  margin: 0;
  padding: 5px;
  font-size: 14px;
  width: 32px;
}
.cart-item p.total {
  width: 190px;
  float: left;
  height: 30px;
  padding: 10px 0;
}
.cart-item p.total span {
  color: #ea0000;
  line-height: 20px;
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 5px;
}
.cart-item.checkbox-all a.btn-checkout {
  background-color: #6F8C31;
  border: 1px solid #6F8C31;
  letter-spacing: 3px;
  font-size: 16px;
  color: #fff;
  padding: 8px 30px;
  border-radius: 2px;
  margin-right: 20px;
}
.cart-item.checkbox-all a:hover.btn-checkout {
  background-color:#369936;
  border:1px solid #369936;
}
.cart-item.checkbox-all:nth-last-child(1){
  margin-bottom: 80px;
}
.cart-item.checkbox-all .float_right {
  margin-left: 15px;
}
/**
 **訂單
 **/
ul.order_nav {
  margin:0 auto;
  width:100%;
}
ul.order_nav li a {
  background-color: #fff;
  color:#999;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
}
ul.order_nav li.active a span {
  background-color: #6F8C31;
  border-radius: 2px;
  display: block;
  height: 4px;
  margin-top: 4px;
}
ul.order_nav li.active a {
  font-weight: bold;
}
ul.order_nav li.active a,
ul.order_nav li.active a:hover,
ul.order_nav li:hover,
ul.order_nav li.active a:focus {
  background-color: #fff;
  color:#6F8C31;
  letter-spacing: 1px;
}  
ul.order_nav li:hover a  {
  color:#444;
}
ul.order_nav li:hover a {
  background-color: #fff;
}
ul.order_nav + .tab-content {
  margin-top: 15px;
}
.tab-content .order_group {
  margin:0;
  width:100%;
}
.order_group .order_item {
  margin-bottom:30px;
  border: 1px solid #ccc;
  border-radius: 6px;
  position: relative;
  width:100%;
  display:inline-block;
  padding-bottom: 50px;
}
.order_group .order_item a img {
  height:250px;
  width:100%;
  /*圖片裁剪居中*/ 
  object-fit:cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin: 0;
}
.order_group .order_item .empty {
  background-color: #f3f3f3;
  height: 200px;
  text-align: center;
}
.order_group .order_item .empty div {
  margin:0 auto;
  padding-top: 85px;
}
.order_group .order_item .empty div i {
  color:#999;
  font-size:2em;
}
.order_item .order_info {
  margin:15px;
}
.order_info .order_data h3 {
  font-size: 1.5em;
  margin: 15px 0 0 0;
}
.order_info .order_data p {
  color:#666;
  margin: 8px 0;
  font-weight: 200;
  font-size: 1.1em;
  line-height: 1.15em;
  letter-spacing: .5px;
}
.order_info .order_data p.numbering {
  color: #999;
}
.order_info .order_data p.numbering:before {
  content: "訂單編號：";
}
.order_info .order_data p.name {
  color: #333;
  font-weight: 400;
  line-height: 1.4em;
}
.order_info .order_price p,
.order_info .order_price a  {
  color:#ea0000;
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  margin: 0;
  width: 100%;
}
.order_info .order_price p span {
  color:#ea0000;
  margin-left: 3px;
  font-weight: bold;
}
.order_info .order_price a {
  font-size: 1em;
}
.order_info .order_price a.link {
  cursor: pointer;
  color: #6F8C31;
  letter-spacing: .5px;
  margin:5px 0;
}
.order_info .order_price a:hover.link {
  color: #369936;
}
.order_info .order_status span {
  color:#999;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: .5px;
} 
.order_info .btn_group {
  margin:15px 0 10px 0;
  text-align: center;
  width:100%;
  position: absolute;
  bottom: 0px;
}
.order_info .btn_group a {
  display: inline-block;
  background-color: #6F8C31;
  border-radius: 4px;
  color:#fff;
  font-size: 1.1em;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 2px auto;
  text-align: center;
  padding:8px 16px;
}
.order_info .btn_group a:hover {
  background-color:#369936;
  font-weight: 400;
}
.order_info .btn_group a.cancel {
  background-color: #fff;
  border:1px solid #ccc;
  color:#666;
}
.order_info .order_status a.cancel:hover {
  background-color: #f3f3f3;
}

.order_info .virtualATMinfo {
  width: 300px;
  color: #900;
}
.order_info .virtualATMinfo >*{
  padding-top:5px
}

/**
 **結帳
 **/
.step_group {
  margin-bottom: 20px;
}
.step_group a.btn.send {
  display: none;
  letter-spacing: 5px;
  margin:-10px 0 15px 0;
  width: calc( 50% - 5px );
}
.step_item {
  border:1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom:20px;
  position: relative;
}
.step_item:first-child {
  margin-top: 0;
}
.step_item h4 {
  border-bottom:1px solid #ddd;
  font-weight: 200;
  letter-spacing: 1px;
  margin:0;
  padding:12px 20px;
}
.step_item h4 .thesame {
  display: inline-block;
  margin-left:15px;
}
/*03/30 修改結算頁同訂購人checkbox與文字的對齊*/
.step_item h4 .thesame i {
  font-size: 1.3em;
  vertical-align: text-bottom;
}
.step_content {
  display: block;
  padding:20px;
}
.step_content .custom-select select {
  border: 1px solid #ccc;
  background: #fff;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 6px 12px;
}
.step_content .custom-select label {
  display: none;
}
.step_content .custom-select:after {
  padding-top: .3em;
}
.step_content p {
  font-weight: 100;
  font-size: 1.1em;
  letter-spacing: .5px;
  margin:0 0 10px 0;
}
.step_content p.small {
  font-size: .8em;
  margin:0 0 5px 0;
  font-weight: 300;
}
.store_list .store_item a.btn,
.step_group a.btn.send,
.step_item .float_right a.btn,
.step_content a.btn,
.step_content .discount a.btn,
.step_content .shopping-money a.btn,
.service-form form a.btn,
form.member button.btn {
  background-color: #6F8C31;
  border: 1px solid #6F8C31;
  letter-spacing: 1px;
  color: #fff;
  padding: 8px 30px;
  border-radius: 2px;
  margin-right: 5px;
}
.store_list .store_item a:hover.btn,
.step_group a:hover.btn.send,
.step_item .float_right a:hover.btn,
.step_content a:hover.btn,
.step_content .discount a:hover.btn,
.step_content .shopping-money a:hover.btn,
.service-form form a:hover.btn,
form.member button:hover.btn {
  background-color:#369936;
  border:1px solid #369936;
}
.step_item .float_right a.btn {
  position: absolute;
  right: 0;
  top: 5px;
  padding: 6px 30px;
}
.step_content .discount,
.step_content .shopping-money {
  position: relative;
  width: 100%;
  display: inline-block;
}
.step_content .discount input {
  width: 75%;
  margin-top: 0;
}
.step_content .shopping-money input {
  width: 75%;
  margin: 10px 0;
  float: left;
}
.step_content .discount a.btn,
.step_content .shopping-money a.btn,
.step_content .save-addressee a.btn {
  width: calc( 25% - 5px);
  padding: 9px 17px;
  margin: 0;
  height: 42px;
  float: right;
}
.step_content .shopping-money a.btn {
  margin:10px 0 0 5px;
}
.step_content .information_group {
  display: inline-block;
  width:100%;
}
.step_content .information {
  display: block;
}
.step_content .information label {
  margin-right: 20px;
}
.step_content form input,
.step_content .information.info input,
.step_content .information.info select,
.step_content .custom-select select {
  border:1px solid #ccc;
  border-radius: 2px;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-weight: 200;
  padding:10px;
  width:100%;
}
.step_content .custom-select select {
  margin-bottom: initial;
}
.step_content .custom-select select,
.step_content .custom-select select option:first-child,
.step_content .information.info select,
.step_content .information.info select option:first-child {
  color: #999;
  font-size: 14px;
}
.step_content .custom-select:after,
.step_content .information.info .custom-select:after {
  top: 5px;
}
.step_content form input {
  margin-top: 10px;
}
.step_content .save-addressee .custom-select {
  width: 64%;
  float: left;
}
.step_content .save-addressee a.btn {
  width: calc( 36% - 5px);
  padding: 9px 4px;
  letter-spacing: 0;
}
ul.pay_otpion a {
  display: block;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  width:100%;
}
ul.pay_otpion a li {
  border-radius: 2px;
  margin:5px 0;
  padding:8px 12px;
}
ul.pay_otpion a:hover li {
  background-color: #f6f6f6;
}
ul.pay_otpion a li.active,
ul.pay_otpion a:hover li.active {
  border:1px solid #eee;
}
ul.pay_otpion li img {
  height: 18px;
  margin-right:5px;
}
/*手機版置底送出訂單*/
a .shopping-cart.mobile_mode {
  background: #6F8C31;
  border-radius: 0;
  cursor: pointer;
  position: fixed;
  bottom:0;
  left:0px;
  border-top:1px solid #fff;
  padding: 15px;
  letter-spacing: 1px;
  text-align: center;
  z-index: 1;
  width: 50vw;
}
a .shopping-cart.mobile_mode.right {
  left: 50vw
  
}
a .shopping-cart.mobile_mode:hover {
  background-color:#369936;
  cursor: pointer;
}
.order_content {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 5px rgba(0,0,0,.15);
  margin-bottom: 30px;
}
.order_content .order_item a.web_mode { 
  display:none; 
}
.order_content .order_item {
  padding:20px;
}
.order_content .order_item.middle {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.order_item h3 {
    color: #444;
    margin: 0;
    font-weight: 400;
    padding: 0px;
    float: unset;
}
}
.order_item a.order {
  background-color:#6F8C31;
  color:#fff;
  font-size: 1.2em;
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 10px;
  text-align: center;
  padding:10px;
}
.order_item a:hover.order {
  background-color:#369936;
}
.order_item.middle .food_group:nth-child(1), 
.order_item.middle .food_group {
  border-bottom: 1px solid #eee;
  min-height: 60px;
  padding: 20px 0;
  float:left;
  width:100%;
}
.order_item.middle .food_group:nth-child(1) {
  padding-top:0;
}
.order_item.middle .food_group a.link {
  color:#369936;
  float:initial;
  font-family: "Noto Sans TC", 微軟正黑體, "Microsoft JhengHei";
  padding:5px 0 0 0;
  padding-left: calc(15% + 20px);
  width: calc(85% - 20px);
}
.order_item.middle .food_group a:hover.link {
  color: #ae0000;
}
/** IE10 & IE11 **/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .order_item.middle .food_group a.link { padding-left:0; }
}
.order_item.middle .select_group {
  display: inline-block;
  margin:0;  
  vertical-align: top;  
  width: 15%;
}
.order_item.middle .select_group select {
  border:1px solid #ccc;
  color:#6F8C31;
  letter-spacing: 0;
  padding:5px;
}
/** IE10 & IE11 **/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .order_item.middle .select_group select { background-position-x:0px; }
}
.order_item.middle {
  max-height: 350px;
  overflow-y: auto;
}
.order_item.middle a {
  color:#666;
  display: inline-block;
  vertical-align: top;  
  float:right;
  font-weight: 200;
  width: calc(85% - 20px);
}
.order_item.middle a .food_name {
  display: inline-block;
  line-height: 1.25em;
  width: 70%;
}
.order_item.middle a .food_name small {
  color:#bbb;
  display: block;
  margin-top:5px;
}
.order_item.middle a .food_price {
  display: inline-block;
  font-weight: normal;
  font-family: 'Lato', sans-serif;
  text-align: right;
  vertical-align: top;  
  width: calc(30% - 8px);
}
.order_item.middle a .food_price span {
  margin-left:2px;
}
.order_item textarea {
  border:1px solid #ccc;
  border-radius: 2px;
  min-height: 100px;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-weight: 200;
  resize: none;
  padding:10px;
  width:100%;
}
.order_item .cost_item {
  color:#444;
  display: block;
  font-weight: 400;
  margin:5px 0;
}
.order_item .cost_item span.highlight,
.order_item .cost_item .cost.highlight,
.order_item .cost_item .cost i,
.order_item .cost_item .cost.highlight span {
  color:#369936;
}
.order_item .cost_item .cost {
  letter-spacing: .5px;
  float:right;
  font-family: 'Lato', sans-serif;
}
.order_item .cost_item .cost span {
  margin-left:2px;
}
.order_item .cost_item.total {
  margin-top: 20px;
}
/**
 **收藏頁上方表現
 **/
header.favorite {
  border-top: none;
  height: auto;
  position: relative;
  margin-bottom: 50px;
  z-index: 0;
 }
header.favorite .data {
  background-color: #fff;
  box-shadow: 1px 1px 15px rgba(0,0,0,.35);
  border-radius:4px;
  display: block;
  margin: 0 40px;
  padding: 20px;
  width: calc(100% - 80px);
  position: absolute;
  top: 165px;
  text-align: center;
  z-index: 3;
}
header.favorite .membrer_name {
  display: block;
  width:100%;
}
header.favorite .data img {
  border-radius: 50%;
  max-width: 80px;
  height: 80px;
}
header.favorite .data span {
  font-weight: 300;
  font-size: 1.5em;
  display: inline-block;
  line-height: 2em;
 }
header.favorite .data a {
  display: inline-block;
  padding: 0 0 2px 5px;
}
header.favorite .data a i {
  font-size: 1.75em;
  color: #ccc;
}
header.favorite .data a:hover i {
  color: #6F8C31;
}
header.favorite img {
  object-fit:cover;
  height: 300px;
  width: 100%;
}
/**
 **收藏頁的Tab
 **/
ul.favorite_nav {
  margin:15px auto;
  width:100%;
}
ul.favorite_nav li {
}
ul.favorite_nav li a {
  background-color: #fff;
  color:#999;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
}
ul.favorite_nav li.active a span {
  background-color: #6F8C31;
  border-radius: 2px;
  display: block;
  height: 4px;
  margin-top: 4px;
}
ul.favorite_nav li.active a {
  font-weight: bold;
}
ul.favorite_nav li.active a,
ul.favorite_nav li.active a:hover,
ul.favorite_nav li:hover,
ul.favorite_nav li.active a:focus {
  background-color: #fff;
  color:#6F8C31;
  letter-spacing: 1px;
}  
ul.favorite_nav li:hover a  {
  color:#444;
}
ul.favorite_nav li:hover a {
  background-color: #fff;
}
ul.favorite_nav + .tab-content {
  margin-top: 15px;
}
ul.favorite .price-group {
  font-size: 1.2em;
  padding:10px 0 0 0;
  width: 100%;
}
/**
 **收藏頁→我的收藏
 **/
ul.store_product_item.favorite li {
  margin-bottom:15px;
}
ul.store_product_item.favorite .product_info {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  min-height: 142px;
  position: relative;
}
ul.store_product_item.favorite img {
  height:153px;
  /*
  width:initial;
  */
}
ul.store_product_item.favorite .product_info p.name,
ul.store_product_item.coupons .product_info p.name {
  margin-bottom: 5px;
}
ul.store_product_item.favorite .product_info p.remark,
ul.store_product_item.coupons .product_info p.remark {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 40px;
}
ul.store_product_item.favorite .price-group {
  margin:0;
}
ul.store_product_item.favorite .price-group p.price,
ul.store_product_item.favorite .price-group p.price2,
ul.store_product_item.favorite .price-group p.price3 {
  display: inline-block;
}
ul.store_product_item.favorite .price-group p.price {
  color: #ea0000;
}
ul.store_product_item.favorite .price-group p.price2 {
  margin-left: 10px;
  color: rgba(0,0,0,.4);
  text-decoration: line-through;
}
ul.store_product_item.favorite .price-group p.price3 {
  color: #999;
  font-size: .75em;
  font-weight: 200;
  letter-spacing: .5px;
}
/**
 **收藏頁→折價券
 **/
ul.store_product_item.coupons li {
  margin-bottom:15px;
}
ul.store_product_item.coupons .product_info {
    padding: 10px 10px 0px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    min-height: 148px;
    position: relative;
}
ul.store_product_item.coupons img {
  height:148px;
  float: left;
  border-radius: 6px 0 0 6px;
  margin:0 10px 0 0;
}
ul.store_product_item.coupons .product_info p.time {
  color: #999;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: .5px;
  margin: 3px 0 0 0;
}
ul.store_product_item.coupons .product_info p.time:before {
  content: "使用期限：";
}
ul.store_product_item.coupons .coupon-price {
  color: #ea0000;
  font-size: 1.75em;
  font-weight: bold;
  bottom: 8px;
  right: 15px;
  position: absolute;
}
/**
 **提示訊息
 **/
.order_box .modal-header {
  border-bottom:none;
}
.modal.prompt_box .modal-body h2,
.modal.checkout_box .modal-body h2,
.modal.order_box .modal-body h2 {
  font-weight: normal;
  margin:0;
}
.modal.prompt_box .modal-body p {
  color:#666;
  font-size: 1.2em;
  letter-spacing: 1px;
}
.modal.prompt_box .modal-body p span {
  color:#666;
  letter-spacing: 1px;
}
.modal.prompt_box .modal-body,
.modal.prompt_box .modal-footer {
  padding:30px;
} 
.modal.prompt_box .modal-footer button,
.modal.checkout_box .modal-footer button,
.modal.order_box .modal-footer button {
  border:1px solid #ddd;
  padding: 10px;
  width: 49%;
  letter-spacing: 1px;
  font-weight: 300;
}
.modal.order_box .modal-footer button {
  width: 100%;
}
.modal.prompt_box .modal-footer button:hover,
.modal.checkout_box .modal-footer button:hover,
.modal.order_box .modal-footer button:hover {
  background-color: #f9f9f9;
}
.modal.prompt_box .modal-footer button.active,
.modal.checkout_box .modal-footer button.active,
.modal.order_box .modal-footer button.active {
  background-color: #6F8C31;
  box-shadow: none;
  border-color: #6F8C31;
  color: #fff;
}
.modal.prompt_box .modal-footer button.active:hover,
.modal.checkout_box .modal-footer button.active:hover,
.modal.order_box .modal-footer button.active:hover {
  background-color:#369936;
  border:1px solid #369936;
}
.modal.checkout_box .modal-body,
.modal.order_box .modal-body {
  border-top: none;
  padding:30px;
}
.modal.order_box .modal-footer {
  border-top: none;
}
/**
 **彈跳訂單明細
 **/
.modal.order_box .modal-dialog {
  margin-top:30px;
}
.modal.order_box .modal-body {
  max-height: 400px;
  padding-top:0;
  overflow-x: auto;
}
.modal.order_box .modal-body h3 {
  margin:0 0 8px 0;
}
.modal.order_box .modal-body p {
  color: #999;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  letter-spacing: .5px;
  margin:0;
}
.modal.order_box .modal-body p.numbering:before {
  content: "訂單編號：";
}
.modal.order_box .modal-body p.numbering {
  color: #999;
}
.modal.order_box .modal-body .producrt_group {
  float:left;
  max-height: 240px;
  overflow-x: hidden;
  margin:20px 0;
  width:100%;
}
.modal.order_box .modal-body .producrt_item {
  float:left;
  margin:8px 0;
  width:100%;
}
.modal.order_box .modal-body .producrt_item .number {
  display: inline-block;
  float:left;
}
.modal.order_box .modal-body .producrt_item .number span {
  color: #666;
  background-color: #fff;
  border: 1px solid #ddd;
  display: block;
  font-family: 'Lato', sans-serif;
  text-align: center;
  width: 20px;
}
.modal.order_box .modal-body .producrt_item .name {
  float:left;
  margin: 0 10px;
  text-align: left;
  width: calc( 100% - 130px );
}
.modal.order_box .modal-body .producrt_item .amount {
  font-family: 'Lato', sans-serif;
  float:left;
  text-align: center;
  width: 30px;
}
.modal.order_box .modal-body .producrt_item .price {
  color: #ae0000;
  font-family: 'Lato', sans-serif;
  float:right;
  text-align: right;
  width: 60px;
}
.modal.order_box .modal-body .producrt_item ul.remarks {
  margin: 5px 0 0 0;
  float: left;
  width: 100%;
}
.modal.order_box .modal-body .producrt_item .add_product .name {
  color: #999;
}
ul.remarks li {
  color: #666;
  float: left;
  margin: 2px 0;
  width: 100%;
}
.remarks li .float_left,
.remarks li .float_right {
  display: block;
}
.modal.order_box .modal-body .cost_group { 
  border-top: 1px solid #ccc;
  margin: 10px 0 0 0;
  padding-top: 20px;
  width: 100%;
  float: left;
}
.cost_group .remarks li .float_left {
  color: #369936;
}
.cost_group .remarks li img {
  width: 100%;
}
/**
 **點餐彈跳
 **/
.order_modal .modal-dialog {
  margin:0;
  /*
  height: 100vh;
  */
}
.order_modal .modal-content {
  border-radius: 0;
}
.order_modal .modal-header {
  border-bottom: 0;
  padding:0;
 }
.order_modal .modal-header .close,
.modal.order_box .modal-header .close {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #fff;
  border-radius: 50%;
  padding: 8px 12px;
  opacity: .5;
  z-index: 9;
}
.order_modal .modal-title {
  margin:0 -15px;
  height: 250px;
}
.order_modal .modal-title img {
  /*圖片裁剪居中*/ 
  height: 250px;
  object-fit:cover;
  width: 100%;
}
.order_modal .modal-body {
  padding:0;
  height: calc( 100vh - 85px);
  overflow: hidden;
  overflow-y: auto;
}
/** IE10 & IE11 **/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
 .order_modal .modal-body { height:auto; }
}
.order_modal .modal-body .product_photo.on,
.order_modal .modal-body .product_info.on {
  padding-right:15px;
  padding-left:15px;
}
.order_modal .modal-body p.name {
  font-size: 2em;
  line-height: 1.2em;
  margin: 10px 0 5px 0;
}
.order_modal .modal-body p.food_price {
  color:#666;
  margin:3px 0 0 0;
  font-size: 1.2em;
  font-family: 'Lato', sans-serif;
}
.order_modal .modal-body p.market_price:before {
  content: "市價："
} 
.order_modal .modal-body p.market_price,
.order_modal .modal-body p.sell_price  {
  color: #444;
  font-size: 1.2em;
  font-weight: 200;
  margin: 10px 0;
}
.order_modal .modal-body p.sell_price:before {
  content: "售價：";
  color: #444;
}
.order_modal .modal-body p.sell_price {
  color: #ea0000;
}
.order_modal .modal-body p.market_price small,
.order_modal .modal-body p.sell_price small {
  margin-left: 10px;
}
.order_modal .modal-body .memo {
  margin:20px 0;
}
.order_modal .modal-body .memo h4 {
  background-color: rgba(54, 155, 54, .1);
  color:#369936;
  letter-spacing: 1px;
  font-weight: 300;
  font-size:14px;
  padding:8px 15px;
  width: 100%;
}
.order_modal .modal-body .memo .select {
  margin: 0 0 0 20px;
}
.order_modal .modal-body .memo .select .control {
  display: block;
}
.order_modal .modal-body .memo .select .control span {
  color:#999;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  margin-left: 10px;
}
/*
**選數量
**/
.order_modal .modal-body .input_number_group {
  margin: 0 0 10px 0;
  text-align: center;
  width: 100%;
}
.input_number_group a.btn {
  border:none;
  background-color:transparent;
  box-shadow: none;
  font-size:2.5em;
  line-height: 1.5em;
  padding:5px 0;
  vertical-align: top;
}
.input_number_group a.btn:active { 
  background-color:transparent;
}
.input_number_group a.btn i,
ul.choose li a:hover i {
  color:#6F8C31;
}
.input_number_group a:active.btn i,
.input_number_group a:hover.btn i {
  color:#369936;
}
.input_number_group input {
  background-color:transparent;
  border:none;
  color:#333;
  font-size:2.75em;
  max-width: 80px;
  text-align: center;
}
/*
**彈跳視窗footer
**/
.order_modal .modal-footer button {
  background: #6F8C31;
  border: none;
  font-size: 1.2em;
  font-family: "Noto Sans TC", 微軟正黑體, "Microsoft JhengHei";
  letter-spacing: 1px;
  padding: 10px;
  width: 100%;
}
.order_modal .modal-footer button:hover {
  background-color:#369936;
}
.order_modal .modal-footer button .btn-add,
.order_modal .modal-footer button .btn-add span,
.order_modal .modal-footer button .btn-price {
  color: #fff;
  font-family: 'Lato', sans-serif;
}
.order_modal .modal-footer button .btn-price {
  display:inline-block;
  margin-left: 15px;
}
/*.order_modal .modal-footer button .btn-price:before {
  content: "( ";
}
.order_modal .modal-footer button .btn-price:after {
  content: " )";
}*/
.order_modal .modal-footer button:disabled {
  color:rgba(255,255,255,.6);
}
/*
**radio
**/
.control {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight:normal;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control_bg {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.control .control_bg {
  border-radius: 50%;
}
.control:hover input ~ .control_bg,
.control input:focus ~ .control_bg {
  background: #ccc;
}
.control input:checked ~ .control_bg {
  background: #666
}
.control:hover input:not([disabled]):checked ~ .control_bg,
.control input:checked:focus ~ .control_bg {
  background: #666;
}
.control input:disabled ~ .control_bg {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control_bg:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control_bg:after {
  display: block;
}
.control .control_bg:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control input:disabled ~ .control_bg:after {
  background: #7b7b7b;
}
label.control.radio + input.input_data,
label.control.checkbox + input.input_data{
  color:#666;
  border:1px solid #ccc;
  margin: -10px 0 0 25px;
  width: calc(100% - 25px);
}
.control.checkbox {
  transition:width 6s;        
  -webkit-transition:width 6s; /* Safari */  
}
.control.checkbox .control_bg {
  border-radius: 0;
}
.control.checkbox .control_bg:after {
  width: 7px;
  height: 13px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  border-radius: 0;
  background: transparent;
  position: absolute;
  top: 1px;
}
/*
**登入的彈跳視窗
**/
.login_modal .modal-dialog {
  margin: 30px 20px 0 20px;
}
.login_modal .modal-header {
  border: none;
  padding-bottom: 0;
}
.login_modal .modal-header .close {
  background-color: #333;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  padding: 3px 8px 6px 8px;
  margin: 0;
  opacity: .5;
  display: block;
}
.login_modal .login-box {
  margin: 0 auto 30px auto;
  width: 80%;
}
.login-box {
  color: #666;
  font-size: 1.2em;
  text-align: center;
  width:100%;
}
.login-box img {
  height: 120px;
  margin: 0 auto 20px auto;
}
.login-box p {
  color: #369936;
  font-size: 1.2em;
  letter-spacing: 1px;
  margin: 10px 0 20px 0;
}
.login-box select {
  font-size: 15px;
  padding: 6px 12px;
  margin-bottom: 10px;
  border:1px solid #ccc;
  color: #999;
}
.login-box input {
  border:1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  color: #666;
  margin-bottom: 10px;
  width:100%;
}
.login-box button.btn {
  background-color: #6F8C31;
  color: #fff;
  font-size: 1em;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width:100%;
}
.login-box button:hover,
.login-box button:active,
.login-box button:focus {
  background-color: #369936;
}
.login-box span {
  font-size: 11px;
  color: #bbb;
  display: block;
}
.login-box form {
  width:100%
}
.login-box .forgot,
.login-box .verification {
  position: relative;
}
.login-box .forgot .btn,
.login-box .verification p {
  color: #ea0000;
  background: transparent;
  font-size: .75em;
  position: absolute;
  right: 3px;
  top: 4px;
  padding: 5px 10px;
  width: 80px;
}
.login-box .forgot .btn:hover {
  background-color: #369936;
  color: #fff;
}
.login-box .verification p {
  letter-spacing: 0.5;
  right: 0;
  top: 0;
  padding: 0;
  width: 125px;
}
/**
 **常見問題&購物需知
 **/
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-tabs{
  border-bottom:1px solid #ddd;
}
.nav-tabs>li{
  float:left;
  margin-bottom:-1px;
  margin-right: 3px;
}
.nav-tabs>li>a{
  margin-right:3px;
  border-radius:6px 6px 0 0;
  border:1px solid #fff;
  border-bottom: 1px solid #ddd;
  background:#f3f3f3;
  color:#999;
  letter-spacing: 2px;
}
.nav-tabs>li>a:hover{
  color:#fff;
  background:#6F8C31;
}
.nav-tabs>li.active a:focus,
.nav-tabs>li.active a:visited {
  color: #369936;
  font-weight:bold;
}
.nav-tabs>li.active>.nav-tab,
.nav-tabs>li.active>.nav-tab:hover,
.nav-tabs>li.active>.nav-tab:focus{
  color:#555;
  cursor:default;
  background:#fff;
  border-top:1px solid #ddd;
  border-left:1px solid #ddd;
}
.tab-content.qa,
.tab-content.know {
  text-align:left;
  padding:15px 12px;
  background:#fff;
  border-left:1px solid #DDDDDD;
  border-right:1px solid #DDDDDD;
  border-bottom:1px solid #DDDDDD;
}
.tab-content.qa>.active,
.tab-content.know>.active {
  display:block;
}
.tab-content.qa>.tab-pane,
.tab-content.know>.tab-pane {
  display: none;
}
.tab-content.qa>.active,
.tab-content.know>.active {
  display: block;
}
.panelborder-1,
.panelborder-2 {
  border: 1px solid #ddd;
  }
.panel-1,
.panel-2 {
  margin-top: 5px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
.panel-1-heading,
.panel-2-heading {
  display: block;
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
  border-bottom: 0;
  padding: 6px 15px;
  float: left;
  width:100%;
}
.panel-1-heading > .panel-1-title,
.panel-2-heading > .panel-2-title {
  margin: 0;
  padding: 0;
  text-align: left;
  height: auto;
}
.panel-1-heading > .panel-1-title a,
.panel-2-heading > .panel-2-title a {
  display:block;
  color: #333;
  font-size: .75em;
  font-weight: 400;
  letter-spacing: .25px;
  line-height: 1.5em;
}
.panel-1-heading > .panel-1-title > a.accordion-toggle-1,
.panel-2-heading > .panel-2-title > a.accordion-toggle-2 {
  display:block;
  cursor:pointer;
} 
.panel-1-heading > .panel-1-title a span, 
.panel-2-heading > .panel-2-title a span {
  color: #6F8C31;
  font-weight: bold;
  margin-right: 8px;
}
.collapse-1,
.collapse-2 {
  display: none;
}
.collapse-1.in,
.collapse-2.in {
  display: block;
}
.panel-1-body,
.panel-2-body {
  padding:15px 20px;
  text-align: left;
}
.panel-1-body ul,
.panel-2-body ul {
  margin: 0;
}
.panel-1-body img,
.panel-2-body img {
  width: 100%;
}
/*
**連絡客服
**/
.service-form {
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 50px;
}
.service-form form input,
.service-form form textarea {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
}
.service-form form textarea {
  height: 180px;
  resize: none;
}
.service-form form a.btn {
  letter-spacing: 3px;
  width: 100%;
}
/*
**帳戶設定member.html
**/
form.member {
  margin-bottom: 50px;
  padding-top: 20px;
  width: 100%;
}
form.member h3 {
  color: #666;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 1.5em;
  text-align: center;
  margin: 0;
}
form.member input {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  color: #555;
  font-size:16px;
  letter-spacing: .5px;
  padding: 7px 15px;
  width: 100%;
  margin: 5px 0;
}
form.member input:nth-child(2) {
  float: left;
  width: calc( 100% - 145px );
}
form.member .sex {
  margin: 0 0 0 15px;
  display: inline-block;
  width: 120px;
  padding: 11px 0px;
}
form.member .control {
  margin: 0;
}
form.member button.btn {
  letter-spacing: 10px;
  width: 100%;
}
form.member button:hover.btn {
  color: #fff;
}
/*
**服務條款與穩私權政策
**/
.service-content section {
  margin: 30px 0;
}
.service-content h5 {
  color: #999;
  font-weight: 400;
  letter-spacing: .5px;
}
.service-content h3 {
  padding: 2px 0 5px 0;
  font-weight: 400;
  font-size: 1.4em;
  letter-spacing: .5px;
  line-height: 1.2em;
  color: #369936;
  display: inline-flex;
  margin: 0px 0 15px 0;
}
.service-content h3 span {
  background-color: #6F8C31;
  border-radius: 4px;
  margin: 0 8px 0 0;
  width: 6px;
  display: inline-block;
}
.service-content p {
  text-align: justify;
}
/**
 **最新消息
 **/
.news_group {
  margin-bottom: 30px;
  width: 100%;
}
.news_group li.news_item {
  color: #444;
  display: inline-block;
  margin: 0 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  vertical-align: top;
  width: 100%;
}
.news_group li.news_item img {
  border:0;
  width: 40%;
  /*圖片裁剪居中*/ 
  object-fit:cover;
  float: left;
  margin: 0 10px 0 0;
}
.news_group li.news_item:hover img  {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
.news_group li.news_item .news_info {
  border-top: none;
  padding: 5px;
  position: relative;
  width: calc( 60% - 10px );
  display: inline-block;
}
li.news_item .news_info .title {
  font-size: 1.2em;
  color: #555;
  overflow: hidden;
  text-align: justify;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 6px;
  font-weight: bold;
}
.news_group .date,
li.news_item .news_info .date {
  color: #6F8C31;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
/*
li.news_item .news_info .favorite {
  background-color: #f3f3f3;
  color: #369936;
  font-weight: bold;
  padding: 6px 10px 4px 10px;
  margin: 5px 0;
  letter-spacing: .5px;
}
li.news_item .news_info .favorite i {
  color: #ea0000;
  margin-right: 3px;
}
*/
li.news_item .news_info .intro {
    color: #999;
    font-size: .9em;
    letter-spacing: 1px;
    line-height: 1.5em;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.news_group h4.title {
  font-weight:400;
  letter-spacing: .5px;
  line-height: 1.3em;
  margin-bottom: 10px;
}
.news_group img.news_img {
  width: 100%;
}
/*
**Footer
**/
.footer {
  margin-top: 20px;
}
.footer .info, .footer .about, .footer .service, .footer .fb-page { 
  display: inline-block;
  margin-bottom: 30px;
  width: 100%; 
}
.footer .info { text-align:center; }
.footer .info img { max-width:60%; margin:15px auto 10px auto; }
.footer .info ul { margin:0 50px; }
.footer .info li { 
  float:left; 
  margin:5px 0; 
  text-align:center; 
  width:33.33%; 
}
.footer .info li a i { font-size:36px; }
.footer .about p, .footer .service p {
  color: #92673D;
  border-bottom: 1px solid #92673D;
  padding-bottom: 2px;
}
.footer .about p span, .footer .service p span {
  color: #aaa;
  font-size: 12px;
  letter-spacing: 1px;
  margin-left:10px;
}
.footer .about li, .footer .service li,
.footer .about li a, .footer .service li a {
  color: #666;
  padding: 4px 0;
  letter-spacing: .5px;
}
.footer .about li i {
  color: #999;
  width: 50px;
  margin-right: 10px;
  text-align:center;
  font-size: 16px;
  vertical-align: middle; 
}
.footer .about li:hover, .footer .service li:hover { background-color: #f9f9f9; }
.footer .about li:hover a, .footer .service li:hover a { color: #333; }
iframe { max-width:100%; max-height:640px !important; }
footer {
  background-color: #6F8C31;
  letter-spacing: .5px;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
}
footer p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin: 0;
}
.gotop,
.checkout {
  background-color: #6F8C31;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  display: none;
  font-size: 2em;
  opacity: 1;
  padding: 5px 10px 0 10px;
  position: fixed;
  right: 0;
  bottom: 98px;
  text-decoration: none;
  z-index: 5;
  width: 52px;
  text-align: center;
  color:#fff;
  border: 1.5px solid #fff;
  box-shadow: 0px 0px 5px rgba(0,0,0,.25);
}
.checkout {
  display: inherit;
  bottom: 15px;
  font-size: 14px;
  padding: 12px 10px 15px 10px;
}
.gotop:hover,
.checkout:hover {
  background-color: #369936;
  color:#fff;
}
.gotop:focus,
.gotop:active,
.gotop:visited,
.checkout:focus,
.checkout:active,
.checkout:visited {
  text-decoration: none;
  color:#fff;
}
.checkout i {
  font-size: 1.8em;
  margin-top:4px;
  display: block;
}

.d-inline-block {
    display: inline-block
}

.w100 {
    width:100%
}


@media (min-width: 768px) {
    .pdr-sm-0 {
       padding-right:0px
    }


}


/* 彈跳訂單明細---------> */

.modal.order_box .modal-body h2 {
  margin-bottom: 8px;
}

.modal.order_box .modal-body p {
  color: #999;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  letter-spacing: .5px;
  margin: 0;
}

  .modal.order_box .modal-body p span {
      color: #999;
  }

.modal.order_box .modal-body .order_group {
  float: left;
  max-height: 240px;
  overflow-x: hidden;
  margin: 20px 0;
  width: 100%;
}

.modal.order_box .modal-body .food_group {
  float: left;
  margin: 8px 0;
  width: 100%;
}

  .modal.order_box .modal-body .food_group .food_number {
      display: inline-block;
      float: left;
  }

      .modal.order_box .modal-body .food_group .food_number span {
          color: #666;
          background-color: #fff;
          border: 1px solid #ddd;
          display: block;
          font-family: 'Lato', sans-serif;
          text-align: center;
          width: 24px;
      }

  .modal.order_box .modal-body .food_group .food_name {
      float: left;
      margin: 0 10px;
      width: calc( 100% - 150px );
  }

      .modal.order_box .modal-body .food_group .food_name small {
          color: #999;
          display: block;
          font-weight: 300;
      }

  .modal.order_box .modal-body .food_group .food_amount {
      color: #02aec6;
      font-family: 'Lato', sans-serif;
      float: left;
      width: 30px;
  }

  .modal.order_box .modal-body .food_group .food_price {
      font-family: 'Lato', sans-serif;
      float: right;
      text-align: right;
      width: 60px;
  }

.modal.order_box .modal-body .order_item {
  clear: both;
}

/* <---------彈跳訂單明細 */