* {
  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;
}

.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: #D6CFFF url("../images/kv-bg.svg") no-repeat 5% center/40%;
  padding-bottom: 35%;
  z-index: 1;
  overflow: hidden;
}

.kv-title {
  position: absolute;
  width: 33%;
  left: 13%;
  top: 32%;
  z-index: 10;
}

.kv-main {
  width: 38%;
  position: absolute;
  top: 15%;
  right: 10%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #8BD249;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
}
.nav-item img {
  width: 200px;
}
.nav-item.current {
  background: linear-gradient(0deg, rgb(123, 52, 198) 0%, rgb(205, 148, 254) 100%);
  box-shadow: inset 0 -8px #7B34BE;
}

.fadein {
  position: relative;
  transform: translateY(50px);
  opacity: 1;
  transition: 1s all ease;
}
.fadein.active {
  transform: translateY(0);
  opacity: 1;
}

.img-m {
  display: none;
}

.title {
  width: 100%;
  margin-bottom: 30px;
}

.sub-title {
  width: 90%;
  max-width: 650px;
  padding-top: 60px;
}

.content {
  width: 90%;
  max-width: 1200px;
}
.content:not(:last-child) {
  margin-bottom: 80px;
}

.btn-group {
  position: relative;
  margin: auto;
}

.sec1 {
  position: relative;
  background: #7B34BE;
  padding-bottom: 120px;
}
.sec1 .sec1-btn {
  position: absolute;
  width: 18%;
  transform: translateX(-50%);
  bottom: 3%;
}
.sec1 .sec1-btn.btn-mydata {
  left: 25%;
}
.sec1 .sec1-btn.btn-app {
  right: 8%;
}

.sec1-2 {
  background: #E5E5E5;
  padding-bottom: 30px;
}

.sec1-3 {
  background: #D9E7C6;
  padding-bottom: 30px;
}

.sec2 {
  background: #8550D2;
  padding-bottom: 120px;
}
.sec2 .btn-upload {
  position: absolute;
  width: 18%;
  transform: translateX(-50%);
  bottom: 41%;
  right: 16%;
}
.sec2 .btn-search {
  width: 9.5%;
  position: absolute;
  transform: translateX(-50%);
  bottom: 11%;
  right: 33.5%;
}

.sec3 {
  background: #7B34BE;
  padding-bottom: 120px;
}
.sec3 .btn-contract {
  position: absolute;
  width: 35%;
  transform: translateX(-50%);
  bottom: 5.5%;
  left: 51%;
}
.sec3 .note {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
}
.sec3 .note .text-link {
  color: #fff;
}

.sec4 {
  padding-bottom: 80px;
}
.sec4 .btn {
  width: 60%;
  max-width: 600px;
}

.cta {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.cta img {
  width: 80%;
  max-width: 450px;
}

.notebg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn-collapse {
  display: block;
  padding: 20px 25px;
  background: #E8E8E8;
  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: 100%;
  text-align: left;
  color: #333;
  padding: 10px 30px 30px;
  font-size: 16.5px;
  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% 5%;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.btn-border {
  padding: 15px 40px;
  color: #fff;
  background-color: #7B34BF;
  border-radius: 100px;
}

.note_DotList {
  list-style: disc;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList {
  list-style: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}

.code {
  color: #C10D23;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .nav-item:hover {
    background: linear-gradient(0deg, rgb(123, 52, 198) 0%, rgb(205, 148, 254) 100%);
    box-shadow: inset 0 -8px #7B34BE;
  }
}
@media screen and (max-width: 1024px) {
  .nav-item {
    flex-grow: 1;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    padding-bottom: 80%;
    background: #D6CFFF url("../images/kv-bg.svg") no-repeat -30% 5%/70%;
  }
  .kv-title {
    width: 60%;
    top: 7%;
    left: 17%;
  }
  .kv-main {
    width: 75%;
    top: 40%;
    left: 10%;
  }
  .nav {
    flex-wrap: wrap;
  }
  .nav-item {
    width: 50%;
    padding: 15px;
  }
  .nav-item img {
    width: 135px;
  }
  .content:not(:last-child) {
    margin-bottom: 40px;
  }
  .img-d {
    display: none;
  }
  .img-m {
    display: block;
  }
  .cta {
    bottom: 25px;
  }
  .cta img {
    max-width: 280px;
  }
  .slider {
    margin: 0 auto 80px;
  }
  .sec1 {
    padding-bottom: 80px;
  }
  .sec1 .sec1-btn {
    width: 35%;
  }
  .sec1 .sec1-btn.btn-mydata {
    left: 51%;
    bottom: 41%;
  }
  .sec1 .sec1-btn.btn-app {
    right: 14%;
    bottom: 2%;
  }
  .sec2 {
    padding-bottom: 80px;
  }
  .sec2 .btn-upload {
    width: 35%;
    bottom: 62.5%;
  }
  .sec2 .btn-search {
    width: 17%;
    bottom: 5.5%;
    right: -1%;
  }
  .sec3 {
    padding-bottom: 80px;
  }
  .sec3 .btn-contract {
    width: 55%;
    left: 40%;
    bottom: 5%;
  }
  .sec3 .note {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .logo-bg img {
    height: 35px;
  }
}
@media screen and (max-width: 480px) {
  .slide img {
    max-width: 250px;
  }
}