@charset "UTF-8";
@import url("/css/normalize.css");
@import url("/css/font-awesome-4.5.0/css/font-awesome.min.css");
@import url("/css/message.css");
@import url("/css/button.css");
@font-face {
  font-family: "HKGrotesk";
  src: url("/BZ/fonts/hkgrotesk-regular.eot");
  src: url("/BZ/fonts/hkgrotesk-regular.eot") format("embedded-opentype"), url("/BZ/fonts/hkgrotesk-regular.woff") format("woff"), url("/BZ/fonts/hkgrotesk-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.f-danger {
  color: #d40000;
}

.f-fun {
  color: #f7f40a;
}

.f-primary {
  color: #007bff;
}

.f-success {
  color: #28a745;
}

.f-info {
  color: #00f7ff;
}

.f-beauty {
  color: #da199d;
}

.f-light {
  color: #fff;
}

.f-wraning {
  color: #ffc107;
}

.f-dark {
  color: #000;
}

.f-secondary {
  color: #868e96;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "HKGrotesk", "微軟正黑體", "Helvetica", "Arial", "PingFangTC-Light", "STHeitiTC-Light", "Microsoft JhengHei", sans-serif;
}

html, body {
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: #ffffff;
  overflow-x: hidden;
  letter-spacing: 1px;
  font-family: Arial, Helvetica, sans-serif;
}

.form--styleA input[type=text], .form--styleA input[type=password], .form--styleA input[type=email], .form--styleA input[type=number] {
  width: 98%;
  height: 2.5em;
  padding-left: 8px;
  border: 1px solid rgb(216.5, 216.5, 216.5);
  border-radius: 10px;
  margin: 5px auto;
}

.wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
}

ol {
  margin-top: 0px;
  padding-top: 0px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

a .link {
  color: #06F;
  font-size: 16px;
  line-height: 27px;
  text-decoration: underline;
}
a .link:hover {
  color: #F00;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

/* ================= table設定 ================= */
.table {
  word-break: break-all;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 5px 0;
  color: #000;
  border: 1px solid #ff7f7f;
}
.table-full {
  width: 100%;
}
.table-half {
  float: left;
  width: 47%;
  margin: 0 1.5%;
  margin-top: 20px;
}
.table tr {
  background: #fff;
}
.table tr th {
  color: #fff;
  text-align: center;
  font-size: 1.025em;
  font-weight: bold;
  padding: 5px;
  border: 1px #ff7f7f solid;
  background-color: rgb(255, 218.8, 218.8);
}
.table tr td {
  text-align: center;
  line-height: 24px;
  padding: 5px;
  border: 1px #ff7f7f solid;
}

/* ================= btn設定 ================= */
.btn_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
}
.btn_group a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 0.8em 2em;
  margin: 5px;
  background-color: rgb(203.75, 203.75, 203.75);
  border-radius: 6px;
}
.btn_group a:hover {
  background-color: #ff7f7f;
}

header {
  width: 100%;
  position: relative;
  display: block;
  height: 101px;
  border-bottom: 1px solid rgb(216.5, 216.5, 216.5);
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
header .logo {
  width: 50%;
  height: 100%;
}
header .logo a {
  display: block;
  height: 100%;
  width: 100%;
  background-image: url("/BZ/images/img_logo.jpg?20251216");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
header .nav-top-wrap {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .nav-top-wrap li {
  display: inline-block;
  width: 33.33%;
  height: 100%;
  margin: 0;
}
header .nav-top-wrap li a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#ffffff));
  background-image: linear-gradient(top, #f3f3f3 0%, #ffffff 100%);
  color: #323232;
  border-right: 1px solid #ffffff;
}
header .nav-top-wrap li a:hover, header .nav-top-wrap li a.hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#f3f3f3));
  background-image: linear-gradient(top, #d8d8d8 0%, #f3f3f3 100%);
}

main {
  width: 100%;
  max-width: 1200px;
  min-height: calc(100vh - 212px);
  margin: 0 auto;
  padding-bottom: 50px;
}
main .banner-wrap > div {
  padding-bottom: 33.2%;
  margin: 5px;
}
main article.article-settle-wrap > h2 {
  font-size: 1.2em;
  line-height: 2.5em;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  background-color: #655858;
}
main article.confirm-products-wrap {
  width: 75%;
  margin: 0 auto;
}
main article.article-article-wrap h4 {
  line-height: 2em;
}
main article.article-article-wrap h3 {
  line-height: 1.5em;
}
main article.article-article-wrap p {
  margin: 5px 0;
}
main article.article-article-wrap ol, main article.article-article-wrap ul {
  padding-left: 1.2em;
}

footer {
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#ffffff));
  background-image: linear-gradient(top, #fdfdfd 0%, #ffffff 100%);
}
footer .footer-wrap {
  width: 100%;
  height: 50px;
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer-wrap .nav-footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
footer .footer-wrap .nav-footer-wrap li {
  list-style: none;
  width: 25%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9em;
}
footer .footer-wrap .nav-footer-wrap li a {
  display: block;
  width: 100%;
  border-right: 1px solid #ff8081;
  text-decoration: none;
  color: #333;
}
footer .footer-wrap .nav-footer-wrap li a:hover {
  color: #be6363;
}

.products-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0;
}
.products-item .products-item-img {
  width: 29%;
  margin-right: 1%;
  border: 1px solid #d3d3d3;
}
.products-item .products-item-img img {
  width: 100%;
}
.products-item .products-item-narrative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 70%;
  border-top: 1px solid #ff8081;
}
.products-item .products-item-narrative .products-item-narrative-top .products-item-name {
  font-size: 1.5em;
  line-height: 1.5em;
  letter-spacing: 0;
  font-weight: bold;
  color: #3f3a3a;
}
.products-item .products-item-narrative .products-item-narrative-top .products-item-text {
  color: rgb(82, 82, 82);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.4em;
}
.products-item .products-item-narrative .products-item-narrative-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 2.5em 1em;
}
.products-item .products-item-narrative .products-item-narrative-bottom .products-item-price {
  font-size: 1.3em;
  letter-spacing: 1px;
  text-align: center;
  color: #3a3a3a;
}
.products-item .products-item-narrative .products-item-narrative-bottom .btn-buy a {
  display: inline-block;
  width: 120px;
  text-align: center;
  background: #ff8081;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.btn_group a {
  display: inline-block;
  padding: 12px 20px;
  margin-bottom: 30px;
  text-align: center;
  background: #ff8081;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.5;
  border-radius: 10px;
}

/* =================彈跳視窗================= */
.box_windows {
  display: none;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
}
.box_windows .layer_click {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box_windows .box_container.record {
  display: none;
  padding: 1em;
  font-size: 120%;
  color: #FFF;
  line-height: 1.2em;
}
.box_windows .box_container.record .box_container_page {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}
.box_windows .box_container.record .box_container_page .popupImg {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 300px;
  background: white;
  padding: 2%;
}
.box_windows .box_container.record .box_container_page .popupImg img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.box_windows .box_container.record .box_container_page .popupImg .item-title {
  text-align: center;
  color: #333;
  text-align: left;
  padding: 8px 0;
  margin: 0;
}
.box_windows .box_container.record .box_container_page .popupImg .item-title p {
  font-size: 16px;
}
.box_windows .box_container.record .box_container_page .form input {
  width: 98%;
  height: 2.5em;
  padding-left: 8px;
  border-radius: 6px;
  margin: 5px auto;
  border: 1px #ff8081 solid;
}
.box_windows .box_container.record h3 {
  font-size: 1.2em;
  line-height: 2em;
  color: #ff8081;
  text-align: center;
}
.box_windows .box_container.record ol {
  padding-left: 1.5em;
}
.box_windows .box_container {
  position: relative;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.9);
          box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.box_windows a.btn_x {
  position: absolute;
  display: block;
  top: 0%;
  right: 0%;
  width: 2em;
  height: 2em;
  background-image: url(../images/btn_x.png?20191120);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 20;
}

.itemBtn_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 0 auto;
  padding-top: 3%;
}
.itemBtn_main .itemBtn_main_btn {
  text-align: center;
  text-transform: uppercase;
  border-radius: 6px;
  background-color: #ff8081;
  width: 45%;
  font-size: 16px;
  line-height: 30px;
}
.itemBtn_main .itemBtn_main_btn a {
  cursor: pointer; /* 滑鼠手指 */
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 5px 0;
  width: 100%;
}

.go_in {
  display: block;
  opacity: 1;
}

.go_out {
  display: none;
  opacity: 0;
}

.box_flipInY {
  -webkit-animation-name: box_flipInY;
          animation-name: box_flipInY;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  visibility: visible !important;
}

@-webkit-keyframes box_flipInY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(3%) scaleX(1.05);
            transform: translateY(3%) scaleX(1.05);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(-1%);
            transform: translateY(-1%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes box_flipInY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(3%) scaleX(1.05);
            transform: translateY(3%) scaleX(1.05);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(-1%);
            transform: translateY(-1%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.box_flipInX {
  -webkit-animation-name: box_flipInX;
          animation-name: box_flipInX;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  visibility: visible !important;
}

/*===================共用樣式===================*/
.font-bold {
  font-weight: bold;
}

.textalign-center {
  text-align: center;
}

.textalign-right {
  text-align: right;
}

#top {
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 9999;
}