@charset "UTF-8";
@import url("reset.css");
.wrapper {
  overflow-x: hidden;
}

.pagesize {
  width: 100%;
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.po-re {
  position: relative;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 0.15s;
}

.header-wrapper {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.15s;
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    margin-top: 8px;
    padding: 10px;
  }
}
.header-wrapper .logo {
  height: 60px;
  overflow: hidden;
  transition: all 0.15s;
  position: relative;
  padding-left: 80px;
  display: flex;
  align-items: center;
}
.header-wrapper .logo::before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../images/logo.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .logo {
    height: 40px;
    padding-left: 40px;
  }
  .header-wrapper .logo::before {
    content: "";
    width: 40px;
    height: 40px;
    left: 0;
  }
}
.header-wrapper .logo:hover {
  transform: scale(1.1);
}
.header-wrapper h1 {
  font-size: 1.5rem;
  color: #b563d8;
}
@media screen and (max-width: 1024px) {
  .header-wrapper h1 {
    font-size: 1rem;
  }
}
.header-wrapper .btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.header-wrapper .btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.15s;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .btn {
    width: 32px;
    height: 32px;
  }
}
.header-wrapper .btn:hover {
  transform: scale(1.1);
}
.header-wrapper .btn-mail {
  background-image: url("../images/btn-mail.svg");
  background-color: #ffffff;
}
.header-wrapper .btn-line {
  background-image: url("../images/btn-line.svg");
}

.header-scroll {
  padding-left: 40px;
  padding-right: 40px;
}
.header-scroll .header-wrapper {
  max-width: 1240px;
  backdrop-filter: blur(20px);
}

.section-kv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .section-kv {
    margin-bottom: 40px;
  }
}
.section-kv img {
  width: 100%;
  height: auto;
}
.section-kv .kv-title,
.section-kv .kv-slogan {
  position: absolute;
  left: 65.1%;
  transform: translate(-50%, -50%);
  width: max-content;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  font-family: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", "Heiti TC", sans-serif;
}
@media screen and (max-width: 960px) {
  .section-kv .kv-title,
  .section-kv .kv-slogan {
    left: 50%;
  }
}
.section-kv .kv-title {
  top: 50.9%;
  font-size: 5.2vw;
  font-weight: 800;
  letter-spacing: 0.12em;
  background-image: linear-gradient(100deg, #4fa8d8 0%, #6e7adb 45%, #8e6be0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.9));
}
@media screen and (max-width: 960px) {
  .section-kv .kv-title {
    top: 27.2%;
    font-size: 9.6vw;
  }
}
.section-kv .kv-slogan {
  top: 70%;
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7b86d6;
  text-shadow: 0 4px 10px rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 960px) {
  .section-kv .kv-slogan {
    top: 38.8%;
    font-size: 4.5vw;
  }
}
.section-kv .kv-slogan em {
  font-style: normal;
  color: #b168e0;
}
.section-kv .kv-slogan::before, .section-kv .kv-slogan::after {
  color: #9aa8de;
  font-weight: 400;
}
.section-kv .kv-slogan::before {
  content: "—";
  margin-right: 0.4em;
}
.section-kv .kv-slogan::after {
  content: "—";
  margin-left: 0.4em;
}

.section-description {
  width: 100%;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .section-description {
    padding: 40px 20px 24px 20px;
    margin-bottom: 20px;
  }
}
.section-description:last-of-type {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .section-description:last-of-type {
    margin-bottom: 40px;
  }
}
.section-description .txt-and-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1240px) {
  .section-description .txt-and-image-wrapper {
    gap: 0px;
  }
}
@media screen and (max-width: 960px) {
  .section-description .txt-and-image-wrapper {
    flex-direction: column;
    gap: 20px;
    padding-top: 60px;
  }
}
.section-description .txt-and-image-wrapper .txt-box {
  text-align: right;
}
@media screen and (max-width: 960px) {
  .section-description .txt-and-image-wrapper .txt-box {
    text-align: center;
  }
}
.section-description .txt-and-image-wrapper .title {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-description .txt-and-image-wrapper .title {
    font-size: 1.5rem;
  }
}
.section-description .txt-and-image-wrapper .para {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .section-description .txt-and-image-wrapper .para {
    font-size: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .section-description .txt-and-image-wrapper .br-w {
    display: none;
  }
}
.section-description .txt-and-image-wrapper .br-m {
  display: none;
}
@media screen and (max-width: 960px) {
  .section-description .txt-and-image-wrapper .br-m {
    display: inline;
  }
}
.section-description .img-box {
  width: calc(50% - 20px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .section-description .img-box {
    width: 100%;
    justify-content: center;
  }
}
.section-description .img-box img {
  height: 520px;
  width: auto;
}
@media screen and (max-width: 1240px) {
  .section-description .img-box img {
    height: 440px;
  }
}
@media screen and (max-width: 960px) {
  .section-description .img-box img {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .section-description .img-box img {
    height: 320px;
  }
}
@media screen and (max-width: 560px) {
  .section-description .img-box img {
    height: 264px;
  }
}
.section-description .img-end-box {
  width: calc(50% - 20px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .section-description .img-end-box {
    width: 100%;
    justify-content: center;
  }
}
.section-description .txt-box {
  width: calc(50% - 20px);
  padding: 0 20px;
}
@media screen and (max-width: 1280px) {
  .section-description .txt-box {
    padding: 0 20px 0 0;
  }
}
@media screen and (max-width: 960px) {
  .section-description .txt-box {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
.section-description .decorate-box-1-1 {
  position: absolute;
  right: 20px;
  top: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-1-1 {
    right: 50%;
    transform: translateX(50%);
  }
}
.section-description .decorate-box-1-1 .decorate-1-1-1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../images/img-decorate-1-1.png");
  background-color: #ffffff;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: people 800ms linear infinite;
}
@keyframes people {
  0% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.section-description .decorate-box-1-1 .decorate-1-1-2 {
  width: 24px;
  height: 24px;
  background-image: url("../images/img-decorate-1-2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: talk 800ms linear infinite;
}
@keyframes talk {
  0% {
    background-image: url("../images/img-decorate-1-2.png");
  }
  50% {
    background-image: url("../images/img-decorate-1-3.png");
  }
  100% {
    background-image: url("../images/img-decorate-1-2.png");
  }
}
.section-description .decorate-box-1-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 80px;
  bottom: 90px;
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-1-2 {
    left: auto;
    right: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-description .decorate-box-1-2 {
    right: -12px;
    bottom: 0px;
    transform: scale(0.5);
  }
}
.section-description .decorate-box-1-2 .line {
  width: 2px;
  border-radius: 3px;
  background: linear-gradient(135deg, #5999C8 0%, #8E4CFF 100%); /* 參考圖的漸變色 */
  animation: waveAnimation 1200ms ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes waveAnimation {
  0% {
    transform: scaleY(0.3); /* 初始縮放比例，不要太高 */
  }
  100% {
    transform: scaleY(1); /* 最終縮放比例 */
  }
}
.section-description .decorate-box-1-2 .line-1 {
  height: 8px;
  animation-delay: -1.2s;
}
.section-description .decorate-box-1-2 .line-2 {
  height: 12px;
  animation-delay: -1.1s;
}
.section-description .decorate-box-1-2 .line-3 {
  height: 18px;
  animation-delay: -1s;
}
.section-description .decorate-box-1-2 .line-4 {
  height: 26px;
  animation-delay: -0.9s;
}
.section-description .decorate-box-1-2 .line-5 {
  height: 34px;
  animation-delay: -0.8s;
}
.section-description .decorate-box-1-2 {
  /* 第一個小波峰 */
}
.section-description .decorate-box-1-2 .line-6 {
  height: 42px;
  animation-delay: -0.7s;
}
.section-description .decorate-box-1-2 .line-7 {
  height: 30px;
  animation-delay: -0.6s;
}
.section-description .decorate-box-1-2 .line-8 {
  height: 22px;
  animation-delay: -0.5s;
}
.section-description .decorate-box-1-2 {
  /* 往主波峰攀升 */
}
.section-description .decorate-box-1-2 .line-9 {
  height: 35px;
  animation-delay: -0.4s;
}
.section-description .decorate-box-1-2 .line-10 {
  height: 48px;
  animation-delay: -0.3s;
}
.section-description .decorate-box-1-2 .line-11 {
  height: 56px;
  animation-delay: -0.2s;
}
.section-description .decorate-box-1-2 .line-12 {
  height: 60px;
  animation-delay: -0.1s;
}
.section-description .decorate-box-1-2 .line-13 {
  height: 58px;
  animation-delay: 0s;
}
.section-description .decorate-box-1-2 .line-14 {
  height: 48px;
  animation-delay: 0.1s;
}
.section-description .decorate-box-1-2 .line-15 {
  height: 36px;
  animation-delay: 0.2s;
}
.section-description .decorate-box-1-2 .line-16 {
  height: 26px;
  animation-delay: 0.3s;
}
.section-description .decorate-box-1-2 {
  /* 第二個小波峰 */
}
.section-description .decorate-box-1-2 .line-17 {
  height: 20px;
  animation-delay: 0.4s;
}
.section-description .decorate-box-1-2 .line-18 {
  height: 28px;
  animation-delay: 0.5s;
}
.section-description .decorate-box-1-2 .line-19 {
  height: 38px;
  animation-delay: 0.6s;
}
.section-description .decorate-box-1-2 .line-20 {
  height: 45px;
  animation-delay: 0.7s;
}
.section-description .decorate-box-1-2 .line-21 {
  height: 34px;
  animation-delay: 0.8s;
}
.section-description .decorate-box-1-2 {
  /* 結尾收合 */
}
.section-description .decorate-box-1-2 .line-22 {
  height: 24px;
  animation-delay: 0.9s;
}
.section-description .decorate-box-1-2 .line-23 {
  height: 16px;
  animation-delay: 1s;
}
.section-description .decorate-box-1-2 .line-24 {
  height: 10px;
  animation-delay: 1.1s;
}
.section-description .decorate-box-1-2 .line-25 {
  height: 6px;
  animation-delay: 1.2s;
}
.section-description .decorate-box-2 {
  position: absolute;
  left: 20px;
  top: -60px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-description .decorate-box-2 .line {
  width: 10px;
}
.section-description .decorate-box-2 .line-1 {
  background-color: #5BB6E8;
  height: 28px;
  animation: Report-1 1200ms ease-in-out infinite alternate;
}
@keyframes Report-1 {
  0% {
    height: 28px;
  }
  50% {
    height: 60px;
  }
  100% {
    height: 28px;
  }
}
.section-description .decorate-box-2 .line-2 {
  background-color: #8ACCF0;
  height: 60px;
  animation: Report-2 1200ms ease-in-out infinite alternate;
}
@keyframes Report-2 {
  0% {
    height: 60px;
  }
  33% {
    height: 48px;
  }
  66% {
    height: 48px;
  }
  100% {
    height: 60px;
  }
}
.section-description .decorate-box-2 .line-3 {
  background-color: #BAE1F7;
  height: 60px;
  animation: Report-3 1200ms ease-in-out infinite alternate;
}
@keyframes Report-3 {
  0% {
    height: 34px;
  }
  25% {
    height: 46px;
  }
  50% {
    height: 28px;
  }
  75% {
    height: 34px;
  }
  100% {
    height: 34px;
  }
}
.section-description .decorate-box-2 .line-4 {
  background-color: #D1ECFB;
  height: 26px;
  animation: Report-4 1200ms ease-in-out infinite alternate;
}
@keyframes Report-4 {
  0% {
    height: 26px;
  }
  25% {
    height: 43px;
  }
  50% {
    height: 60px;
  }
  75% {
    height: 46px;
  }
  100% {
    height: 26px;
  }
}
.section-description .decorate-box-2 .line-5 {
  background-color: #D0E1EB;
  height: 26px;
  animation: Report-5 1200ms ease-in-out infinite alternate;
}
@keyframes Report-5 {
  0% {
    height: 8px;
  }
  50% {
    height: 24px;
  }
  100% {
    height: 8px;
  }
}
.section-description .decorate-box-3-1 {
  position: absolute;
  top: -60px;
  animation: runningMoney 2000ms linear infinite;
}
@keyframes runningMoney {
  0% {
    right: 20px;
  }
  50% {
    right: 80px;
  }
  100% {
    right: 20px;
  }
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-3-1 {
    animation: runningMoney-m 3000ms ease-in-out infinite;
  }
  @keyframes runningMoney-m {
    0% {
      right: 30%;
      transform: translateX(50%);
    }
    50% {
      right: 70%;
      transform: translateX(50%);
    }
    100% {
      right: 30%;
      transform: translateX(50%);
    }
  }
}
.section-description .decorate-box-3-1 .decorate-3-1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../images/icon-money.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.section-description .decorate-box-3-2 {
  position: absolute;
  top: -278px;
  right: -332px;
}
@media screen and (max-width: 767px) {
  .section-description .decorate-box-3-2 {
    top: -59px;
    right: -106px;
  }
}
.section-description .decorate-box-3-2 .decorate-3-2 {
  width: 590px;
  height: 590px;
  background-image: url(../images/img-desctiption-0.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: circle-ball-2 35000ms linear infinite;
}
@media screen and (max-width: 1024px) {
  .section-description .decorate-box-3-2 .decorate-3-2 {
    width: 480px;
    height: 480px;
  }
}
@media screen and (max-width: 480px) {
  .section-description .decorate-box-3-2 .decorate-3-2 {
    width: 180px;
    height: 180px;
  }
}
@keyframes circle-ball-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.section-description .decorate-box-4-1 {
  position: absolute;
  top: 60px;
  left: calc(50% + 20px);
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-4-1 {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-description .decorate-box-4-1 .decorate-4-1 {
  width: 265px;
  height: 100px;
  background-image: url("../images/img-decorate-4-1.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: circle 2000ms linear infinite;
}
@keyframes circle {
  0% {
    transform: rotate(0deg) translate(6px) rotate(0deg);
  }
  100% {
    transform: rotate(-360deg) translate(6px) rotate(360deg);
  }
}
.section-description .decorate-box-4-2 {
  position: absolute;
  bottom: 60px;
  right: 40px;
}
@media screen and (max-width: 1240px) {
  .section-description .decorate-box-4-2 {
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-description .decorate-box-4-2 {
    display: none;
  }
}
.section-description .decorate-box-4-2 .decorate-4-2 {
  width: 265px;
  height: 100px;
  background-image: url("../images/img-decorate-4-2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: circle-2 2000ms linear infinite;
}
@keyframes circle-2 {
  0% {
    transform: rotate(0deg) translate(4px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(4px) rotate(-360deg);
  }
}
.section-description .decorate-box-5 {
  position: absolute;
  top: -170px;
  left: -220px;
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-5 {
    top: -85px;
    left: -110px;
  }
}
@media screen and (max-width: 767px) {
  .section-description .decorate-box-5 {
    top: -57px;
    left: -73px;
  }
}
.section-description .decorate-box-5 .decorate-5 {
  width: 420px;
  height: 420px;
  background-image: url(../images/img-desctiption-0.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: circle-ball 25000ms linear infinite;
}
@media screen and (max-width: 960px) {
  .section-description .decorate-box-5 .decorate-5 {
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .section-description .decorate-box-5 .decorate-5 {
    width: 140px;
    height: 140px;
  }
}
@keyframes circle-ball {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.section-description.light {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
}
@media screen and (max-width: 960px) {
  .section-description.light .txt-and-image-wrapper {
    flex-direction: column-reverse;
  }
}
.section-description.light .txt-box {
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .section-description.light .txt-box {
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 960px) {
  .section-description.light .txt-box {
    padding: 0;
    text-align: center;
  }
}

footer {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(80deg, #8D88C0 0%, #A3A0C4 100%);
}
footer .footer-wrapper {
  width: 100%;
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
footer .txt-box {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  footer .txt-box {
    text-align: center;
  }
}
footer .txt-box .title {
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  footer .txt-box .title {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
}
footer .txt-box .para {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  footer .txt-box .para {
    font-size: 1rem;
  }
}
footer .img-and-txt-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  footer .img-and-txt-wrapper {
    gap: 20px;
  }
}
footer .img-and-txt-box {
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  transition: all 0.15s;
}
@media screen and (max-width: 960px) {
  footer .img-and-txt-box {
    padding: 16px;
    gap: 16px;
  }
}
footer .img-and-txt-box:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
footer .img-and-txt-box .txt {
  font-size: 1.25rem;
  color: #4E4E4E;
}
@media screen and (max-width: 767px) {
  footer .img-and-txt-box .txt {
    font-size: 1rem;
  }
}
footer .img-and-txt-box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .img-and-txt-box .img-box img {
  width: 120px;
  height: auto;
}/*# sourceMappingURL=style.css.map */