* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

html,
body {
  font-family: "PingFang-TC", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0;
  position: relative;
  /* background-image: url(../img/bg/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #b8d8ec;
  background-attachment: fixed;
  background-position: bottom; */
}

button,
button:active,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* nav ========================================== */
.navbar {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  border-bottom: 3px solid #f1f1f1;
}

.logo {
  width: 130px;
  margin-left: 1rem;
}

.PcMenu .nav-link {
  color: #3B3B3B !important;
}

.offcanvas-end {
  width: 100%;
}

.MobileMenu {
  display: none;
  text-align: center;
}

.MobileMenu .nav-item {
  border: 0;
}

.MobileMenu .nav-link {
  color: #3B3B3B !important;
  border-bottom: 0;
  display: inline-block;
  font-weight: 400;
  /* margin: 0 10px; */
  padding: 0.5rem 0.75rem;
}

.MobileMenu .nav-link img {
  display: inline-block;
  width: 15px;
  margin-left: 3px;
}

.MobileMenu .nav-link:hover {
  font-weight: 500;
  color: #100a00;
}

.MobileMenu .nav-link:hover img {
  transform: scale(1.5);
  padding-left: 3px;
}

.nav-item button {
  background-color: unset;
  border: 0;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;..");
}

@media (max-width: 768px) {
  .MobileMenu {
    display: block !important;
  }

  .MobileMenu .nav-item {
    border-bottom: 2px solid #f1f1f1;
  }

  .MobileMenu .nav-link {
    color: #3B3B3B !important;
    padding: 1rem 0;
  }
}

@media (width: 768px) {
  .MobileMenu {
    display: flex !important;
  }

  .MobileMenu .nav-link {
    color: #3B3B3B !important;
    padding: 0 .5rem;
  }

  .MobileMenu .nav-item {
    border-bottom: 0px;
  }
}



/* section 全區域 ========================================== */
section {
  z-index: 99;
  position: relative;
  padding: 2rem 0;
  /* min-height: 100vh; */
}

section .container-xl {
  padding: 4rem;
  max-width: 1200px;
  z-index: 1;
}

section h2 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  font-style:italic;
}

section h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1rem;
  display: block;
}

section h4 {
  text-align: center;
  color: #999999;
  font-weight: 400;
  line-height: 2rem;
}

.SectionNote {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #999999;
  margin-top: 3rem;
}

.SectionNote li {
  list-style: disc;
}

a.GoPageSection {
  color: #2e7dd9;
  text-align: center;
  transition: .5s;
  margin: 0 10px;
}

a.GoPageSection {
  font-size: 15px;
}

a.GoPageSection img {
  width: 20px;
}

a.GoPageSection:hover img {
  transform: scale(1.1);
}

a.OpenModal {
  color: #2e7dd9;
  text-align: center;
  transition: .5s;
}

a.OpenModal:hover {
  text-decoration: underline;
}

.font-d7003f {
  color: #d7003f;
}

.border-FFC5D6 {
  border-left: 10px solid #FFC5D6;
}

.border-F24C6E {
  border-left: 10px solid #F24C6E;
}

.border-d7003f {
  border-left: 10px solid #d7003f;
}

.background-FFC5D6 {
  background-color: #FFC5D6;
}

.background-F24C6E {
  background-color: #F24C6E;
}

.background-d7003f {
  background-color: #d7003f;
}

.font-ffffff {
  color: #ffffff;
}

.reveal {
  position: relative;
  transform: translateY(80px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(-20px);
  opacity: 1;
}

.reveal-up {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.goTop {
  position: fixed;
  z-index: 999;
  margin-bottom: 52px;
  margin-right: 2.5rem;
  bottom: 0;
  right: 0;
}

.goTop button {
  background-color: #c2c2c2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  color: #ffffff;
  opacity: 0.5;
  display: block;
  margin: 1rem auto 0 auto;
}

.goTop button:hover {
  opacity: 1;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-20 {
  width: 7rem;
}

.JoinBtn {
  animation: scaleBig 1s;
    animation-iteration-count: infinite;
}


@media (max-width: 1024px) {
  section .container-xl {
    max-width: 800px;
  }

  .goTop {
    margin-right: 1rem;
  }

  .goTop button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 425px) {
  section h2 {
    font-size: 2.5rem;
  }
  .w-20 {
    width: 5rem;
  }
}

@media (max-width: 375px) {
  section h2 {
    font-size: 2rem;
  }

  section h3 {
    font-size: 1.5rem;
  }

  section h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}


/* 主視覺 ========================================== */

#secArea {
  text-align: center;
  position: relative;
  padding: 3rem 0;
  margin-bottom: 0;
}

#secArea .container-xl {
  margin-top: 2rem;
}

#secArea h2 {
  text-align: left;
  color: #ffffff;
}

#secArea h2.mobile {
  display: none;
}

#secArea h2.pc {
  margin-bottom: 4rem;
}

#secArea .goDownloadApp {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  border-radius: 40px;
  background-color: #100a00;
  color: #ffffff;
  padding: 1rem;
  font-size: 1.5rem;
  transition: 1s;
  font-weight: 900;
  animation: scaleBig 1s;
  animation-iteration-count: infinite;
  margin: 1rem;
}

.JoinUs:hover {
  background-color: #ffffff;
  color: #100a00;
  border: 2px solid #100a00;
}

.JoinUs {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  border-radius: 40px;
  background-color: #100a00;
  color: #ffffff;
  padding: 1rem;
  font-size: 1.5rem;
  transition: 1s;
  font-weight: 900;
  animation: scaleBig 1s;
  animation-iteration-count: infinite;
  margin: 1rem;
}

#secArea .goDownloadApp:hover {
  background-color: #ffffff;
  color: #100a00;
}

.secArea1 {
  width: 50%;
  margin: 0 auto;
  animation: scaleBig .5s;
  animation-iteration-count: infinite;
}

.secArea2 {
  width: 80%;
  transform: translateY(-20px);
}

.secArea3 {
  width: 80%;
  margin-left: 20%;
  transform: translateY(-50px);
  animation: fadeRightIn .5s;
}

.secArea4 {
  width: 80%;
  margin-left: 28%;
  transform: translateY(-80px);
  animation: fadeLefttIn .5s;
}

.secArea5 {
  width: 80%;
  margin-left: 25%;
  transform: translateY(-100px);
  animation: moveUpDown 3s;
  animation-iteration-count: infinite;
}

.secArea6 {
  width: 20%;
  position: absolute;
  bottom: 45%;
  right: 10%;
  animation: scaleBig .5s;
  animation-iteration-count: infinite;
}

@keyframes scaleBig {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes moveUpDown {
  0% {
    bottom: -30px;
  }

  50% {
    bottom: 0px;
  }

  100% {
    bottom: -30px;
  }
}

.fadeRightIn {
  animation-name: fadeRightIn;
  -webkit-animation-name: fadeRightIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeRightIn {
  0% {
    right: -200px;
    opacity: 0;
  }

  100% {
    right: 0;
    opacity: 1;
  }
}

.fadeLefttIn {
  animation-name: fadeLefttIn;
  -webkit-animation-name: fadeLefttIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeLefttIn {
  0% {
    left: -200px;
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  #secArea .container-xl {
    max-width: 960px;
  }

  .secArea1 {
    width: 60%;
  }

  .secArea2 {
    transform: translateY(-15px);
  }

  .secArea3 {
    transform: translateY(-45px);
  }

  .secArea4 {
    transform: translateY(-65px);
  }

  .secArea5 {
    transform: translateY(-80px);
  }

  .secArea6 {
    bottom: 43%;
  }
}

@media (max-width: 768px) {
  #secArea .goDownloadApp {
    font-size: 1.25rem;
    max-width: 200px;
  }

  .secArea1 {
    width: 60%;
  }

  .secArea2 {
    transform: translateY(-10px);
  }

  .secArea3 {
    transform: translateY(-25px);
  }

  .secArea4 {
    transform: translateY(-30px);
  }

  .secArea5 {
    transform: translateY(-40px);
  }

  .secArea6 {
    bottom: 38%;
  }
}


@media (max-width: 575px) {
  #secArea .container-xl {
    margin-top: 0rem;
  }

  .secArea1 {
    width: 60%;
  }

  .secArea2 {
    transform: translateY(-15px);
  }

  .secArea3 {
    margin-left: -10%;
    transform: translateY(-40px);
  }

  .secArea4 {
    margin-left: 15%;
    transform: translateY(-65px);
  }

  .secArea5 {
    margin-left: 0;
    transform: translateY(-55px);
  }

  .secArea6 {
    bottom: 35%;
    right: 20%;
    width: 25%;
  }

  #secArea .goDownloadApp {
    margin: 0.5rem;
    font-size: 1rem;
    max-width: 150px;
  }
}

@media (max-width: 425px) {
  .secArea3 {
    margin-left: -10%;
    transform: translateY(-35px);
  }

  .secArea4 {
    margin-left: 15%;
    transform: translateY(-50px);
  }

  #secArea .goDownloadApp {
    max-width: 120px;
  }
}

@media (max-width: 375px) {
  .secArea3 {
    margin-left: -10%;
    transform: translateY(-30px);
  }

  .secArea4 {
    margin-left: 15%;
    transform: translateY(-40px);
  }

  #secArea .goDownloadApp {
    max-width: 120px;
  }
}


/* 最新活動 ========================================== */
.event {
  margin: 3rem 0;
}

.eventBox {
  border: 2px solid #f1f1f1;
  border-radius: 20px;
  transition: 1s;
  margin-bottom: 1rem;
}

.eventBox:hover {
  transform: scale(1.05);
}

.eventBox img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.eventTime {
  font-weight: 400;
  line-height: 24px;
  margin: 1rem;
  color: #999999;
  border-left: 5px solid #d7003f;
  padding-left: 10px;
}

.eventDescription {
  font-weight: 400;
  margin: 1rem;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 72px;
}

/* APP主要頁面 ========================================== */
#carouselControlsNoTouching .carousel-inner {
  margin: 0 auto;
  width: 80%;
}

#carouselControlsNoTouching .carousel-inner .AppFunctionPhoneImg {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.MainPageTitle {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 0 auto;
}

.MainPageTitle>img {
  max-width: 135px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

#carouselControlsNoTouching h4 {
  line-height: 2rem;
  margin-bottom: 0;
}

@media (max-width: 425px) {
  .MainPageTitle {
    font-size: 2.25rem;
  }
}

@media (max-width: 375px) {
  .MainPageTitle {
    font-size: 2rem;
  }
}


/* APP功能介紹 ========================================== */
.carousel-indicators {
  position: relative;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 70px;
  height: fit-content;
  text-indent: unset;
  margin: 0;
  transform: scale(0.9);
}

.carousel-indicators .active {
  transform: scale(1);
}

.carousel-indicators .active p {
  border-bottom: 2px solid #d7003f;
}

.carousel-indicators>div {
  padding: 0;
}

.carousel-control-prev-icon {
  background-image: url(../img/icon/carousel-control-prev-icon.svg);
}

.carousel-control-next-icon {
  background-image: url(../img/icon/carousel-control-next-icon.svg);
}

.AppFunction {
  text-align: center;
}

.AppFunctionPhone {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}

.AppFunction p {
  margin-top: 5px;
  font-weight: 700;
  color: #3B3B3B;
  font-size: 1rem;
}

.AppFunction>div {
  margin: 1.5rem auto;
}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 375px) {
  .AppFunction>div {
    margin: 1rem auto;
  }

  .AppFunctionIcon {
    max-width: 45px;
    margin: 0 auto;
  }

  .AppFunction p {
    font-size: 13px;
  }
}





/* 薪資待遇 ========================================== */
.Pay {
  margin: 3rem 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.PayTitle {
  padding-left: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: left;
  border-left: 10px solid #F24C6E;
}

.Pay p {
  color: #666666;
  text-align: left;
  margin-bottom: 1rem;
  line-height: 32px;
  font-size: 1rem;
}

.Pay td {
  padding: 2rem;
  vertical-align: top;
}

.TabNote {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}


/* employee benefit ========================================== */
.EmployeeBenefit {
  text-align: center;
  margin: 3rem 0;
}

.EmployeeBenefit>div {
  padding: 0 1.5rem;
}

.EmployeeBenefitTitle {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: .5rem;
  color: #1A1A1A;
}

.EmployeeBenefit p {
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 32px;
  font-size: 15px;
}

.EmployeeBenefit img {
  max-width: 120px;
  width: 100%;
  animation: EmployeeBenefitImgMove 3s;
  animation-iteration-count: infinite;
  position: relative;
  margin-bottom: 1rem;
}

.redLine {
  width: 10px;
  height:5px;
  background-color: #d7003f;
  margin: 0 auto;
  margin-bottom: .5rem;
}

@keyframes EmployeeBenefitImgMove {
  0% {
    top: 0px;
  }

  50% {
    top: 10px;
  }

  100% {
    top: 0px;
  }
}

@media (max-width: 576px) {}

@media (max-width: 425px) {}









/* 下載APP ========================================== */

#sec6 {
  background-image: url(../img/bg/DownloadBg.jpg);
  background-repeat: repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  text-align: center;
  position: relative;
  padding: 3rem 0;
  margin-bottom: 0;
}

#sec6 .container-xl {
  margin-top: 3rem;
}

#sec6 h2 {
  text-align: left;
  color: #ffffff;
}

#sec6 h2.mobile {
  display: none;
}

#sec6 h2.pc {
  margin-bottom: 4rem;
}

.DownloadQrcode {
  max-width: 300px;
  padding: 1rem;
}

.DownloadStore {
  max-width: 300px;
  width: 100%;
  display: inline-block;
}

.DownloadNote {
  text-align: left;
  color: #ffffff;
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.goDownloadApp {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  border-radius: 40px;
  background-color: #100a00;
  color: #ffffff;
  padding: 1rem;
  font-size: 1.5rem;
  transition: 1s;
  font-weight: 900;
  animation: scaleBig 1s;
  animation-iteration-count: infinite;
  margin: 1rem;
}

.goDownloadApp:hover {
  background-color: #ffffff;
  color: #100a00;
}

@keyframes scaleBig {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}




@media (max-width: 576px) {
  #sec6 h2.mobile {
    display: block;
  }

  #sec6 h2.pc {
    display: none;
  }

  .DownloadQrcode {
    display: none;
  }

  .DownloadStore {
    width: 49%;
    margin-top: 2rem;
  }

  #sec6 .container-xl {
    margin-top: 0rem;
  }
}



/* 使用教學 ========================================== */
.nav-tabs {
  border: 0;
}

.nav-tabs li a {
  border-radius: 40px;
  border: 2px solid #100a00;
  color: #100a00;
  margin: 5px;
  display: block;
  padding: 0.5rem 1rem;
}

.nav-tabs a.active {
  border: 2px solid #100a00;
  color: #ffffff;
  background-color: #100a00;
}

.tab-content {
  padding-top: 70px;
}

.InstructionsBox {
  border: 2px solid #ffffff;
  padding: 10px;
  text-align: center;
  background-color: #f1f1f1;
}

.InstructionsBox img {
  width: 100%;
  max-width: 280px;
  margin-top: 1rem;
}

.InstructionsBox .step {
  border-left: 10px solid #d7003f;
  padding-left: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 1rem;
  text-align: left;
  margin-left: 1rem;
}

.InstructionsBox .note {
  text-align: left;
  margin: 1rem;
}



/* 常見問題 ========================================== */
.FAQ {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-button {
  font-size: 1.1rem;
}

.accordion-button::after {
  background-image: url(../img/icon/accordion-button.svg);
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/icon/accordion-button.svg);
}

.accordion-button:not(.collapsed) {
  color: #100a00;
  background-color: #f1f1f1;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
  background-color: #f1f1f1;
}

.accordion-body {
  color: #666666;
  padding: 1.5rem 1.25rem;
}

span.question {
  font-size: 2rem;
  color: #d7003f;
  font-weight: 500;
  margin-right: 10px;
}

/* footer ========================================== */
footer {
  background-color: #f1f1f1;
  position: absolute;
  left: 0;
  right: 0;
  /* bottom: 0; */
  text-align: center;
  padding: 0.75rem 0.5rem;
  display: block;
  z-index: 1;
  font-size: 0.9rem;
}

footer a.socialMedia {
  width: 56px;
  height: 56px;
  line-height: 36px;
  border: 0;
  padding: .5rem;
}