@charset "UTF-8";
/* 按鈕尺寸表（左右 padding、字級） */
html,
body {
  overflow: visible !important;
  overflow-x: visible !important;
}

.section {
  padding: 48px 24px;
}
@media (min-width: 992px) {
  .section {
    padding: 48px;
  }
}

.section-hero {
  padding: 40px 24px 0;
  position: relative;
  overflow: clip;
  background: linear-gradient(141deg, #fff 0%, #f7f7f7 100%);
}
.section-hero .section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section-hero h1 {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}
.section-hero .intro {
  color: #000;
  font-size: 20px;
  line-height: 160%;
}
.section-hero .intro br {
  display: none;
}
.section-hero a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.section-hero .btn-wrap {
  margin: 24px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-hero .hero-img img {
  display: block;
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 480px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .section-hero {
    padding: 0 24px;
    background: linear-gradient(96deg, #fff 0%, #f7f7f7 100%);
  }
  .section-hero .section-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
  .section-hero .intro {
    font-size: 22px;
  }
  .section-hero .intro br {
    display: inline-block;
  }
  .section-hero .btn-wrap {
    margin: 24px 0 0;
  }
}
@media (min-width: 1200px) {
  .section-hero h1 {
    font-size: 64px;
  }
}

.section-data {
  padding-bottom: 0;
}
.section-data .data-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .section-data .data-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .section-data .data-wrap {
    gap: 80px;
  }
}
.section-data .data-item__value {
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  color: #F5BA18;
}
.section-data .data-item__num {
  font-family: Unbounded !important;
  font-size: 72px;
  line-height: 80%;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.section-data .data-item__unit {
  font-size: 22px;
  line-height: 160%;
}
.section-data .data-item__label {
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  padding-top: 16px;
}
@media (min-width: 992px) {
  .section-data .data-item {
    padding: 16px 0;
    font-size: 80px;
  }
}

.section-feature {
  padding-top: 0;
}
.section-feature .card-wrap {
  margin-top: 40px;
}
.section-feature .card-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
  border-radius: 16px;
  background: linear-gradient(180deg, #FFF 50%, #FCEAB7 100%);
  box-shadow: 0 0 24px 0 rgba(51, 51, 51, 0.16);
  overflow: hidden;
  position: relative;
}
.section-feature .card-item::after {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  background: url("../images/index/data-card-bg.svg") center center/cover;
  right: -100px;
  bottom: -100px;
}
.section-feature .card-content {
  padding: 24px 24px 0 24px;
}
.section-feature .card-content__title {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 4px;
}
.section-feature .card-content__subtitle {
  color: #F5BA18;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}
.section-feature .card-content__text {
  color: #000;
  font-size: 18px;
  line-height: 160%;
}
.section-feature .card-content li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 4px;
}
.section-feature .card-content i {
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 100%;
  color: #F5BA18;
  position: absolute;
  top: 0px;
  left: 0px;
}
.section-feature .card-content i::before {
  position: absolute;
  top: calc(50% + 3px);
  left: 2px;
  transform: translateY(-50%);
  z-index: 1;
}
.section-feature .card-content i::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #FEF8E8;
  border-radius: 20px;
  position: absolute;
  top: calc(50% + 3px);
  transform: translateY(-50%);
}
.section-feature .card-pic {
  width: calc(100% - 48px);
  height: auto;
  margin: 0 auto;
  flex-shrink: 0;
  aspect-ratio: 392/320;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .section-feature .card-content {
    padding: 40px 24px;
  }
  .section-feature .card-content__title {
    font-size: 40px;
  }
  .section-feature .card-content__subtitle {
    font-size: 28px;
  }
  .section-feature .card-item {
    flex-direction: row;
    background: linear-gradient(68deg, #FFF 50%, #FCEAB7 100%);
    flex-direction: row;
  }
  .section-feature .card-item::after {
    width: 1200px;
    height: 1200px;
  }
  .section-feature .card-item:nth-child(odd)::after {
    left: 676px;
    bottom: -600px;
  }
  .section-feature .card-item:nth-child(even)::after {
    top: -600px;
    left: 676px;
  }
  .section-feature .card-pic {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-right: 24px;
  }
  .section-feature .card-pic__2 {
    -o-object-position: bottom;
       object-position: bottom;
  }
  .section-feature .card-pic__4 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .section-feature .card-content {
    padding: 40px;
  }
  .section-feature .card-content__title {
    font-size: 40px;
  }
  .section-feature .card-content__subtitle {
    margin-bottom: 24px;
  }
  .section-feature .card-pic {
    width: 392px;
    margin-right: 40px;
    -o-object-position: center;
       object-position: center;
  }
}
.section-feature .stack-cards {
  list-style: none;
  position: relative;
}
.section-feature .stack-cards__item {
  position: sticky !important;
  top: 110px;
  transform-origin: center top;
  margin-bottom: var(--stack-cards-gap);
}
.section-feature .stack-cards__item:nth-child(1) {
  z-index: 1;
}
.section-feature .stack-cards__item:nth-child(2) {
  z-index: 2;
}
.section-feature .stack-cards__item:nth-child(3) {
  z-index: 3;
}
.section-feature .stack-cards__item:nth-child(4) {
  z-index: 4;
}

@media (min-width: 992px) {
  .section-capabilities {
    padding-bottom: 48px;
  }
  .section-capabilities br {
    display: none;
  }
}
.section-capabilities .section__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 992px) {
  .section-capabilities .section__content {
    max-width: 794px;
    flex-direction: row;
  }
}
.section-capabilities .capabilities__item {
  position: relative;
}
.section-capabilities .capabilities__item .folder {
  width: 100%;
  max-height: 174px;
  aspect-ratio: 390/180;
  margin-bottom: 24px;
  display: block;
}
.section-capabilities .capabilities__item h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.section-capabilities .capabilities__item div {
  font-size: 18px;
  line-height: 160%;
}
@media (min-width: 992px) {
  .section-capabilities .capabilities__item {
    width: calc((100% - 48px) / 2);
  }
}
.section-capabilities .folder__1 {
  position: relative;
  --group-delay: 0s;
}
.section-capabilities .folder__1:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 95px;
  height: 67px;
  background: url(../images/cdmp/folder-back-purple.svg) no-repeat center center/cover;
}
.section-capabilities .folder__1:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 103px;
  height: 52px;
  background: url(../images/cdmp/folder-front-purple.svg) no-repeat center center/cover;
}
@media (min-width: 992px) {
  .section-capabilities .folder__1:before {
    width: 113px;
    height: 80px;
  }
  .section-capabilities .folder__1:after {
    width: 123px;
    height: 62px;
  }
}
.section-capabilities .folder__2 {
  position: relative;
  --group-delay: .5s;
}
.section-capabilities .folder__2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 95px;
  height: 67px;
  background: url(../images/cdmp/folder-back-yellow.svg) no-repeat center center/cover;
}
.section-capabilities .folder__2:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 103px;
  height: 52px;
  background: url(../images/cdmp/folder-front-yellow.svg) no-repeat center center/cover;
}
@media (min-width: 992px) {
  .section-capabilities .folder__2:before {
    width: 113px;
    height: 80px;
  }
  .section-capabilities .folder__2:after {
    width: 123px;
    height: 62px;
  }
}
.section-capabilities .folder__tag {
  --front-h: 52px;
  --tag-rest-scale: .5;
  --tag-y-adjust: 0px;
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(var(--angle, 0deg));
}
.section-capabilities .folder__tag:nth-child(1) {
  --angle: -72deg;
}
.section-capabilities .folder__tag:nth-child(1) img {
  transform: rotate(72deg);
}
.section-capabilities .folder__tag:nth-child(2) {
  --angle: -48deg;
  --tag-y-adjust: 2px;
}
.section-capabilities .folder__tag:nth-child(2) img {
  transform: rotate(48deg);
}
.section-capabilities .folder__tag:nth-child(3) {
  --angle: 0deg;
  --tag-y-adjust: 4px;
}
.section-capabilities .folder__tag:nth-child(4) {
  --angle: 48deg;
  --tag-y-adjust: 2px;
}
.section-capabilities .folder__tag:nth-child(4) img {
  transform: rotate(-48deg);
}
.section-capabilities .folder__tag:nth-child(5) {
  --angle: 72deg;
}
.section-capabilities .folder__tag:nth-child(5) img {
  transform: rotate(-72deg);
}
.section-capabilities .folder__tag .tag {
  display: inline-block;
  transform-origin: bottom center;
  transform: translateY(calc(-125px + 50% + var(--tag-y-adjust))) scale(0.8);
  animation: animateTag 5s infinite cubic-bezier(0.57, 0.23, 0.13, 1.42);
}
@media (min-width: 992px) {
  .section-capabilities .folder__tag .tag {
    transform: translateY(calc(-136px + 50% + var(--tag-y-adjust))) scale(0.8);
  }
}
.section-capabilities .folder__tag:nth-child(1) .tag {
  animation-delay: calc(var(--group-delay) + 0.1s);
}
.section-capabilities .folder__tag:nth-child(2) .tag {
  animation-delay: calc(var(--group-delay) + 0.2s);
}
.section-capabilities .folder__tag:nth-child(3) .tag {
  animation-delay: calc(var(--group-delay) + 0.3s);
}
.section-capabilities .folder__tag:nth-child(4) .tag {
  animation-delay: calc(var(--group-delay) + 0.4s);
}
.section-capabilities .folder__tag:nth-child(5) .tag {
  animation-delay: calc(var(--group-delay) + 0.5s);
}
@media (min-width: 992px) {
  .section-capabilities .folder__tag {
    --front-h: 62px;
  }
}
@keyframes animateTag {
  0%, 65% {
    transform: translateY(calc(-125px + 50% + var(--tag-y-adjust))) scale(0.8);
  }
  10%, 55% {
    transform: translateY(var(--tag-y-adjust)) scale(var(--tag-rest-scale));
  }
  @media (min-width: 992px) {
    0%, 65% {
      transform: translateY(calc(-136px + 50% + var(--tag-y-adjust))) scale(0.8);
    }
  }
}
.section-capabilities .tag {
  width: -moz-fit-content;
  width: fit-content;
}
.section-capabilities .tag:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section-capabilities .tag img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: calc(var(--front-h) * 0.72);
  -o-object-fit: contain;
     object-fit: contain;
}

.section-partner .section__inner {
  overflow: hidden;
  position: relative;
}
.section-partner h4 {
  color: #000;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}
.section-partner .partner-wrap {
  overflow: hidden;
  text-align: left;
}
.section-partner .partner-wrap::before, .section-partner .partner-wrap::after {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.section-partner .partner-wrap::before {
  content: "";
  width: 102px;
  height: 108px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  left: 0;
}
.section-partner .partner-wrap::after {
  content: "";
  width: 102px;
  height: 108px;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}
@media (min-width: 992px) {
  .section-partner .partner-wrap::before, .section-partner .partner-wrap::after {
    width: 160px;
  }
}
.section-partner .partner-track {
  --marquee-distance: 0px;
  --marquee-duration: 60s;
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-max-content;
  width: max-content;
  animation: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.section-partner .partner-track .logo {
  flex: 0 0 auto;
  width: 160px;
  height: auto;
}
.section-partner .partner-track .logo img {
  width: 100%;
  height: 100%;
}
.section-partner .partner-track.is-ready {
  animation: partner-marquee var(--marquee-duration) linear infinite;
}
.section-partner .partner-wrap:hover .partner-track,
.section-partner .partner-wrap:focus-within .partner-track {
  animation-play-state: paused;
}
@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-distance)));
  }
}
@media (min-width: 992px) {
  .section-partner h4 {
    font-size: 28px;
  }
}

.section-case .caseSwiper {
  padding-bottom: 40px;
}
.section-case .swiper-wrapper {
  align-items: center;
}
.section-case .swiper-button-next,
.section-case .swiper-button-prev {
  display: none;
}
.section-case .swiper-pagination {
  bottom: 0px;
}
.section-case .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #D1D1D1;
  opacity: 1;
}
.section-case .swiper-pagination-bullet-active {
  width: 32px;
  background: #F5BA18;
}
@media (min-width: 992px) {
  .section-case .swiper-button-prev,
  .section-case .swiper-button-next {
    display: contents;
    width: 48px;
    height: 48px;
    color: #F5BA18;
    position: absolute;
    transition: color 0.3s;
  }
  .section-case .swiper-button-prev:hover, .section-case .swiper-button-prev:active,
  .section-case .swiper-button-next:hover,
  .section-case .swiper-button-next:active {
    color: #AE8411;
  }
  .section-case .swiper-button-prev {
    top: 50%;
    left: -72px !important;
  }
  .section-case .swiper-button-next {
    top: 50%;
    right: -72px !important;
  }
}
.section-case .section__content {
  width: 100%;
  max-width: 794px;
  margin: 0 auto;
}
.section-case .case-item {
  padding: 40px 24px 24px;
  min-height: 224px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 0 16px 0 rgba(51, 51, 51, 0.16);
  margin: 16px 16px 0 16px;
}
.section-case .case-item__info {
  text-align: justify;
  font-size: 20px;
  line-height: 160%;
  position: relative;
}
.section-case .case-item__brand {
  width: 180px;
  color: #000;
  text-align: center;
  font-size: 12px;
  line-height: 160%;
}
.section-case .case-item__brand img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .section-case .case-item {
    padding: 24px 16px 24px 64px;
    flex-direction: row;
    gap: 40px;
  }
  .section-case .case-item__info {
    flex: 1 1 0;
  }
  .section-case .case-item__info::before {
    top: 0px;
    left: -44px;
  }
  .section-case .case-item__brand {
    flex: 0 0 180px;
  }
}

.section-memberWall {
  background: #E6F8FA;
  position: relative;
  overflow: hidden;
}
.section-memberWall::before {
  content: "";
  display: block;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #8adde6 0%, rgba(138, 221, 230, 0) 100%);
  width: 240px;
  height: 240px;
  top: -120px;
  left: -120px;
}
.section-memberWall::after {
  content: "";
  display: block;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, #8adde6 0%, rgba(138, 221, 230, 0) 100%);
  width: 240px;
  height: 240px;
  right: -48px;
  bottom: -184px;
  transform: none;
}
@media (min-width: 992px) {
  .section-memberWall {
    width: calc(100% - 80px);
    padding: 48px 120px;
    margin: 40px;
    border-radius: 24px;
  }
  .section-memberWall::before {
    width: 495px;
    height: 495px;
    top: -248px;
    left: -248px;
  }
  .section-memberWall::after {
    width: 495px;
    height: 495px;
    right: -140px;
    bottom: -290px;
  }
}
.section-memberWall .section__content {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 24px;
  padding-top: 16px;
}
@media (min-width: 992px) {
  .section-memberWall .section__content {
    flex-direction: row;
  }
}

h2 {
  text-align: center;
}

h2 + p {
  text-align: left;
}

@media (min-width: 768px) {
  h2 + p {
    text-align: center;
  }
}/*# sourceMappingURL=pg_cdmp.css.map */