* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 13px;
  font-family: "Microsoft Jhenghei", sans-serif;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

p,
li {
  margin-bottom: 5px;
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

.wrapper {
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.logo-bg-outer {
  background: #fff;
  text-align: left;
}

.logo-bg {
  width: 100%;
}

.logo-bg img {
  display: inline;
}

.logo1 {
  float: left;
}

.kv {
  position: relative;
  background: #a189f7 url("../images/kv-bg.png") no-repeat top/100%;
  padding-bottom: 15%;
  background-attachment: fixed;
  z-index: 1;
}

.kv-heart {
  width: 45%;
  padding-top: 3%;
}

.kv-title {
  position: absolute;
  width: 43%;
  left: 30%;
  top: 9%;
}

.kv-subtitle {
  position: absolute;
  width: 23%;
  left: 13%;
  top: 5%;
}

.kv-people {
  position: absolute;
  width: 68%;
  left: 16%;
  top: 40%;
}

.kv-coin {
  position: absolute;
}
.kv-coin.coin1 {
  width: 7%;
  left: 18%;
  top: 26%;
  animation: shake 1s ease-in-out infinite;
}
.kv-coin.coin2 {
  width: 4%;
  right: 20%;
  top: 30%;
  animation: shake 1s 0.5s ease-in-out infinite;
}

.fix-btn {
  position: fixed;
  z-index: 9999;
  top: calc(100% - 220px);
  right: 5%;
  filter: drop-shadow(0px 0px 8px #fff);
  transition: 0.5s linear;
}
.fix-btn img {
  width: 80%;
  max-width: 160px;
  animation: heartBeat 1.5s ease-in-out infinite;
}

.img-m {
  display: none;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.05);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
:root {
  --animate-delay: 0.5s;
}

.content {
  width: 100%;
  position: relative;
  padding-bottom: 5%;
  background: #F2EBFD;
  background-attachment: fixed;
  z-index: 99;
}
.content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transform: translateY(-99%);
  width: 100%;
  padding-bottom: 15%;
  background: url("../images/sec-before.png") bottom/100% no-repeat;
  z-index: 99;
}

.section {
  margin: 0 auto;
  padding: 2% 0 5%;
  position: relative;
}
.section .pic {
  width: 90%;
  max-width: 1300px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 5%;
}
.btn-group img {
  width: 100%;
  max-width: 450px;
}

.bankee {
  margin: 0 auto;
  padding: 5% 0;
  background-color: #5532B0;
}
.bankee .pic {
  width: 100%;
  max-width: 1300px;
}
.bankee .bankee-more {
  display: block;
  width: 100%;
  max-width: 1300px;
  margin: 10px auto 40px;
}
.bankee .bankee-more img {
  width: 35%;
  margin-left: 55%;
}

.sec-btn img {
  width: 80%;
  max-width: 450px;
  animation: click 1s linear infinite;
}

.accordion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
.accordion > li {
  margin-bottom: 20px;
}
.accordion .accordion_header {
  display: table;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  padding: 20px 48px 20px 20px;
  border-radius: 10px;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  position: relative;
  cursor: pointer;
}
.accordion .accordion_header i {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  transform: translateY(-50%) rotateX(0deg);
  top: 50%;
  right: 20px;
  background: url("../images/i_arrow.svg") no-repeat center/100%;
}
.accordion .accordion_header.active {
  border-bottom: 1px solid #C9C9C9;
  border-radius: 10px 10px 0 0;
  transition-delay: 0s;
  transition-duration: 0;
}
.accordion .accordion_header.active i {
  transform: translateY(-50%) rotateX(180deg);
}
.accordion .accordion_header span {
  display: table-cell;
  text-align: left;
}
.accordion .accordion_header .q_num {
  color: #7B34C6;
  width: 48px;
}
.accordion .accordion_content {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  text-align: left;
  display: none;
}
.accordion .accordion_content a {
  color: #7B34C6;
  font-weight: bold;
  word-break: break-word;
}
.accordion .accordion_content div {
  padding: 24px;
}

@keyframes click {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.notebg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn-collapse {
  display: block;
  padding: 20px 25px;
  background: transparent;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}
.btn-collapse > span:nth-child(1) {
  display: inline-flex;
  align-items: center;
}
.btn-collapse .icon {
  font-size: 30px;
  margin-left: 4px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
}
.btn-collapse .minus {
  display: none;
}
.btn-collapse.open .plus {
  display: none;
}
.btn-collapse.open .minus {
  display: inline-block;
}

.collapse {
  display: none;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: auto;
  text-align: left;
  color: #333;
  padding: 10px 30px 30px;
  border-radius: 20px;
  font-size: 16px;
  opacity: 0;
  transition: 500ms all;
  background: #fff;
}
.collapse.in {
  display: block;
  opacity: 1;
}
.collapse a {
  color: #825dc7;
  text-decoration: underline;
  word-break: break-all;
}
.collapse li {
  line-height: 1.8;
}
.collapse p {
  font-size: 16.5px;
  line-height: 2;
}
.collapse h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #825dc7;
}

.collapse-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 2% 0;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.btn-border {
  padding: 15px 40px;
  color: #3E3A39;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid #3E3A39;
}

.note_DotList {
  list-style: disc;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList {
  list-style: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList2 {
  counter-reset: list;
  list-style: none;
}
.note_NumList2 > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.note_NumList2 > li::before {
  content: "(" counter(list) ") ";
  counter-increment: list;
}

.code {
  color: #C10D23;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .kv {
    background: #a189f7 url("../images/kv-bg-m.png") no-repeat top/100%;
    padding-bottom: 70%;
  }
  .kv-title {
    width: 86%;
    left: 7%;
    top: 17%;
  }
  .kv-subtitle {
    width: 60%;
    left: 5%;
    top: 4%;
  }
  .kv-heart {
    width: 85%;
    padding-top: 25%;
  }
  .kv-people {
    width: 90%;
    left: 5%;
    top: 50%;
  }
  .kv-coin.coin1 {
    width: 20%;
    left: 5%;
    top: 38%;
  }
  .kv-coin.coin2 {
    width: 13%;
    right: 5%;
    top: 38%;
  }
  .fix-btn {
    top: calc(100% - 100px);
  }
  .fix-btn img {
    max-width: 100px;
  }
  .img-d {
    display: none;
  }
  .img-m {
    display: block;
  }
  .content::before {
    padding-bottom: 30%;
    background: url("../images/sec-before-m.png") bottom/100% no-repeat;
  }
  .section {
    padding: 2% 0 10%;
  }
  .sec-btn img {
    width: 70%;
  }
  .btn-group {
    gap: 20px;
  }
  .bankee {
    padding: 10% 0;
  }
  .bankee .bankee-more {
    margin: 5px auto 20px;
  }
  .bankee .bankee-more img {
    width: 70%;
    margin-left: 15%;
  }
  .accordion {
    padding: 20px;
  }
  .accordion li {
    margin-bottom: 10px;
  }
  .accordion .accordion_header {
    font-size: 16px;
    padding: 10px 32px 10px 10px;
  }
  .accordion .accordion_header .q_num {
    width: 36px;
  }
  .accordion .accordion_header i {
    width: 32px;
    height: 32px;
    right: 5px;
  }
  .accordion .accordion_content p {
    padding: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .logo-bg img {
    height: 35px;
  }
  .btn-border {
    padding: 10px 20px;
  }
  .btn-collapse,
  .btn-collapse .icon {
    font-size: 20px;
  }
  .collapse {
    padding: 10px 10px 30px;
  }
  .collapse-inner {
    border-radius: 20px;
    padding: 0;
  }
  .btn-collapse {
    padding: 20px 25px;
  }
}