* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Kozuka Mincho Pro", "Kozuka Mincho Std", "Hiragino Mincho Pro", "MS PMincho", Georgia, "Times New Roman", Baskerville, Palatino, serif;
  overflow-x: hidden;
  color: #000;
}

a:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #ddd;
}

::selection {
  background: #91BA06;
  color: #fff;
}

.navbar {
  margin-bottom: 0;
  border-radius: 0;
  position: relative;
}

.inside_nav .navbar {
  min-height: 155px;
}

.inside_nav .navbar-right {
  display: none;
}

.inside_nav .language {
  display: none;
}

.inside_nav .navbar-center a img {
  margin: 20px auto;
}

.navbar-left {
  margin: 20px auto;
}

.navbar-left .language a {
  font-size: 16px;
  color: #000;
  padding-bottom: 6px;
  text-decoration: none;
  position: relative;
}

.navbar-left .language a:before {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  content: "";
  width: 100%;
  height: 1px;
  background-color: #91BA06;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
}

.navbar-left .language a:hover,
.navbar-left .language a:focus {
  color: #91BA06;
}

.navbar-left .language a:hover:before,
.navbar-left .language a:focus:before {
  width: 0;
}

.navbar-left .nav_member {
  margin: 20px auto;
}

.navbar-left .nav_member ul li {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  margin: 0 5px;
}

.navbar-left .nav_member ul li a {
  font-size: 15px;
  color: #000;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.navbar-left .nav_member ul li:nth-child(3) a {
  color: #91BA06;
  border-left: 1px solid #BFBFBF;
  padding-left: 13px;
}

.navbar-center {
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  width: 50%;
}

.navbar-center a {
  display: block;
  text-decoration: none;
}

.navbar-center a img {
  margin: 30px auto;
}

.navbar-right {
  margin: 20px auto;
}

.navbar-right ul li {
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  margin: 0 10px;
  vertical-align: top;
}

.navbar-right ul li:nth-last-child(1) {
  padding-top: 1.6em;
}

.navbar-right ul li a {
  display: block;
  font-size: 17px;
  color: #000;
  text-decoration: none;
}

.navbar-right ul li a .hover_icon {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  opacity: 0;
}

.navbar-right ul li a:hover .hover_icon,
.navbar-right ul li a:focus .hover_icon {
  opacity: 1;
}

@media (max-width: 991px) {
  .navbar-right ul li {
    margin: 0 3px;
  }

  .navbar-center {
    width: 20%;
  }
}

@media (max-width: 767px) {
  .navbar-center {
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    top: 0;
  }

  .navbar-center a img {
    margin: 0 auto;
  }

  .navbar-right {
    -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 0;
    height: 100%;
    background-color: #91BA06;
    margin: 0 auto;
    padding: 1.5em 0;
    transform: translateX(55em);
    z-index: -9;
    opacity: 0;
    overflow-y: auto;
  }

  .navbar-right.active {
    width: 100%;
    transform: translateX(0);
    z-index: 9;
    opacity: 1;
  }

  .navbar-right ul {
    margin-top: 4em;
  }

  .navbar-right ul li {
    width: 100%;
    text-align: center;
    margin: 8px auto;
  }

  .navbar-right ul li:nth-child(1),
  .navbar-right ul li:nth-child(2),
  .navbar-right ul li:nth-child(3),
  .navbar-right ul li:nth-child(4) {
    margin-bottom: 0;
    margin-top: 0;
    border-bottom: 1px solid #91BA06;
  }

  .navbar-right ul li:nth-child(1) a,
  .navbar-right ul li:nth-child(2) a,
  .navbar-right ul li:nth-child(3) a,
  .navbar-right ul li:nth-child(4) a {
    font-weight: bold;
    background-color: #fff;
    color: #91BA06;
    padding: 0.5em 0;
  }

  .navbar-right ul li:nth-child(1) a:hover,
  .navbar-right ul li:nth-child(1) a:focus,
  .navbar-right ul li:nth-child(2) a:hover,
  .navbar-right ul li:nth-child(2) a:focus,
  .navbar-right ul li:nth-child(3) a:hover,
  .navbar-right ul li:nth-child(3) a:focus,
  .navbar-right ul li:nth-child(4) a:hover,
  .navbar-right ul li:nth-child(4) a:focus {
    color: #000;
  }

  .navbar-right ul li img {
    margin: 0 auto;
  }

  .navbar-right ul li a .hover_icon {
    display: none;
  }

  .navbar-right ul li a:hover,
  .navbar-right ul li a:focus {
    color: #fff;
  }

  .delete {
    width: 20px;
    height: 20px;
    cursor: pointer;
    float: right;
    z-index: 111;
    margin-top: 8px;
  }

  .delete i {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    display: block;
    width: 23px;
    height: 2px;
    background-color: #91BA06;
  }

  .delete i:nth-child(2) {
    margin-top: 5px;
  }

  .delete i:nth-child(3) {
    margin-top: 5px;
  }

  .delete.active {
    display: block;
    position: relative;
  }

  .delete.active i {
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
  }

  .delete.active i:nth-child(2) {
    transform: rotate(-45deg);
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Kozuka Mincho Pro", "Kozuka Mincho Std", "Hiragino Mincho Pro", "MS PMincho", Georgia, "Times New Roman", Baskerville, Palatino, serif;
  overflow-x: hidden;
  color: #000;
}

a:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #ddd;
}

::selection {
  background: #91BA06;
  color: #fff;
}

.index_slick .slick-prev,
.index_slick .slick-next {
  display: block;
  width: 30px;
  height: 55px;
  background: url(../image/icon/arrows.png) no-repeat center;
  z-index: 1;
}

.index_slick .slick-prev:hover,
.index_slick .slick-prev:focus,
.index_slick .slick-next:hover,
.index_slick .slick-next:focus {
  background: url(../image/icon/arrows.png) no-repeat center;
  opacity: 0.5;
}

.index_slick .slick-prev {
  left: 2%;
  transform: rotate(180deg);
}

.index_slick .slick-next {
  right: 2%;
}

.index_menu {
  width: 100%;
  background: url(../image/index_bg.jpg) no-repeat top center;
  background-size: cover;
  min-height: 780px;
  padding: 1em 0;
}

.index_title img {
  margin: 30px auto;
  margin-bottom: 0;
}

.index_title h3 {
  margin: 15px auto;
  text-align: center;
  color: #fff;
  font-size: 35px;
}

.index_title span {
  display: block;
  color: #fff;
  margin: 0 auto;
  font-size: 21px;
  position: relative;
  text-align: center;
}

.index_title span:before {
  content: "";
  width: 65px;
  height: 1px;
  background-color: rgba(145, 186, 6, 0.41);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  margin: auto;
}

.index_menu_items {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 15px auto;
  margin-top: 40px;
}

.index_menu_items img {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transform: scale(1);
}

.index_menu_items .index_menu_hover {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 90%;
  letter-spacing: 0px;
}

.index_menu_items .index_menu_hover span {
  width: 51px;
  height: 220px;
  background-color: #000;
  border: 3px double rgba(145, 186, 6, 0.41);
  z-index: 1;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff;
  font-size: 23px;
  text-align: center;
}

.index_menu_items:hover .index_menu_hover,
.index_menu_items:focus .index_menu_hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.index_menu_items:hover .index_menu_hover ul,
.index_menu_items:focus .index_menu_hover ul {
  opacity: 1;
}

.index_menu_items:hover img,
.index_menu_items:focus img {
  transform: scale(1.1);
}

.menu_link1 ul {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 20px;
  padding: 2em 1.8em;
  padding-top: 0;
  opacity: 1;
}

.menu_link1 ul li b {
  display: block;
  font-weight: normal;
  font-size: 14px;
  margin: 5px auto;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.menu_link1 ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.menu_link1 ul li a:hover,
.menu_link1 ul li a:focus {
  color: #91BA06;
}

.index_news_items {
  margin: 40px auto;
}

.index_news_items a {
  display: block;
  text-decoration: none;
}

.index_news_items img {
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  margin: 10px auto;
}

.index_news_items h3 {
  font-size: 23px;
  color: #000;
}

.index_news_items p {
  font-size: 14px;
  color: #000;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.index_news_items span {
  display: block;
  font-size: 14px;
  color: #595959;
  margin-top: 35px;
}

.index_news_items:hover img,
.index_news_items:focus img {
  opacity: 0.5;
}

.index_line {
  display: block;
  width: 39px;
  height: 1px;
  background-color: #91BA06;
  margin: 30px 0;
}

.index_more {
  display: block;
  margin-bottom: 80px;
}

.index_more a {
  display: block;
  width: 168px;
  height: 36px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #000;
  font-size: 16px;
  color: #000;
  margin: 40px auto;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.index_more a i {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #000000;
  margin-right: 5px;
}

.index_more a:before {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  content: "";
  height: 100%;
  width: 0;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.index_more a:hover,
.index_more a:focus {
  color: #fff;
}

.index_more a:hover i,
.index_more a:focus i {
  border-color: transparent transparent transparent #fff;
}

.index_more a:hover:before,
.index_more a:focus:before {
  width: 100%;
}

.index_store_hover {
  border: 3px double rgba(145, 186, 6, 0.41);
  display: block;
  width: 180px;
  height: 95px;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 1em 0;
  z-index: 1;
}

.index_store_hover img {
  margin: 0 auto;
}

.index_store_hover span {
  display: block;
  font-size: 19px;
  color: #fff;
  text-align: center;
  margin: 10px auto;
}

.index_store {
  position: relative;
  overflow: hidden;
  border: 1px solid #91BA06;
  margin: 20px auto;
}

.index_store img {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transform: scale(1);
}

.index_store:hover img,
.index_store:focus img {
  transform: scale(1.1);
}

.index_store_bg {
  background: url(../image/index_bg2.jpg) top center;
  width: 100%;
  height: 155px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.footer {
  position: relative;
}

.footer img {
  margin: 0 auto;
  margin-top: 50px;
}

.footer p {
  font-size: 14px;
  color: #000;
  line-height: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(0, 0, 0, 0.65);
  text-align: center;
  padding: 1em 0;
  margin: 20px auto;
  width: 433px;
}

.footer ul {
  text-align: center;
  margin-bottom: 20px;
}

.footer ul li {
  display: inline-block;
  vertical-align: middle;
}

.footer ul li a {
  display: block;
  font-size: 14px;
  color: #000;
  margin: 0 10px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.footer ul li a:hover,
.footer ul li a:focus {
  color: #91BA06;
}

.footer .copyright {
  text-align: center;
  width: 100%;
  height: 64px;
  color: #000;
  font-size: 14px;
  background-color: #91BA06;
  border: 0;
  margin: 0 auto;
  padding: 1.5em 0;
}

.footer_bg {
  background: url(../image/index_bg2.jpg) top center;
  width: 100%;
  height: 125px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.backtop {
  position: absolute;
  right: 3%;
  bottom: 6em;
}

.backtop:hover,
.backtop:focus {
  opacity: 0.5;
}

@media (max-width: 1199px) {
  .index_menu_items .index_menu_hover ul {
    padding: 0em 1.8em;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .index_menu_items .index_menu_hover {
    bottom: 0;
  }

  .index_menu {
    min-height: 620px;
  }

  .index_menu_items .index_menu_hover span {
    height: 150px;
    bottom: auto;
  }

  .index_menu_items .index_menu_hover ul {
    padding: 0 1.5em;
  }
}

@media (max-width: 767px) {
  .index_menu_items {
    margin: 0 auto;
  }

  .index_more {
    margin-bottom: 10px;
  }

  .backtop {
    bottom: 6em;
  }

  .index_menu_items .index_menu_hover span {
    top: 3em;
  }

  .footer_bg {
    height: auto;
  }
}

@media (max-width: 480px) {
  .footer p {
    width: 100%;
  }

  .footer .copyright {
    height: auto;
    padding: 0.6em 0;
  }

  .footer ul li a {
    margin: 0 6px;
  }

  .footer img {
    margin-top: 30px;
  }
}

.wrapper {
  position: relative;
}

.news_banner {
  background: no-repeat top center;
  background-size: contain;
  min-height: 349px;
  position: relative;
  margin-top: 20px;
}

.news_banner .news_title {
  width: 272px;
  height: 164px;
  background-color: rgba(255, 255, 255, 0.63);
  text-align: center;
  padding: 1em 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.news_banner .news_title img {
  margin: 0 auto;
}

.news_banner .news_title h1 {
  font-size: 39px;
  margin: 5px auto;
  margin-top: 10px;
}

.news_banner .news_title span {
  font-size: 24px;
  border-bottom: 1px solid #91BA06;
  font-family: "time";
}

.news_items {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 2.5em 0;
  margin: 0 auto;
  margin-top: -1px;
}

.news_list {
  margin: 50px auto;
}

.news_list ul {
  text-align: center;
}

.news_list ul li {
  display: inline-block;
  vertical-align: middle;
  border-left: 2px solid #91BA06;
  border-right: 2px solid #91BA06;
  margin-left: -6px;
}

.news_list ul li a {
  font-size: 17px;
  color: #000000;
  padding: 0 1.2em;
  line-height: 34px;
  text-decoration: none;
}

.news_list ul li a:hover,
.news_list ul li a:focus,
.news_list ul li a.active {
  color: #91BA06;
}

.news_detail_tilte {
  display: block;
  width: 160px;
  line-height: 39px;
  margin: 50px auto;
}

.news_detail_tilte h3 {
  font-size: 19px;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 5px auto;
  text-align: center;
  line-height: 30px;
  position: relative;
}

.news_detail_tilte h3:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 1px;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: auto;
  background-color: #000;
}

.news_detail_tilte h3:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 1px;
  left: 0;
  right: 0;
  top: -4px;
  margin: auto;
  background-color: #000;
}

.news_detail_box h3 {
  text-align: center;
  color: #91BA06;
  font-size: 27px;
  margin-bottom: 30px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.news_detail_box img {
  margin: 20px auto;
}

.news_detail_box span {
  color: #91BA06;
  font-size: 17px;
}

.news_detail_box p {
  font-size: 15px;
  margin: 20px auto;
}

.news_share {
  padding-top: 30px;
  border-top: 1px solid #CCCCCC;
  margin: 30px auto;
}

.news_share ul {
  text-align: center;
}

.news_share ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
}

.news_share ul li a {
  display: block;
  background: url(../image/icon/icon.png) no-repeat;
  width: 59px;
  height: 59px;
}

.news_share ul li a.fb {
  background-position: -4.8em 0;
}

.news_share ul li a:hover,
.news_share ul li a:focus {
  opacity: 0.5;
}

.back {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  width: 30%;
  line-height: 53px;
  background-color: #7FB43B;
  margin: 20px auto;
  margin-bottom: 50px;
}

.back a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.back a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.back:hover,
.back:focus {
  background-color: #000;
}

.news_next a,
.news_pre a {
  position: absolute;
  right: -5em;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 29px;
  height: 55px;
  background: url(../image/icon/icon.png) no-repeat;
  background-position: -73px -72px;
}

.news_next a:hover,
.news_next a:focus,
.news_pre a:hover,
.news_pre a:focus {
  opacity: 0.5;
}

.news_pre a {
  transform: rotate(180deg);
  right: auto;
  left: -5em;
}

@media (max-width: 1215px) {
  .news_next a {
    right: -2em;
  }

  .news_pre a {
    left: -2em;
  }
}

@media (max-width: 767px) {
  .news_banner {
    min-height: 220px;
  }

  .news_banner .news_title {
    height: 145px;
  }

  .news_banner .news_title h1 {
    font-size: 30px;
  }

  .news_banner .news_title span {
    font-size: 20px;
  }

  .news_next,
  .news_pre {
    display: none;
  }
}

@media (max-width: 480px) {
  .back {
    width: 100%;
  }
}

.store_search {
  background-color: rgba(145, 186, 6, 0.14);
  position: relative;
  padding: 4em 0 7em;
}

.store_search .taiwan {
  position: absolute;
  top: 0;
  right: 16em;
  opacity: 0.5;
}

.store_search label {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  line-height: 36px;
  font-size: 19px;
  color: #000;
  margin: 10px auto;
}

.store_search label i {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 18px;
  height: 26px;
  background-position: -69px -141px;
  margin-right: 10px;
}

.store_search .form-control {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  height: 36px;
  border-color: #91BA06;
  font-size: 15px;
  margin: 10px auto;
}

.store_search button {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  background-color: #4C4C4C;
  text-align: center;
  width: 100%;
  height: 36px;
  color: #fff;
  font-size: 19px;
  border-radius: 4px;
  border: 0;
  margin: 10px auto;
}

.store_box {
  margin-bottom: 30px;
  border-bottom: 1px solid #000000;
}

.store_box a {
  display: block;
  font-size: 15px;
  color: #000;
}

.store_box a img {
  margin-bottom: 5px;
}

.store_box a p {
  padding-left: 13px;
  margin-bottom: 0;
}

.store_box a span {
  padding-left: 13px;
  display: block;
  font-size: 13px;
  color: red;
  margin: 5px auto;
}

.store_box a:hover,
.store_box a:focus {
  color: #91BA06;
}

.store_box .target_button {
  display: block;
  background-color: #91BA06;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.3em 0.5em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin-bottom: 5px;
}

.store_box .target_button:hover,
.store_box .target_button:focus {
  background-color: #fff;
  border: 1px solid #91BA06;
}

.store_title {
  background-color: rgba(145, 186, 6, 0.14);
  position: relative;
  padding: 3em 0;
  min-height: 243px;
  text-align: center;
}

.store_title i {
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 30px;
  background: url(../image/icon/icon.png) no-repeat;
  background-position: -100px -141px;
}

.store_title h3 {
  display: inline-block;
  text-align: center;
  font-size: 23px;
  color: #91BA06;
  border-bottom: 1px dotted #91BA06;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-top: 18px;
}

.store_box2 {
  position: relative;
  width: 638px;
  margin: 0 auto;
  margin-top: -5em;
  margin-bottom: 50px;
}

.store_box2 .store_img {
  margin: 0 auto;
  border: 1px solid #C5DEA6;
  background-color: #fff;
  padding: 0.5em;
}

.store_box2 .pic_1 {
  position: absolute;
  right: -4em;
  bottom: -1em;
  margin: auto;
}

.store_table_items {
  overflow: hidden;
  border-bottom: 1px dotted #91BA06;
  border-top: 1px dotted #91BA06;
  margin-top: -1px;
  padding: 1em;
}

.store_table_items .store_th {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #91BA06;
  font-weight: bold;
  margin-bottom: 13px;
}

.store_table_items .store_th i {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 23px;
  height: 24px;
  margin-right: 5px;
}

.store_table_items:nth-child(1) .store_th i {
  background-position: 0 -70px;
}

.store_table_items:nth-child(2) .store_th i {
  background-position: 2px -111px;
}

.store_table_items:nth-child(3) .store_th i {
  background-position: 0 -153px;
}

.store_table_items:nth-child(4) .store_th i {
  background-position: 0 -193px;
}

.store_table_items:nth-child(5) .store_th i {
  background-position: -34px -72px;
}

.store_table_items:nth-child(6) .store_th i {
  background-position: -34px -114px;
}

.store_table_items:nth-child(7) .store_th i {
  background: url(../image/icon/icon2.png) no-repeat;
}

.store_table_items:nth-child(8) .store_th i {
  background: url(../image/icon/icon2-2.png) no-repeat;
}

.store_table_items:nth-child(9) .store_th i {
  background: url(../image/icon/icon2-3.png) no-repeat;
}

.store_table_items:nth-child(10) .store_th i {
  background: url(../image/icon/icon2-4.png) no-repeat;
}

.store_table_items .store_td {
  font-size: 15px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.store_table {
  margin-bottom: 30px;
  margin-top: 2.5em;
}

#map {
  min-height: 403px;
  border: 1px solid #91BA06;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .store_search .taiwan {
    right: 2em;
  }

  .store_search {
    padding: 2em 0;
  }
}

@media (max-width: 767px) {
  .store_search .taiwan {
    right: 0;
  }

  .store_search .taiwan {
    display: none;
  }

  .store_box {
    margin-bottom: 20px;
  }

  .store_box a p {
    margin-bottom: 3px;
  }

  .store_box a i {
    display: none;
  }

  .store_box2 {
    width: 100%;
  }

  .store_box2 .pic_1 {
    right: 1em;
    bottom: 1em;
  }

  .store_box a img {
    position: relative;
    top: -4px;
  }
}

@media (max-width: 480px) {
  .store_box2 .pic_1 {
    width: 20%;
  }
}

.contact_bg {
  position: absolute;
  right: 11em;
  top: -6em;
}

.contact_title {
  width: 100%;
  background: #91BA06 url(../image/icon/contact_icon.png) no-repeat right bottom;
  margin: 50px auto;
  padding: 4em;
}

.contact_title h2 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 39px;
  color: #fff;
  font-weight: bold;
  margin: 10px auto;
}

.contact_title h3 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 10px auto;
}

.contact_box {
  margin: 30px auto;
  margin-top: 3.5em;
  padding: 0 3em;
  margin-bottom: 100px;
}

.contact_box h3 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 19px;
  color: #91BA06;
  font-weight: bold;
}

.contact_box p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #525252;
  font-weight: bold;
  margin-bottom: 30px;
}

.contact_form {
  margin-bottom: 50px;
}

.contact_form button {
  display: block;
  width: 334px;
  line-height: 53px;
  background-color: #91BA06;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border: 0;
  margin: 20px auto;
  margin-bottom: 50px;
}

.contact_form button:hover,
.contact_form button:focus {
  background-color: #7FB43B;
}

.contact_form button i {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 18px;
  height: 18px;
  background-position: -104px -188px;
  margin-right: 5px;
}

.contact_form table {
  width: 100%;
}

.contact_form table tr th {
  width: 15%;
  padding: 1.2em 1em;
  border-bottom: 1px dotted #91BA06;
  border-top: 1px dotted #91BA06;
  background-color: #FAFCF4;
  font-size: 16px;
  color: #464646;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.contact_form table tr td {
  border-bottom: 1px dotted #91BA06;
  border-top: 1px dotted #91BA06;
  padding: 1.2em 1em;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #464646;
  line-height: 36px;
}

.contact_form table tr td .radio-inline,
.contact_form table tr td .checkbox-inline {
  line-height: 19px;
}

.contact_form table tr td .form-control {
  height: 36px;
  border-color: #C5C5C5;
  margin: 5px auto;
  border-radius: 3px;
}

.contact_form table tr td select.form-control {
  border-color: #91BA06;
  background-color: #F7F7F7;
}

.rwd-table {
  overflow: hidden;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:before {
  content: attr(data-th) "  ";
  display: inline-block;
}

@media (min-width: 767px) {
  .rwd-table td:before {
    display: none;
  }

  .rwd-table th,
  .rwd-table td {
    display: table-cell;
  }
}

@media (max-width: 1099px) {
  .contact_box {
    padding: 0 3em;
  }

  .contact_form table tr th {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .contact_bg {
    right: 0;
    top: -13em;
  }

  .contact_box {
    padding: 0 1em;
  }
}

@media (max-width: 767px) {
  .contact_title {
    margin-bottom: 0;
    padding: 2em;
  }

  .contact_box {
    margin-top: 0;
  }

  .contact_bg {
    display: none;
  }

  .contact_form .rwd-table td:before {
    color: #91BA06;
    text-align: center;
    display: block;
    font-weight: bold;
  }

  .contact_form table tr td {
    padding: 0.5em;
  }
}

@media (max-width: 480px) {
  .contact_form button {
    width: 100%;
  }
}

.menu {
  margin: 20px auto;
  position: relative;
  margin-bottom: 20px;
}

.menu a {
  display: block;
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

.menu a i {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  width: 138px;
  height: 138px;
  background: #91BA06;
  background: linear-gradient(135deg, transparent 97px, #91BA06 0);
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.66;
  z-index: 1;
}

.menu a .menu_hover {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  padding-top: 3em;
}

.menu a .menu_hover h3 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 22px;
  color: #91BA06;
  font-weight: bolder;
}

.menu a .menu_hover span {
  display: block;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  text-align: center;
  color: #91BA06;
  font-size: 15px;
  position: relative;
}

.menu a .menu_hover span:before {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  content: "";
  width: 0;
  height: 4px;
  background-color: #91BA06;
  position: absolute;
  bottom: -1em;
  left: 0;
  right: 0;
  margin: auto;
}

.menu a .menu_hover .menu_icon {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.menu a:hover,
.menu a:focus {
  transform: scale(1.05);
}

.menu a:hover i,
.menu a:focus i {
  opacity: 0;
}

.menu a:hover .menu_icon,
.menu a:focus .menu_icon {
  opacity: 1;
}

.menu a:hover .menu_hover h3,
.menu a:focus .menu_hover h3 {
  color: #fff;
}

.menu a:hover .menu_hover span,
.menu a:focus .menu_hover span {
  color: #fff;
}

.menu a:hover .menu_hover span:before,
.menu a:focus .menu_hover span:before {
  width: 40px;
}

.menu a:hover .menu_hover,
.menu a:focus .menu_hover {
  background-color: rgba(14, 16, 10, 0.78);
}

.menu_box img {
  display: block;
  margin: 0 auto;
}

.menu_box h3 {
  text-align: center;
  font-size: 17px;
  margin: 30px auto;
}

.menu_box h3 em {
  color: #91BA06;
  font-size: 36px;
  font-family: "time";
}

.menu_item {
  border-bottom: 1px solid rgba(164, 164, 164, 0.56);
  padding: 0 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.menu_item h4 {
  font-size: 23px;
  color: #8A5E2E;
}

.menu_item p {
  font-size: 16px;
  color: #000000;
}

.menu_order {
  background-color: rgba(145, 186, 6, 0.14);
  border: 1px solid rgba(145, 186, 6, 0.53);
  padding: 2em;
  position: relative;
  margin-top: 100px;
}

.menu_order p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.menu_order p b {
  color: #91BA06;
  margin-left: 10px;
}

.menu_order span {
  color: #91BA06;
  font-size: 17px;
}

.menu_order em {
  display: block;
  font-style: normal;
  width: 50px;
  height: 121px;
  background-color: #7FB43B;
  padding: 0.5em 0.85em;
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: -4em;
  right: 2em;
  margin: auto;
}

.menu_item2 {
  border: 0;
  overflow: hidden;
}

.menu_item2 h4 {
  border-bottom: 1px solid rgba(164, 164, 164, 0.56);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.menu_item2 h4 em {
  display: inline-block;
  vertical-align: middle;
  float: right;
  color: #91BA06;
}

.menu_item2_box {
  border-bottom: 1px solid rgba(164, 164, 164, 0.56);
  margin-top: 10px;
}

.menu_item2_box h3 {
  font-size: 23px;
  color: #8A5E2D;
  margin-bottom: 20px;
  text-align: left;
}

.menu_item2_box p b {
  float: right;
}

@media (max-width: 991px) {
  .menu_order em {
    top: -3em;
    right: -1em;
  }
}

@media (max-width: 767px) {
  .menu {
    margin-bottom: 30px;
  }

  .menu_item {
    padding: 0;
    margin-bottom: 10px;
  }

  .menu_order {
    margin-top: 70px;
  }

  .menu_item2 h4 {
    margin-top: 20px;
  }
}

@media (max-width: 360px) {
  .menu_item2 h4 em {
    display: inline-block;
    vertical-align: middle;
    float: none;
  }
}

.g-recaptcha {
  margin: 0 15em;
}

.member_title {
  width: 100%;
  background: #91BA06 url(../image/icon/member_icon2.png) no-repeat right bottom;
  margin: 50px auto;
  padding: 4em;
}

.member_title h2 {
  color: #fff;
  font-size: 39px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.member_title h3 {
  color: #fff;
  font-size: 16px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.member_fb {
  margin: 50px auto;
}

.member_fb h3 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 23px;
  color: #91BA06;
  font-weight: bold;
}

.member_fb p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #525252;
  font-weight: bold;
  margin-bottom: 20px;
}

.member_fb a {
  display: inline-block;
  vertical-align: middle;
}

.member_fb b {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #595959;
}

.member_form h3 {
  font-size: 16px;
  color: #525252;
  text-align: center;
  font-weight: bolder;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  margin-top: 50px;
}

.member_form p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 16px;
  color: #525252;
  margin: 30px auto;
  margin-bottom: 50px;
  font-weight: bold;
}

.memeber_form_items {
  display: block;
  margin: 20px auto;
  min-height: 60px;
  text-align: center;
}

.memeber_form_items label {
  font-size: 16px;
  color: #464646;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.memeber_form_items label span {
  display: inline-block;
  vertical-align: middle;
  color: #ccc;
  font-size: 14px;
  margin-left: 5px;
}

.memeber_form_items label a {
  color: #91BA06;
}

.memeber_form_items .form-control {
  height: 36px;
}

.memeber_form_items span {
  display: block;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #909090;
}

.memeber_form_items .checkbox-inline {
  font-weight: bold;
}

.member_line {
  border-bottom: 1px dotted #91BA06;
}

.member_form button {
  display: block;
  width: 334px;
  line-height: 53px;
  background-color: #91BA06;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border: 0;
  margin: 20px auto;
  margin-bottom: 50px;
}

.member_form button i {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 18px;
  height: 18px;
  background-position: -104px -188px;
  margin-right: 5px;
}

.member_form button:hover,
.member_form button:focus {
  background-color: #7FB43B;
}

.member_height {
  min-height: 30px;
}

.member2_title {
  text-align: center;
  margin: 50px auto;
}

.member2_title img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.member2_title h3 {
  display: inline-block;
  vertical-align: middle;
  font-size: 23px;
  color: #91BA06;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  padding-bottom: 10px;
  position: relative;
  font-weight: bold;
}

.member2_title h3:before {
  content: "";
  border-bottom: 1px dotted #91BA06;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

.member_2_button button {
  width: 100%;
}

.member_2_button .col-sm-6:nth-child(2) button {
  background-color: #7FB43B;
}

.member_2_button .col-sm-6:nth-child(2) button:hover,
.member_2_button .col-sm-6:nth-child(2) button:focus {
  background-color: #000;
}

.login {
  position: relative;
  margin-top: 50px;
}

.login .top_bg {
  position: absolute;
  top: -9em;
  left: -3em;
  margin: auto;
}

.login h4 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #595959;
  font-weight: bold;
  text-align: center;
  line-height: 26px;
}

.login em {
  display: block;
  font-style: normal;
  width: 31px;
  height: 31px;
  background-color: #91BA06;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  line-height: 28px;
  margin: 50px auto;
  margin-top: 80px;
}

.login p {
  text-align: center;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #595959;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 26px;
}

.login p a {
  color: #91BA06;
}

.fb_line {
  position: relative;
  margin: 40px auto;
}

.fb_line:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(160, 160, 160, 0.83);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.fb_line span {
  display: block;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: rgba(89, 89, 89, 0.81);
  text-align: center;
  background-color: #fff;
  width: 180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.facebook_login {
  display: block;
  border: 0;
  background-color: transparent;
  margin: 0 auto;
}

.facebook_login:hover,
.facebook_login:focus {
  opacity: 0.5;
}

.login_form {
  min-height: 310px;
}

.login_form form {
  margin: 40px auto;
}

.login_form label {
  font-size: 16px;
  color: #000;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.login_form .form-control {
  border-color: rgba(145, 186, 6, 0.46);
  border-radius: 0;
  height: 46px;
  margin-bottom: 20px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.login_form .form-control.phone {
  background: url(../image/icon/phone.png) no-repeat;
  background-position: 27em 0.7em;
}

.login_form .form-control.password {
  background: url(../image/icon/phone.png) no-repeat right bottom;
  background-position: 27em -2.5em;
}

.login_form button {
  width: 100%;
  background-color: #91BA06;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  line-height: 45px;
  border: 0;
  font-size: 16px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
}

.login_form button:hover,
.login_form button:focus {
  background-color: #000;
}

.login_form ul {
  text-align: center;
  margin-top: 10px;
}

.login_form ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
}

.login_form ul li a {
  display: block;
  font-size: 16px;
  color: #91BA06;
  font-weight: bold;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.login_form ul li a i {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 22px;
  height: 21px;
  background-position: -34px -148px;
  margin-right: 5px;
}

.login_form ul li a b {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 23px;
  height: 21px;
  background-position: -36px -194px;
  margin-right: 5px;
}

.login_line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(164, 164, 164, 0.72);
  margin-bottom: 40px;
}

.forgot_box {
  overflow: hidden;
  margin-bottom: 35px;
}

.forgot_box h4 {
  font-size: 16px;
  color: #525252;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 15px auto;
}

.forgot_box img {
  margin: 15px auto;
}

.forgot_box ul {
  list-style: none;
}

.forgot_box ul li {
  font-size: 15px;
  color: #525252;
  margin: 10px auto;
  border-left: 1px solid #91BA06;
  padding-left: 20px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

.logout {
  position: absolute;
  top: 2.5em;
  right: 0;
}

.logout a {
  float: right;
  display: block;
  width: 174px;
  line-height: 53px;
  background-color: #91BA06;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border: 0;
  margin: 20px auto;
  margin-bottom: 50px;
  text-decoration: none;
}

.logout a i {
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  width: 18px;
  height: 18px;
  background-position: -104px -188px;
  margin-right: 5px;
}

.logout a:hover,
.logout a:focus {
  background-color: #000;
}

.member_list ul {
  text-align: center;
  border-bottom: 1px solid #91BA06;
  margin-bottom: 0;
}

.member_list ul li {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  width: 25%;
  margin-bottom: -1px;
  border: 1px solid transparent;
  margin-left: -5px;
  overflow: hidden;
}

.member_list ul li a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #1F1F1F;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  text-decoration: none;
  margin: 15px auto;
}

.member_list ul li a i {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-block;
  vertical-align: middle;
  background: url(../image/icon/icon.png) no-repeat;
  float: right;
  width: 12px;
  height: 10px;
  background-position: -76px -186px;
  margin-right: 15px;
  margin-top: 6px;
  opacity: 0;
}

.member_list ul li:hover,
.member_list ul li:focus,
.member_list ul li.active {
  background-color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top: 1px solid #91BA06;
  border-left: 1px solid #91BA06;
  border-right: 1px solid #91BA06;
  border-bottom: 1px solid #fff;
}

.member_list ul li:hover a,
.member_list ul li:focus a,
.member_list ul li.active a {
  color: #7FB43B;
}

.member_list ul li:hover a i,
.member_list ul li:focus a i,
.member_list ul li.active a i {
  opacity: 1;
}

.member_list ul li:nth-last-child(1) a {
  border: 0;
}

.member_bg {
  background-color: rgba(236, 236, 236, 0.44);
  margin: 30px auto;
  padding: 2em;
}

.member_bg p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  font-size: 16px;
  color: #464646;
  font-weight: bold;
  text-align: center;
}

.member_bg p span {
  display: inline-block;
  vertical-align: middle;
  color: #91BA06;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #91BA06;
}

.member_1 {
  text-align: center;
  color: #525252;
  font-weight: bold;
  font-size: 16px;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  margin: 20px auto;
  margin-bottom: 50px;
}

.member_items {
  display: block;
  margin: 20px auto;
  border-bottom: 1px dotted #91BA06;
  padding-bottom: 20px;
}

.member_items a {
  display: block;
  text-decoration: none;
}

.member_items a span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  width: 67px;
  height: 67px;
  background-color: #91BA06;
  color: #fff;
  font-size: 13px;
  text-align: center;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  padding-top: 4px;
}

.member_items a span b {
  display: block;
  font-size: 39px;
  margin-top: -7px;
}

.member_items a .member_items_box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.member_items a .member_items_box h4 {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  color: #212121;
  font-size: 18px;
  font-weight: bold;
}

.member_items a .member_items_box p {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  color: #464646;
  font-size: 15px;
}

.member_items a:hover span,
.member_items a:focus span {
  background-color: #000;
}

.member_items a:hover .member_items_box h4,
.member_items a:focus .member_items_box h4 {
  color: #91BA06;
}

.member_items a:hover .member_items_box p,
.member_items a:focus .member_items_box p {
  color: #91BA06;
}

.member_bottom_bg {
  position: absolute;
  bottom: 0;
  right: 14em;
  z-index: -1;
}

.memeber_4_holiday {
  padding: 3em 0;
  border-bottom: 1px dotted #91BA06;
  margin-bottom: 10px;
}

.memeber_4_holiday img {
  margin: 20px auto;
}

.memeber_4_holiday h3 {
  font-size: 18px;
  color: #7FB43B;
}

.memeber_4_holiday p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: #2C2C2C;
}

.memeber_4_holiday p span {
  color: #91BA06;
}

.memeber_4_holiday ul {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  list-style: none;
}

.memeber_4_holiday ul li {
  font-size: 15px;
  color: #2C2C2C;
  margin: 10px auto;
  padding-left: 30px;
  background: url(../image/icon/delete.png) no-repeat top left;
}

.memeber_4_holiday ul li span {
  color: #91BA06;
}

.member_point {
  background-color: rgba(236, 236, 236, 0.44);
  margin: 40px auto;
  padding: 1.5em;
  text-align: center;
  margin-bottom: 15em;
}

.member_point p {
  display: inline-block;
  vertical-align: middle;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  font-size: 16px;
  color: #464646;
  font-weight: bold;
  text-align: center;
  border-left: 1px solid #91BA06;
  padding-left: 15px;
}

.member_point p span {
  display: inline-block;
  vertical-align: middle;
  color: #91BA06;
  margin: 0 20px;
}

.member_phone {
  display: block;
  text-align: right;
}

@media (max-width: 1199px) {
  .login .top_bg {
    top: -14em;
  }
}

@media (max-width: 991px) {
  .member_bg p span {
    margin-right: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .member_2_button {
    margin-bottom: 50px;
  }

  .member_2_button button {
    margin-bottom: 0;
  }

  .memeber_form_items {
    margin: 10px auto;
  }

  .login .top_bg {
    display: none;
  }

  .login {
    margin-top: 25px;
  }

  .login em {
    margin: 10px auto;
  }

  .login_line {
    margin: 15px auto;
  }

  .fb_line {
    margin: 15px auto;
  }

  .login_form ul li {
    margin: 0 6px;
  }

  .login_form .form-control {
    margin-bottom: 10px;
  }

  .member_bg {
    padding: 0.7em;
  }

  .member_bg p {
    text-align: left;
    margin-bottom: 10px;
  }

  .member_list ul li {
    width: 33%;
  }

  .logout {
    position: initial;
  }

  .logout a {
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .memeber_4_holiday_button {
    margin-bottom: 0;
  }

  .memeber_4_holiday_button button {
    margin: 10px auto;
  }

  .memeber_4_holiday img {
    display: block;
    margin: 30px auto;
  }

  .member_bottom_bg {
    display: none;
  }

  .member_point {
    margin-bottom: 3em;
  }

  .login_form {
    min-height: auto;
  }

  .g-recaptcha {
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .member_list ul li {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .member_form button {
    width: 100%;
  }
}

.search_box {
  margin: 50px auto;
}

.search_box ul {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  border-bottom: 1px dotted #91BA06;
  padding-left: 30px;
}

.search_box ul li {
  margin: 15px auto;
  font-size: 15px;
  color: #91BA06;
}

.search_box ul li * {
  color: #000;
}

.search_sumit {
  margin: 30px auto;
  margin-bottom: 0;
}

.search_sumit table {
  width: 100%;
}

.search_sumit table tr th {
  text-align: center;
  padding: 1em;
  border: 1px solid #91BA06;
  color: #fff;
  background-color: #91BA06;
  font-weight: normal;
  font-size: 17px;
}

.search_sumit table tr td {
  text-align: center;
  padding: 1em;
  border: 1px solid #91BA06;
}

@media (max-width: 767px) {
  .search_sumit .rwd-table td {
    text-align: left;
  }

  .search_sumit .rwd-table td:before {
    color: #91BA06;
    margin-right: 20px;
    width: 33%;
  }
}

.privacy_top {
  border-bottom: 1px dotted #91BA06;
  margin: 30px auto;
  padding-bottom: 20px;
}

.privacy_top p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #525252;
  text-align: center;
}

.privacy_box {
  margin-top: 40px;
}

.privacy_box h3 {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 19px;
  color: #91BA06;
  background: url(../image/icon/delete.png) no-repeat left center;
  padding-left: 30px;
  font-weight: bold;
}

.privacy_box p {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #525252;
}

.privacy_box ul {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  padding-left: 20px;
}

.privacy_box ul li {
  color: #91BA06;
  margin: 15px auto;
  font-size: 16px;
}

.privacy_box ul li * {
  color: #525252;
}

.privacy_box ol {
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
  padding-left: 20px;
  margin: 20px auto;
}

.privacy_box ol li {
  color: #91BA06;
  font-size: 16px;
  margin: 10px auto;
}

.privacy_box ol li * {
  color: #525252;
}

.privacy_box ol li ul {
  padding-left: 20px;
}

.privacy_box ol li ul li {
  color: #91BA06;
}

.privacy_box ol li ul li * {
  color: #525252;
}

/*tab*/

.s_tab {
  text-align: center;
  border: 0;
  margin-bottom: 0;
  background-color: rgba(145, 186, 6, 0.14);
  padding: 2em 0 0;
}

.s_tab li {
  display: inline-block;
  vertical-align: middle;
  float: none;
  margin: 2em 1.5em 0;
}

.s_tab li a {
  display: block;
  font-size: 20px;
  color: #999;
  font-weight: bold;
  border: 0;
  text-decoration: none;
  padding: .5em 1em;
  /* padding-bottom: 1em; */
  background-color: #fff;
  border: 1px solid #91BA06;
  border-radius: 6px;
  width: 180px;
}

.store_search img{
  margin: 0 auto 3em;
}

.s_tab li a img {
  display: block;
  vertical-align: middle;
  opacity: .5;
  margin: 0 auto 1em;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.s_tab>li.active>a,
.s_tab>li.active>a:hover,
.s_tab>li.active>a:focus {
  background-color: #91BA06;
  color: #fff;
}

.s_tab>li.active>a img,
.s_tab>li.active>a:hover img,
.s_tab>li.active>a:focus img {
  opacity: 1;
}


@media (max-width: 767px) {
  .s_tab li {
    margin: 2em 1em 0;
    /* width: 35%; */
  }
}

@media (max-width: 576px) {

  .s_tab li a {
    /* padding: 1em .5em; */
  }


  .s_tab li a img {
    /* width: 90px; */
  }


}

@media (max-width: 480px) {
  .s_tab li {
    width: 40%;
  }

  .s_tab li a {
    width: 100%;
  }

}


@media (max-width: 424px) {
  .s_tab li {
    /* width: 42%; */
    margin: 2em .5em 0;
  }
}