@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");

 html {
  margin:0;
  padding:0;

  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: sans-serif, "Noto Sans TC";
  font-weight: 400;
  line-height: 2;
  font-size: 18px;
  color: #000;
  overflow-x: hidden;

  transition: background-color 0.6s ease;
  height: 100%;
}
body.default-bg {
  background-color: #ffffff;
}
body.scrolled-bg {
  background-color: #35baca;
}

ol,
ul {
  list-style-type: none;
  margin:0;
  padding:0;
}

img {
  vertical-align: middle;
  border: 0;
}
a {
  color: #00a2b6;
  cursor: pointer;
  transition: 0.3s ease;
}
a:hover,
a:focus {
  color: #be6a7f;
  text-decoration: none;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

h1 {
  font-weight: 900;
  text-align: center;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.bg-con {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
}

.bg-w {
  background-color: #fff;
}

@media (max-width: 600px) {
  .bg-con {
    padding: 30px;
  }
}
@media (max-width: 450px) {
  .bg-con {
    padding: 30px 15px;
  }
}

/****************************
top-header
****************************/
.top-header {
  font-size: 14px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600;
}
.top-header.hide {
  transform: scaleY(0);
  transform-origin: top;
}
.top-header a {
  color: #fff;
  font-weight: 400;
}

/****************************
hero
****************************/
.hero-section {
  position: relative;
  width: 100vw;
  aspect-ratio: 1905 / 856;
  background-color: #35baca;
}
.hero_logo {
  position: absolute;
  left: 30px;
  bottom: 75px;
  z-index: 1;
}
.hero_tl {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero_tl img {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1300px) {
  .hero-section {
    aspect-ratio: 7 / 4;
  }
}
@media (max-width: 991px) {
  .hero-section {
    margin-top: 80px;
  }
  .hero_logo {
    display: none;
  }
}
@media (max-width: 767px) {

  .hero-section {
    margin-top: 72px;
  }
}

/****************************
line_circle
****************************/
.line_circle {
  position: fixed;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  z-index: 1;
}

.line_circle.show {
  opacity: 1;
  visibility: visible;
  animation: bounceIn 1s forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  30% {
    opacity: 1;
    transform: translateY(20px);
  }
  70% {
    transform: translateY(-10px);
  }
  90% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .line_circle {
    right: 5px;
    bottom: 5px;
  }
  .line_circle img {
    max-width: 150px;
  }
}

@media (max-width: 600px) {
  .line_circle {
    display: none;
  }
}

/****************************
menu
****************************/
.menu {
  width: 100%;
  max-width: 1163px;
  position: relative;
  margin: -200px auto 0 auto;
  z-index: 2;
  transition: transform 0.1s linear;
}
.menu ul {
  line-height: 72px;
  display: flex;
}
.menu ul li {
  display: flexbox;
  width: 25%;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.menu ul li a {
  color:#fff;
}

.line_frame {
  padding: 30px 45px;
  border-radius: 30px;
  line-height: 1.5;

  background: #FFFFFF;
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(242, 242, 242, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(242, 242, 242, 1) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(242, 242, 242, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#F2F2F2", GradientType=0);
}
.line_txt {
  font-size: 24px;
  font-weight: 500;
  padding-left: 13px;
}

.menu_txt {
  position: relative;
  opacity: 1;
  visibility: visible;transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu_txt li a {
 display: block;
}
.menu_txt li a:hover {
 color:#f0e9e1;
}

.menu_txt.hide {
  opacity: 0;
  visibility: hidden;
}
.mb_menu {
  opacity: 0;
  visibility: hidden;

  display: block;
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 999;
  background-color: #35baca;
}
.mb_logo {
  text-align: center;
  margin: 5px auto;
}
.mb_menutxt {
  margin: 0 auto;
  text-align: center;
  display: flex;
  font-weight: 700;
}
.mb_menutxt li {
  display: flexbox;
  width: 25%;
  text-align: center;
}
.mb_menutxt li a {
  color: #ffffff;
  display: block;
}
.mb_menutxt li a:hover,
.mb_menutxt li a:active,
.mb_menutxt li a:focus {
  color: #ffffff;
  background-color: #8cd0d7;
}
.mb_menu.show {
  opacity: 1;
  visibility: visible;
  animation: easea .5s forwards;
}

@keyframes easea {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1650px) {
  .menu {
    margin: -150px auto 0 auto;
  }
}
@media (max-width: 1480px) {
  .menu {
    margin: -100px auto 0 auto;
  }
  .menu ul {
    line-height: 50px;
  }
}
@media (max-width: 1300px) {
  .menu {
    margin: -50px auto 0 auto;
  }
}
@media (max-width: 1199px) {
  .line_frame {
    padding: 10px 35px;
  }
  .line_frame .img-fluid {
    max-width: 100px;
  }
  .line_txt {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .menu {
    margin: 0px auto 0 auto;
  }
  .menu_txt {
    display: none !important;
  }
  .mb_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
  }
  .mb_menu.show {
    animation: none;
  }
}
@media (max-width: 767px) {
  .mb_logo {
    margin: 0px auto;
  }
  .line_frame .line_qrcode {
    display: block;
    text-align: center;
  }
  .line_txt {
    padding-top: 10px;
    font-size: 18px;
  }
}

/****************************
facebook
****************************/
.facebook h4 {
  margin-top: 20px;
  font-weight: 800;
  color: #00a2b6;
}
.facebook h5 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}
.facebook ol,
.facebook ul {
  margin-left: 30px;
}
.facebook ol > li {
  list-style-type: decimal;
}
.facebook ul {
 list-style-type: disc;
}
ul.hashtag {
  margin:0;
  display: inline;
}
.hashtag li {
  display: inline-block;
  background-color: #da6c8e;
  color: #fff;
  border-radius: 30px;
  padding: 0px 20px;
  margin-bottom: 5px;
}
.facebook ul.nav-pills {
  list-style: none;
  padding:0;
  margin:0;
}

.flower_h5 {
   background: #00a6ba;
   border-top-left-radius: 30px;
   border-top-right-radius: 30px;
   color: #fff;
   line-height: 3;
}
.gift_notice {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
table {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
table th {
  background-color: #aadae0;
  color: #000;
}
table td {
  border: 1px solid #eee;
  padding: 10px;
}
table td img {
  width: 100%;
  display: block;
}
table td span {
  display: block;
  height: 20px;
  font-size: 14px;
  font-weight: 300;
}
table td div div {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 850px) {
  ul.hashtag {
    display: block;
  }

  table th {
    display: none;
  }
  table td {
    display: flex;
    align-items: center;
    width: 100%;
  }
  table td:before {
    content: attr(data-th);
    font-weight: 700;
    width: 50px;
  }
  table td img {
    max-width: 150px;
  }
  table td div {
    text-align: left;
    padding-left: 10px;
    line-height: 1.2;
  }
  table td span {
    height: auto;
  }
  table td div div {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  table td img {
    max-width: 100px;
  }
}

/****************************
discount
****************************/
.discount {
  width: 100%;
  margin-top: 50px;
}
.discount h1 {
  color: #fff;
}
.normal {
  background: #f3f8fa;
  color: #3d4348 !important;
  padding-top: 30px;
  padding-bottom: 30px;
}
.normal h5 {
  font-weight: 700;
  color: #2a3437 !important;
}
.normal p {
  line-height: 1.5;
  font-size: 14px;
}
.h1_txt, .h1_txt2 {
  display: block;
  width: fit-content;
  margin: 0 auto 30px auto;
  padding: 10px 20px;
  line-height: 30px;
  border-radius: 30px;
  background-color: #fff;
  text-align: center;
  color: #00a2b6;

  box-shadow:
  rgba(0, 0, 0, 0.2) 0px 3px;
}
.h1_txt2 {
  background-color: #e35189;
  color: #fff;
}
.countdown {
  text-align: center;
}
.countdown ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.countdown li {
  display: inline-block;
  list-style-type: none;
  color: #fff;
}
.countdown li span {
  display: block;
  /* background: #fff;
  color: #00a2b6; */
  background: #e35189;
  color: #fff;
  border-radius: 5px;
  font-size: 50px;
  line-height: 80px;
  width: 80px;
  font-weight: 700;
}
.hidden {
  display: none;
}

.card-text {
  line-height: 1.3;
  margin-bottom: 2px;
}
.card-desc {
  height: 33px;
  color: #808080;
  line-height: 1.2;
  font-size: 14px;
  overflow: hidden;
}
.txt_price {
  display: inline-flex;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #00a2b6;
  align-items: center;
  }
.txt_price span {
  font-size: 14px;
  font-weight: 400;
  text-decoration:line-through;	
  color: #808080;
}