@charset "UTF-8";
/*網頁全共用設定*/
/*網路字體引用CSS設定*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*思源黑體 套用名字 Noto Sans TC */
/*股溝的ICONFONT*/
/*@import url("https://fonts.googleapis.com/icon?family=Material+Icons");*/
/*font-awesome4-7 iconfont*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
/* =============== base 頁面基本設定 ============ */
html,
body {
  font-family: "Noto Sans TC", "PingFang TC", Microsoft JhengHei, "微軟正黑體", Helvetica, sans-serif;
  position: relative;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
} /*font-size:100%是為將網頁字體設定成16px，這個文字大小設定會連動到下面的body的字體設定唷*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333333;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  word-break: break-all;
}
a:hover, a:focus {
  text-decoration: none;
}

label a {
  display: block;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
  /*image-rendering:-moz-crisp-edges;*/ /* Firefox        */
  image-rendering: -o-crisp-edges; /* Opera          */
  image-rendering: -webkit-optimize-contrast; /* Safari         */
  image-rendering: optimize-contrast; /* CSS3 Proposed  */
  -ms-interpolation-mode: nearest-neighbor; /* IE8+           */
} /*圖片更銳利化*/
/* 應用於GIF和PNG圖片; 防止邊緣模糊 */
img[src$=".gif"],
img[src$=".png"] {
  image-rendering: auto;
}

/* 移除svg 縮放設定 */
button,
a,
input:focus,
button:focus {
  outline: none !important;
} /*連結或點擊的按鈕 不顯示外虛線*/
p {
  margin: 0;
  padding: 0;
  letter-spacing: 1.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.navbar {
  margin: 0 auto;
  padding: 0 15px;
  background: #7813bf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 60px;
}

.nav-logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  max-width: 160px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav-burger {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 30px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

/* 漢堡動畫 */
.nav-burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: -14% 50%;
  transform-origin: -14% 50%;
}

/* 選單樣式 */
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 20px;
  margin: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-menu li {
  margin-bottom: 15px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333333;
  font-size: 1.2rem;
}

/* 展開狀態 */
.nav-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
}

@media screen and (min-width: 600px) {
  .navbar {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 0;
  }
  .nav-burger {
    padding-right: 15px;
  }
}
.header {
  position: relative;
  padding: 1rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url("../img/header-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
}

.header-content-container {
  position: relative;
  display: inline-block;
  /* padding: 2em 3em; */
  z-index: 1;
  width: 95%;
  aspect-ratio: 16/9;
  min-height: 400px;
  margin: 4rem auto 5rem;
}
.header-content-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/header-content-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
}

.header-title {
  margin: 0 auto;
  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;
  height: -webkit-fill-available;
  width: 95%;
  z-index: 5;
}
.header-title img {
  max-width: 100%;
  height: auto;
  z-index: 5;
  position: relative;
  top: 0;
}

.lightning {
  position: absolute;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  width: 23%;
}
.lightning img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 0 6px #fdc500);
  filter: drop-shadow(0 0 6px #fdc500);
}

.lightning-left {
  top: 45%;
  left: -3%;
}

.lightning-right {
  top: 35%;
  right: -7%;
  z-index: 0;
}

.lightning-shape {
  -webkit-animation: flash 0.8s infinite;
  animation: flash 0.8s infinite;
}

.lightning-shape.right {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; /* 讓右閃電延遲啟動 */
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.dot-area {
  z-index: 2;
}

.star {
  position: absolute;
  -webkit-animation: twinkleSize 2.4s ease-in-out infinite;
  animation: twinkleSize 2.4s ease-in-out infinite;
  width: 20px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  display: inline-block;
  opacity: 0;
}

.star:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.star:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.star-item01 {
  top: 40%;
  left: 8%;
}

.star-item02 {
  top: 28%;
  left: 85%;
}

.star-item03 {
  top: 82%;
  left: 45%;
}

@-webkit-keyframes twinkleSize {
  0% {
    opacity: 0.2;
    width: 20px;
  }
  50% {
    opacity: 1;
    width: 30px;
  }
  100% {
    opacity: 0.2;
    width: 20px;
  }
}
@keyframes twinkleSize {
  0% {
    opacity: 0.2;
    width: 20px;
  }
  50% {
    opacity: 1;
    width: 30px;
  }
  100% {
    opacity: 0.2;
    width: 20px;
  }
}
.hddot-item {
  position: absolute;
  display: inline-block;
  top: 0;
}

.hdt-flower {
  width: 11%;
  top: 58%;
  left: 84%;
}

.hdt-smile {
  width: 7%;
  left: 4%;
  z-index: 3;
  top: 28%;
}

.hdt-flower02 {
  width: 15%;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  left: 0%;
  top: 25%;
}

.hdt-flower03 {
  width: 18%;
  top: 78%;
  left: 5%;
}

.hdt-phone {
  width: 38%;
  top: 77%;
  left: 60%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* 跑馬燈 */
.marquee-scroll {
  width: 100%;
  background: #7813bf;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-text {
  display: inline-block;
  padding: 10px 0 15px;
  white-space: nowrap;
  padding-left: 5%;
  max-width: clamp(1696px, 220.8333333333vw, 3180px);
}

.marquee-text span {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 3px 0px 3px #333333;
}

@media screen and (max-width: 330px) {
  .header-content-container {
    width: 95%;
    min-height: 350px;
    margin: 3.5rem auto;
  }
  .header-title {
    width: 88%;
  }
  .hdt-phone {
    top: 78%;
  }
  .marquee-text span {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 400px) {
  .header-content-container {
    width: 95%;
    min-height: 480px;
    margin: 3.5rem auto;
  }
  .header-title {
    width: 88%;
  }
  .hdt-phone {
    top: 75%;
  }
}
@media screen and (min-width: 450px) {
  .header-content-container {
    min-height: 520px;
    margin: 4rem auto;
  }
  .lightning-left {
    top: 48%;
    left: 0%;
  }
  .hdt-phone {
    top: 77%;
  }
}
@media screen and (min-width: 500px) {
  .header-content-container {
    margin: 3.5rem auto;
    min-height: 600px;
  }
  .header-title {
    width: 90%;
  }
}
@media screen and (min-width: 550px) {
  .header-content-container {
    margin: 4rem auto 5.5rem;
  }
}
@media screen and (min-width: 600px) {
  .header {
    padding: 1.5rem 0 2rem;
  }
  .header-content-container {
    max-width: 800px;
    width: 100%;
    min-height: 550px;
    margin: 3rem 0;
  }
  .header-title {
    width: 100%;
  }
  .header-title img {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .star {
    width: 20px;
  }
  .star-item01 {
    top: 40%;
    left: 8%;
  }
  .star-item02 {
    top: 25%;
    left: 85%;
  }
  .star-item03 {
    top: 91%;
    left: 45%;
  }
  .hdt-flower {
    width: 11%;
    top: 58%;
    left: 84%;
  }
  .hdt-smile {
    width: 7%;
    left: 4%;
    z-index: 3;
    top: 25%;
  }
  .hdt-flower02 {
    width: 15%;
    left: 0%;
    top: 22%;
  }
  .hdt-flower03 {
    width: 16%;
    top: 78%;
    left: 5%;
  }
  .hdt-phone {
    width: 35%;
    top: 75%;
    left: 65%;
  }
}
/* =============== 主內容區寬度 ============ */
.wrapper {
  max-width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

/* 內容區 */
.container {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  background: url("../img/event-bg.png") repeat center #ffefdb;
}

.container::-webkit-scrollbar {
  display: none;
}

/* 主內容 */
.main {
  width: 100%;
  position: relative;
}

.section {
  padding: 3rem 0;
}
.section .section-title {
  position: relative;
  margin-bottom: 1.8rem;
}
.section .section-title h2 {
  margin: 0 auto;
  width: 70%;
}

/* --------- section1 活動好禮-------- */
.cards-container {
  position: relative;
  padding: 0 10px;
}
.cards-container .sticky-area {
  position: sticky;
  top: 70px;
  width: 100%;
  margin: 3rem auto 5rem;
  min-height: 70px;
}
.cards-container .cards-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 5rem auto 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 380px;
}
.cards-container .cards-wrapper.wrapper-item01 {
  top: 230px;
  margin-top: 10rem;
}
.cards-container .cards-wrapper.wrapper-item02 {
  top: 240px;
  margin-top: 15rem;
}
.cards-container .cards-wrapper.wrapper-item03 {
  top: 250px;
  margin-top: 15rem;
}
.cards-container .cards-wrapper .cards-item {
  background-color: #fff;
  border: 3px solid #333333;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 15px;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  gap: 10px;
}
.cards-container .cards-wrapper .cards-item::after {
  content: url("../img/dot-smile.svg");
  position: absolute;
  width: 20px;
  height: auto;
  right: 10px;
  bottom: 5px;
}
.cards-container .cards-wrapper .cards-item.cards01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #ffffff), color-stop(30%, #ff6c00));
  background: linear-gradient(to bottom, #ffffff 70%, #ff6c00 30%);
}
.cards-container .cards-wrapper .cards-item.cards02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #ffffff), color-stop(30%, #b677fd));
  background: linear-gradient(to bottom, #ffffff 70%, #b677fd 30%);
}
.cards-container .cards-wrapper .cards-item.cards03 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #ffffff), color-stop(30%, #59dcfd));
  background: linear-gradient(to bottom, #ffffff 70%, #59dcfd 30%);
}
.cards-container .cards-wrapper .cards-item .card-dot {
  width: 50%;
  height: auto;
  top: -100px;
  position: absolute;
  z-index: -1;
}
.cards-container .cards-wrapper .cards-item .card-dot.dot-item02 {
  top: -70px;
}
.cards-container .cards-wrapper .cards-item .cards-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title {
  width: 70vw;
  margin: 0 auto;
  margin-bottom: 20px;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: -10px;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title.card-item-title01 {
  position: relative;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title.card-item-title01::before {
  background: #ff6c00;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title.card-item-title02 {
  position: relative;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title.card-item-title02::before {
  background: #b677fd;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title.card-item-title03 {
  position: relative;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-title.card-item-title03::before {
  background: #59dcfd;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-once {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-once p {
  font-size: 24px;
  font-weight: bold;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.cards-container .cards-wrapper .cards-item .cards-content .card-item-content {
  width: 80vw;
}
.cards-container .cards-wrapper .cards-item .card-gift {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* SVG once */
.bg-rotate {
  transform-box: fill-box;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}

.once-svg {
  overflow: visible;
  max-width: 80px;
  width: 100%;
}

.cls-1 {
  fill: #fff;
  font-family: NotoSansTC-Medium, "Noto Sans TC";
  font-weight: 500;
}

.cls-2 {
  stroke: #030303;
  stroke-width: 2px;
}

.cls-3 {
  font-size: 22px;
  letter-spacing: 0.1em;
}

.cls-4 {
  fill: #030303;
}

.cls-5 {
  font-size: 30px;
  letter-spacing: 0.1em;
}

.svg-bg01 {
  fill: #ff6c00;
}

.svg-bg02 {
  fill: #b677fd;
}

.svg-bg03 {
  fill: #59dcfd;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.event-notice {
  top: 40px;
  position: relative;
  margin-top: 30px;
  padding: 0 20px;
  font-size: 1rem;
}

/* --------- section2 操作影片 -------- */
.title-item02 {
  padding-top: 1.2rem;
}

.video-content {
  position: relative;
  padding: 0 10px;
}
.video-content::after {
  content: "";
  display: block;
  background: url("../img/video-bg.svg") no-repeat center;
  width: 100%;
  height: 0%;
  background-size: 100% auto;
  padding-top: 85%;
}

/* 2. 輪播容器 (.carousel-wrapper) - 影片區 */
.carousel-wrapper {
  position: absolute; /* 相對於 .video-content 定位 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 邊界數值： */
  top: 14.5vw; /* 頂部留給「操作教學」標題 (約 55px) */
  left: 20px; /* 左側邊距 */
  right: 20px; /* 右側邊距 */
  bottom: 65px; /* 底部留出空間給控制項 (.carousel-controls) */
  width: auto;
  height: auto;
  margin: 0;
}

/* 3. 控制項容器 (.carousel-controls) - 按鈕與頁碼區 */
.carousel-controls {
  position: absolute; /* 相對於 .video-content 定位 */
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 邊界數值： */
  top: auto;
  bottom: 20px; /* 底部邊緣留給淺粉色區域 (約 20px) */
  left: 20px;
  right: 20px;
  height: 40px; /* 固定高度，確保內容不被擠壓 */
  /* 佈局：水平 Flexbox */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0;
  padding: 0;
}

/* ================================================= */
/* 4. Swiper 內容修正 (確保填滿絕對定位的父容器) */
/* ================================================= */
.swiper.videoSwiper {
  width: 100%;
  height: auto; /* 填滿 .carousel-wrapper */
}

.swiper-slide {
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.slide-column {
  height: 100%;
}

/* 由於父容器高度已定，影片應填滿高度 */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 auto;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.video-iframe-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.play-button:hover {
  background-color: rgb(255, 255, 255);
}

/* -------------------------------------- */
/* 5. 控制項樣式 (保持原樣，確保佈局正確) */
/* -------------------------------------- */
.moreBtn {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  top: 47.5vw;
  text-align: center;
}

.learn-more-btn {
  background-color: #ffba00;
  color: #333333;
  border: none;
  padding: 2px 20px 5px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  width: auto;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  text-decoration: none;
}

.pagination-btn {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: end !important;
  padding: 0 15px;
  top: 57vw;
  text-align: end;
}

.pagination-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: auto;
}

#learnMoreBtn.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.arrow-btn {
  background: none; /* 沒有背景顏色 */
  border: none; /* 沒有邊框 */
  font-size: 30px; /* 箭頭符號的大小 */
  cursor: pointer; /* 鼠標懸停時顯示為指標 */
  padding: 0 5px; /* 左右邊距 */
  opacity: 1; /* 預設完全不透明 */
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: #333333;
  font-weight: bold;
}

/* 額外樣式：當箭頭不可用時（例如到第一頁或最後一頁） */
.swiper-button-disabled {
  opacity: 0.3; /* 變為半透明 */
  cursor: default;
}

/* --------- section3 注意事項 -------- */
.noticeArea {
  position: relative;
  padding: 0 20px;
}
.noticeArea .notice-content {
  padding: 0 10px;
  background-color: #fff;
  border: 3px solid #333333;
  border-radius: 20px;
}
.noticeArea .notice-content .notice-content_list {
  padding: 10px;
}
.noticeArea .notice-content .notice-content_list li {
  list-style: none;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  margin: 0.5rem auto;
}
.noticeArea .notice-content .notice-content_list li .list-num {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 1rem;
}
.noticeArea .notice-content .notice-content_list li .list-content {
  display: block;
}
.noticeArea .notice-content .notice-content_list li ul.inner-list {
  margin: 0 auto;
}
.noticeArea .notice-content .notice-content_list li ul.inner-list li {
  position: relative;
  padding-left: 2rem;
  display: block;
}
.noticeArea .notice-content .notice-content_list li ul.inner-list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 0.625rem;
  left: 0.4rem;
}
.noticeArea .notice-content .notice-content_list li.event-target {
  display: block;
}
.noticeArea .notice-content .notice-content_list li.event-target .event-target_content {
  padding-left: 1.8rem;
}

details > summary:first-of-type {
  list-style-type: none;
}

/* 1. 隱藏預設圖案 */
details summary::marker {
  /* 設置為 'content: none' 可以移除預設的三角形/箭頭 */
  content: none;
}

/* 2. 透過 ::before 偽元素添加自定義圖案 (例如：箭頭) */
details summary::before {
  content: url("../img/eye.svg");
  display: block;
  position: absolute;
  height: auto;
  right: 19vw;
  top: 23px;
  display: inline-block;
  width: 4.5em; /* 保持圖案寬度一致 */
  margin-right: 0.5em;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s; /* 讓圖案旋轉時有動畫效果 */
}

/* 3. 當 <details> 展開時，旋轉圖案 */
details[open] summary::before {
  content: url("../img/eye-down.svg");
}

/* 可選：讓滑鼠游標更好看 */
details summary {
  cursor: pointer;
  padding: 5px 0;
  list-style: none; /* 再次確保所有瀏覽器都禁用預設標記 */
}

.section-title.notice-title {
  margin-bottom: 1rem;
  position: relative;
}
.section-title.notice-title::after {
  content: "點我看更多";
  display: block;
  font-size: 20px;
  text-align: center;
}
.section-title.notice-title h2 {
  width: 80%;
}

/* --------- 內容小花 + 裝飾花園 -------- */
.content-dot {
  padding-bottom: 0 !important;
  position: relative;
  margin-top: 2rem;
  bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
}
.content-dot_inner {
  width: auto;
  height: 30px;
  background-color: #67e1b2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 20px;
}
.content-dot_inner .dot-bee {
  width: 5%;
  padding-bottom: 20px;
  padding-left: 15px;
}
.content-dot_inner .dot-flower {
  width: 15%;
  padding-bottom: 10px;
  padding-right: 40px;
}

.content-footer {
  padding-bottom: 0 !important;
  position: relative;
  margin-top: 6rem;
}
.content-footer_dot {
  width: 100%;
  height: 30px;
  background-color: #67e1b2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.content-footer_dot .dot-grass {
  width: 15%;
  padding-bottom: 12px;
}
.content-footer_dot .dot-sunflower {
  width: 20%;
  padding-bottom: 10px;
}

.dot-grass.grass02 {
  padding-bottom: 22px;
}

.full-left,
.full-right {
  display: none;
}

/* 搖擺小花 */
.sway-container svg .cls-1 {
  fill: #040000;
}
.sway-container svg .cls-2 {
  fill: #fff;
}
.sway-container svg .cls-3 {
  fill: #317055;
}
.sway-container svg .cls-4 {
  fill: #f2b518;
}

.sway-flower {
  display: inline-block;
  -webkit-animation: sway 2s infinite ease-in-out;
  animation: sway 2s infinite ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}

/* 裝置由小至大 */
/* --------- breakpoints -------- */
@media screen and (max-width: 330px) {
  /* --------- section1 活動好禮-------- */
  .cards-container .cards-wrapper.wrapper-item01 {
    top: 220px;
  }
  .cards-container .cards-wrapper.wrapper-item02 {
    top: 230px;
  }
  .cards-container .cards-wrapper.wrapper-item03 {
    top: 240px;
  }
  .cards-container .cards-wrapper .card-dot {
    top: -80px !important;
  }
  .cards-container .cards-wrapper .card-dot.dot-item02 {
    top: -60px !important;
  }
  /* --------- section3 注意事項 -------- */
  details summary::before {
    right: 20vw;
    top: 7vw;
    width: 4em;
  }
  /* --------- 內容小花 + 裝飾花園 -------- */
}
@media screen and (min-width: 400px) {
  /* --------- section1 活動好禮-------- */
  .cards-container .cards-wrapper.wrapper-item01 {
    top: 250px;
  }
  .cards-container .cards-wrapper.wrapper-item02 {
    top: 260px;
  }
  .cards-container .cards-wrapper.wrapper-item03 {
    top: 270px;
  }
  .cards-container .cards-wrapper .card-dot {
    top: -110px !important;
  }
  .cards-container .cards-wrapper .card-dot.dot-item02 {
    top: -80px !important;
  }
  /* --------- section2 操作影片-------- */
  .moreBtn {
    top: 51.5vw;
  }
  .pagination-btn {
    top: 59vw;
  }
  /* --------- section3 注意事項 -------- */
  details summary::before {
    right: 20vw;
    top: 7vw;
    width: 18vw;
  }
}
@media screen and (min-width: 450px) {
  .section .section-title h2 {
    width: 60%;
  }
  /* --------- section1 活動好禮-------- */
  .cards-container .cards-wrapper .card-dot {
    top: -130px !important;
  }
  .cards-container .cards-wrapper .card-dot.dot-item02 {
    top: -90px !important;
  }
  /* --------- section2 操作影片-------- */
  .moreBtn {
    top: 50.5vw;
  }
  .pagination-btn {
    top: 60vw;
  }
  /* --------- section3 注意事項 -------- */
  details summary::before {
    right: 25.5vw;
    top: 5.5vw;
    width: 5em;
  }
  .content-footer {
    margin-top: 10rem;
  }
  /* --------- 內容小花 + 裝飾花園 -------- */
}
@media screen and (min-width: 500px) {
  /* ---------section1 活動好禮 -------- */
  .cards-container .cards-wrapper {
    width: 85%;
  }
  .cards-container .cards-wrapper.wrapper-item01 {
    top: 250px;
    margin-top: 15rem;
  }
  .cards-container .cards-wrapper.wrapper-item02 {
    top: 260px;
    margin-top: 10rem;
  }
  .cards-container .cards-wrapper.wrapper-item03 {
    top: 270px;
    margin-top: 10rem;
  }
  .cards-container .cards-wrapper .cards-item .card-dot {
    width: 40%;
    top: -90px !important;
  }
  .cards-container .cards-wrapper .cards-item .card-dot.dot-item02 {
    top: -70px !important;
  }
  .cards-container .cards-wrapper .cards-item .cards-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-title {
    width: 60vw;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-once {
    gap: 15px;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-item-content {
    width: 60vw;
  }
}
@media screen and (min-width: 600px) {
  .wrapper {
    overflow: clip;
  }
  .full-container-pc {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: url("../img/event-bg.png") repeat center #ffefdb;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .full-container-pc::before {
    content: "";
    background-color: #67e1b2;
    width: 100%;
    height: 40px;
    position: fixed;
    bottom: 0;
  }
  .container {
    max-width: 600px;
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px 5px #adadad;
    box-shadow: 0px 0px 20px 5px #adadad;
    margin: 0 0;
  }
  .section .section-title h2 {
    width: 50%;
  }
  /* --------- section1 活動好禮 -------- */
  .cards-container {
    padding: 0 20px;
  }
  .cards-container .sticky-area {
    top: 70px;
    margin: 0 auto;
    margin-bottom: 10%;
  }
  .cards-container .cards-wrapper {
    top: 0;
    width: 100%;
    margin: 5rem auto 3rem;
    min-height: 280px;
  }
  .cards-container .cards-wrapper.wrapper-item01 {
    top: 280px !important;
    margin-top: 15rem;
  }
  .cards-container .cards-wrapper.wrapper-item02 {
    top: 290px !important;
  }
  .cards-container .cards-wrapper.wrapper-item03 {
    top: 300px !important;
  }
  .cards-container .cards-wrapper .cards-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .cards-container .cards-wrapper .cards-item::after {
    width: 20px;
    right: 10px;
    bottom: 5px;
  }
  .cards-container .cards-wrapper .cards-item.cards01 {
    background: -webkit-gradient(linear, left top, right top, color-stop(70%, #ffffff), color-stop(30%, #ff6c00));
    background: linear-gradient(to right, #ffffff 70%, #ff6c00 30%);
  }
  .cards-container .cards-wrapper .cards-item.cards02 {
    background: -webkit-gradient(linear, left top, right top, color-stop(70%, #ffffff), color-stop(30%, #b677fd));
    background: linear-gradient(to right, #ffffff 70%, #b677fd 30%);
  }
  .cards-container .cards-wrapper .cards-item.cards03 {
    background: -webkit-gradient(linear, left top, right top, color-stop(70%, #ffffff), color-stop(30%, #59dcfd));
    background: linear-gradient(to right, #ffffff 70%, #59dcfd 30%);
  }
  .cards-container .cards-wrapper .cards-item .card-dot {
    width: 35%;
    top: -115px !important;
  }
  .cards-container .cards-wrapper .cards-item .card-dot.dot-item02 {
    top: -80px !important;
  }
  .cards-container .cards-wrapper .cards-item .cards-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-title {
    width: 280px;
    margin: 0 0;
    margin-bottom: 15px;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-title::before {
    height: 8px;
    bottom: -10px;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-once {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-once p {
    font-size: 24px;
    font-weight: bold;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .cards-container .cards-wrapper .cards-item .cards-content .card-item-content {
    width: 300px;
  }
  .cards-container .section-title.unstick {
    position: static;
  }
  /* --------- section2 操作影片 -------- */
  .video-content {
    padding: 0 20px;
  }
  .carousel-wrapper {
    top: 85px;
  }
  .video-wrapper {
    max-width: 400px;
  }
  .moreBtn {
    justify-self: center;
    top: 320px;
    text-align: center;
  }
  .pagination-btn {
    top: 360px;
    text-align: end;
  }
  .pagination-area {
    font-size: 22px;
  }
  /* --------- section3 注意事項 -------- */
  details summary::before {
    right: 29.5%;
    top: 27px;
    width: 5.2em; /* 保持圖案寬度一致 */
  }
  /* --------- 內容小花 -------- */
  .content-footer_dot .dot-grass {
    width: 10%;
  }
  .content-footer_dot .dot-sunflower {
    width: 15%;
  }
}
@media screen and (min-width: 1000px) {
  /* --------- 桌機左 -------- */
  .full-left,
  .full-right {
    position: relative !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  /* --------- 桌機右 -------- */
  .dot-sun {
    top: 0;
    width: 80%;
    height: 150px;
    right: 50px;
  }
}
@media screen and (min-width: 1250px) {
  /* --------- 桌機左 -------- */
  .full-left,
  .full-right {
    position: relative !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .full-dot img.dot-sunflowerPeople {
    position: fixed;
    width: 15vw;
    height: auto;
    bottom: 0;
    left: 8vw;
    z-index: 1;
  }
  .full-dot img.dot-sunflowerPeople-hand {
    position: fixed;
    width: 7vw;
    height: auto;
    bottom: 7vw;
    left: 18.5vw;
    -webkit-animation: waveUpDown 2s ease-in-out infinite;
            animation: waveUpDown 2s ease-in-out infinite;
  }
  @-webkit-keyframes waveUpDown {
    0% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(-10deg);
              transform: translateY(-15px) rotate(-10deg);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
    }
  }
  @keyframes waveUpDown {
    0% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(-10deg);
              transform: translateY(-15px) rotate(-10deg);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0deg);
              transform: translateY(0) rotate(0deg);
    }
  }
  /* --------- 桌機右 -------- */
  .right-zone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .right-item {
    position: fixed !important;
    width: 15vw;
    -ms-flex-line-pack: center;
    align-content: center;
    right: 8%;
    top: 25%;
  }
  .full-right_item {
    margin: 2rem auto;
  }
  .full-right_item:hover {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    -webkit-transition-duration: 100ms;
    transition-duration: 100ms;
  }
  .dot-sun {
    position: fixed;
    top: 2.5%;
    width: 11.5%;
    height: 180px;
    right: 10%;
  }
}
/* =============== footer============ */
footer.footer {
  text-align: left;
  font-size: 14px;
}
footer.footer p {
  padding: 20px;
}
footer.footer .ft-notice {
  background-color: #67e1b2;
}
footer.footer .ft-notice p {
  color: #333333;
}
footer.footer .ft-notice a {
  text-decoration: underline;
}
footer.footer .ft-copyr {
  background-color: #7813bf;
}
footer.footer .ft-copyr p {
  color: #fff;
}

/* --------- breakpoints -------- */
/* =============== 返回頂部 ============ */
.go-top {
  display: none;
  position: fixed;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  cursor: pointer;
  width: 45px;
  z-index: 999;
  bottom: 150px;
  right: 5%;
}

@media screen and (min-width: 600px) {
  .go-top {
    right: calc(50% - 300px + 20px);
    /* 50%：視窗中心
       -300px：往左半個 600px
       +20px：保留邊距 */
  }
}
.fixed-menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
  display: none;
}
.fixed-menu .fixed-menu_inner {
  width: 100%;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.fixed-menu .fixed-menu_inner .ftball {
  width: 12%;
  height: 100%;
  position: absolute;
  top: -2.5vw;
  left: 38vw;
  margin: 0 auto;
}
.fixed-menu .fixed-menu_inner .fixed-menu_link {
  text-align: center;
  padding: 15px;
}
.fixed-menu .fixed-menu_inner .fixed-menu_link img {
  width: 40vw;
}
.fixed-menu .fixed-menu_inner a.item01 {
  width: 50%;
  background-color: #7813bf;
}
.fixed-menu .fixed-menu_inner a.item02 {
  width: 50%;
  background-color: #cc88fc;
}

/* --------- breakpoints -------- */
@media screen and (max-width: 400px) {
  .fixed-menu .fixed-menu_inner {
    height: 3.2rem;
  }
  .fixed-menu .fixed-menu_inner .fixed-menu_link img {
    width: 100% !important;
  }
}
@media screen and (min-width: 600px) {
  .fixed-menu {
    max-width: 600px;
    width: 100%;
  }
  .fixed-menu .fixed-menu_inner {
    height: 4.8rem;
  }
  .fixed-menu .fixed-menu_inner .ftball {
    top: -10px;
    left: 240px;
  }
  .fixed-menu .fixed-menu_link img {
    width: 85% !important;
  }
}/*# sourceMappingURL=style.css.map */