@charset "UTF-8";
/* 按鈕尺寸表（左右 padding、字級） */
.section-main {
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.section-main h1 {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}
.section-main .intro {
  color: #000;
  font-size: 20px;
  line-height: 160%;
}
.section-main .intro br {
  display: none;
}
.section-main a {
  display: block;
  margin: 24px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
.section-main .deco::before {
  width: 256px;
  height: 256px;
  top: -60px;
  right: -128px;
}
.section-main .deco::after {
  width: 430px;
  height: 430px;
  left: -28px;
  bottom: -250px;
  transform: none;
}
@media (min-width: 992px) {
  .section-main {
    padding: 64px 0;
    text-align: center;
  }
  .section-main h1 {
    font-size: 64px;
  }
  .section-main .intro {
    font-size: 22px;
  }
  .section-main .intro br {
    display: inline-block;
  }
  .section-main .deco::before {
    width: 800px;
    height: 800px;
    top: -400px;
    left: -400px;
  }
  .section-main .deco::after {
    width: 966px;
    height: 966px;
    left: auto;
    right: -483px;
    bottom: -483px;
  }
}

.section-rmn .section__content {
  max-width: 794px;
  margin: 0 auto;
}

.section-solution {
  background: #515151;
}
.section-solution .section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: card;
}
@media (min-width: 992px) {
  .section-solution .section__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .section-solution .section__content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.section-solution .section__content .solution-card {
  width: 100%;
  max-width: 400px;
  padding: 32px 24px 24px;
  margin: 0 auto;
  border-radius: 16px;
  color: #000;
  background: #fff;
  overflow: hidden;
  position: relative;
  counter-increment: card;
}
.section-solution .section__content .solution-card::before {
  font-family: Unbounded !important;
  content: counter(card, decimal-leading-zero);
  position: absolute;
  left: -40px;
  top: -4px;
  font-size: 96px;
  font-weight: 700;
  line-height: 80%;
  color: #FADF95;
}
.section-solution .section__content .solution-card h3 {
  color: #000;
  text-align: right;
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
  z-index: 1;
  position: relative;
}
.section-solution .section__content .solution-card p {
  font-size: 18px;
  line-height: 160%;
  text-align: justify;
  z-index: 1;
  position: relative;
}
@media (min-width: 992px) {
  .section-solution .section__content .solution-card {
    width: auto;
    max-width: 100%;
  }
}

.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%;
}
.section-data .data-item__unit {
  font-size: 22px;
  line-height: 160%;
}
.section-data .data-item__label {
  color: #000;
  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-data .card-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-data .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-data .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-data .card-content {
  padding: 24px 24px 0 24px;
}
.section-data .card-content__title {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 4px;
}
.section-data .card-content__subtitle {
  color: #F5BA18;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}
.section-data .card-content__text {
  color: #000;
  font-size: 18px;
  line-height: 160%;
}
.section-data .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-data .card-content {
    padding: 40px 24px;
  }
  .section-data .card-item {
    background: linear-gradient(68deg, #FFF 50%, #FCEAB7 100%);
    flex-direction: row;
  }
  .section-data .card-item::after {
    width: 1200px;
    height: 1200px;
  }
  .section-data .card-item:nth-child(odd)::after {
    left: 676px;
    bottom: -600px;
  }
  .section-data .card-item:nth-child(even)::after {
    top: -600px;
    left: 676px;
  }
  .section-data .card-pic {
    width: 200px;
    margin-right: 24px;
  }
  .section-data .card-pic__2 {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
@media (min-width: 1200px) {
  .section-data .card-content {
    padding: 40px;
  }
  .section-data .card-content__title {
    font-size: 40px;
  }
  .section-data .card-content__subtitle {
    margin-bottom: 24px;
  }
  .section-data .card-pic {
    width: 392px;
    margin-right: 40px;
    -o-object-position: center;
       object-position: center;
  }
}

.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: 0 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;
  }
}

.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;
  margin: 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-article {
  background: #F7F7F7;
}
.section-article .section__content {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: card;
}
@media (min-width: 768px) {
  .section-article .section__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .section-article .section__content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.section-article .section__content .article-card {
  width: 100%;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(51, 51, 51, 0.16);
  overflow: hidden;
}
.section-article .section__content .article-card__pic {
  display: block;
  aspect-ratio: 384/216;
  background: #ACACAC;
  overflow: hidden;
}
.section-article .section__content .article-card__pic img {
  transition: transform 0.3s;
}
.section-article .section__content .article-card__text {
  padding: 16px 24px;
  font-weight: 400;
}
.section-article .section__content .article-card__text a {
  color: #000;
  font-size: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}
.section-article .section__content .article-card:hover img {
  transform: scale(1.2);
}
.section-article .section__content .article-card:hover a {
  color: #646464;
}

.section-contact {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/index/contact-bg.jpg") no-repeat center center/cover;
}
.section-contact .section__content {
  padding-top: 16px;
}
.section-contact .btn--lg {
  padding: 12px 60px;
}

h2 {
  text-align: center;
}

h2 + p {
  text-align: left;
}

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