/* Component: components/sections/Banner.astro */
.banner-module {
  position: relative;
}
.banner-module .swiper .swiper-slide .pic {
  width: 100%;
}
.banner-module .swiper .swiper-slide .pic::after {
  padding-top: 40.3125%;
}
@media screen and (max-width: 1200px) {
  .banner-module .swiper .swiper-slide .pic::after {
    padding-top: 56.25%;
  }
}
@media screen and (max-width: 992px) {
  .banner-module .swiper .swiper-slide .pic::after {
    padding-top: 70.8333%;
  }
}
@media screen and (max-width: 768px) {
  .banner-module .swiper .swiper-slide .pic::after {
    padding-top: 100%;
  }
}
.banner-module .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 112px;
  top: auto;
  z-index: 2;
  width: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 1200px) {
  .banner-module .swiper-pagination {
    left: 64px;
  }
}
@media screen and (max-width: 768px) {
  .banner-module .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
  }
}
.banner-module .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.44;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .banner-module .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.banner-module .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 32px;
}
.banner-module .next-module {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .banner-module .next-module {
    display: none;
  }
}
.banner-module .next-module i {
  font-size: 1.25rem;
  color: #ffffff;
}
.banner-module .next-module span {
  font-size: 1rem;
}
.banner-module .navigation-box {
  position: absolute;
  bottom: 40px;
  right: 112px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .banner-module .navigation-box {
    right: 64px;
  }
}
@media screen and (max-width: 768px) {
  .banner-module .navigation-box {
    display: none;
  }
}
.banner-module .navigation-box .bi {
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 1rem;
  width: 50px;
  height: 50px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .banner-module .navigation-box .bi {
    width: 40px;
    height: 40px;
  }
}
.banner-module .navigation-box .bi:hover {
  background-color: rgba(250, 250, 250, 0.2);
}
.banner-module::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-image: linear-gradient(180deg, #00000000 0%, #000000 100%);
  opacity: 0.68;
  z-index: 1;
}

/* Component: components/sections/IndexNews.astro */
.index-news-module {
  position: relative;
}
.index-news-module .news-bg {
  position: absolute;
  max-width: 100%;
}
.index-news-module .news-bg img {
  max-width: 100%;
}
.index-news-module .news-bg.bg-1 {
  top: 0;
  left: 0;
}
.index-news-module .news-bg.bg-2 {
  bottom: 0;
  right: 0;
}
.index-news-module .module-body {
  margin: 0 -25px;
  padding: 0 25px;
  position: relative;
  overflow: hidden;
}
.index-news-module .module-body .swiper {
  overflow: visible;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card {
  border-radius: 10px;
  background-color: #00267e;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card:hover .news-image .pic {
  transform: scale(1.1);
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-image {
  flex-shrink: 0;
  overflow: hidden;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-image .pic {
  transition: all 0.3s ease-in-out;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-image .pic::after {
  padding-top: 66.81514%;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content {
  padding: 2rem;
  flex-grow: 1;
  position: relative;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content .news-card-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.45;
  font-weight: bold;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content .news-description {
  margin-bottom: 8rem;
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content .news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content .news-footer .news-date {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.55;
  font-weight: 200;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content .news-footer .news-read-more {
  border-radius: 50%;
  border: 1px solid transparent;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ffc400;
  color: #333333;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-news-module .module-body .swiper .swiper-wrapper .swiper-slide .news-card .news-content .news-footer .news-read-more:hover {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.index-news-module .module-body .news-nav-btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px solid #333333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .index-news-module .module-body .news-nav-btn {
    display: none;
  }
}
.index-news-module .module-body .news-nav-btn:hover {
  background-color: #ffc400;
  border: 1px solid #ffc400;
  color: #ffffff;
}
.index-news-module .module-body .swiper-prev-btn {
  left: 25px;
  transform: translate(-50%, -50%);
}
.index-news-module .module-body .swiper-next-btn {
  right: 25px;
  transform: translate(50%, -50%);
}

/* Component: components/sections/IndexServices.astro */
.index-services-module {
  position: relative;
  background-color: #00267e;
  overflow: hidden;
}
.index-services-module .services-bg {
  position: absolute;
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .index-services-module .services-bg {
    max-width: 50%;
  }
}
.index-services-module .services-bg img {
  max-width: 100%;
  height: auto;
}
.index-services-module .services-bg.bg-1 {
  top: 0;
  right: 0;
}
.index-services-module .services-bg.bg-2 {
  bottom: 0;
  left: 0;
}
.index-services-module .container {
  position: relative;
  z-index: 2;
}
.index-services-module .module-header {
  border-bottom: none;
  position: absolute;
  left: 16px;
  top: 94px;
}
@media screen and (max-width: 992px) {
  .index-services-module .module-header {
    position: relative;
    left: 0;
    top: 0;
  }
}
.index-services-module .services-row {
  margin-top: -14rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .index-services-module .services-row {
    margin-top: 2rem;
  }
}
.index-services-module .services-row:nth-child(even) {
  justify-content: flex-start;
}
.index-services-module .services-row:first-child {
  margin-top: 0;
}
.index-services-module .services-row .service-card {
  width: calc(50% - 3.125rem);
}
@media screen and (max-width: 992px) {
  .index-services-module .services-row .service-card {
    width: 100%;
  }
}
.index-services-module .services-row .service-card .service-image {
  position: relative;
}
.index-services-module .services-row .service-card .service-image .pic::after {
  padding-top: 52.4%;
}
.index-services-module .services-row .service-card .service-image .service-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  z-index: 2;
  border-radius: 10px;
  padding: 1.375rem 2.25rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}
.index-services-module .services-row .service-card .service-image .service-badge.service-badge-yellow {
  background-color: #ffc400;
}
.index-services-module .services-row .service-card .service-image .service-badge.service-badge-blue {
  background-color: #3c9ae2;
}
.index-services-module .services-row .service-card .service-image .service-badge.service-badge-green {
  background-color: #36a960;
}
.index-services-module .services-row .service-card .service-content {
  padding: 2rem;
  background-color: transparent;
}
.index-services-module .services-row .service-card .service-content .service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  min-height: 4.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-services-module .services-row .service-card .service-content .service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.index-services-module .services-row .service-card .service-content .service-learn-more i {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.index-services-module .services-row .service-card .service-content .service-learn-more:hover {
  color: #ffc400;
}
.index-services-module .services-row .service-card .service-content .service-learn-more:hover i {
  background-color: #ffc400;
  color: #00267e;
  border-color: #ffc400;
  transform: translateX(4px);
}

/* Component: components/sections/IndexVenueRental.astro */
.index-venue-rental-module {
  padding-top: 0;
  padding-bottom: 20px;
  text-align: center;
}
@media (max-width: 1200px) {
  .index-venue-rental-module {
    padding-bottom: 0;
  }
}
.index-venue-rental-module .venue-banner .pic::after {
  padding-top: 23%;
}
.index-venue-rental-module .venue-white-box {
  margin-top: -11.875rem;
  border-radius: 20px;
  padding: 6.5rem 5rem 3.625rem;
  display: inline-block;
  background-color: #faf9f8;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .index-venue-rental-module .venue-white-box {
    margin-top: -9rem;
    padding: 5rem 1.5rem 3rem;
  }
}
@media (max-width: 1200px) {
  .index-venue-rental-module .venue-white-box {
    margin-top: -6rem;
    padding: 5rem 0 3rem;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .index-venue-rental-module .venue-white-box .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .index-venue-rental-module .venue-white-box .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .index-venue-rental-module .venue-white-box .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .index-venue-rental-module .venue-white-box .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .index-venue-rental-module .venue-white-box .container {
    width: 1280px;
  }
}
.index-venue-rental-module .venue-white-box .module-body {
  border-radius: 10px;
  padding: 0.75rem;
  background-color: #00267e;
}
.index-venue-rental-module .venue-white-box .module-body .iframe-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.index-venue-rental-module .venue-white-box .module-body .iframe-box::after {
  content: '';
  padding-top: 40%;
  display: block;
}
.index-venue-rental-module .venue-white-box .module-body .iframe-box iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Component: components/sections/IndexDatabase.astro */
.index-database-module {
  position: relative;
  overflow: hidden;
}
.index-database-module .database-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: blur(8px);
  transform: scale(1.1);
}
.index-database-module .database-bg .pic::after {
  padding-top: 50%;
}
.index-database-module .container {
  position: relative;
  z-index: 1;
}
.index-database-module .module-body .database-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .index-database-module .module-body .database-cards {
    grid-template-columns: 1fr;
  }
}
.index-database-module .module-body .database-cards .database-card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.index-database-module .module-body .database-cards .database-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.index-database-module .module-body .database-cards .database-card .card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.index-database-module .module-body .database-cards .database-card .card-content .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.index-database-module .module-body .database-cards .database-card .card-content .card-description {
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-database-module .module-body .database-cards .database-card .card-image {
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}
.index-database-module .module-body .database-cards .database-card .card-image .pic {
  position: relative;
  overflow: hidden;
}
.index-database-module .module-body .database-cards .database-card .card-image .pic::after {
  padding-top: 60%;
}
.index-database-module .module-body .database-cards .database-card .card-image .pic::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
}
.index-database-module .module-body .database-cards .database-card .card-image.card-image-top {
  order: -1;
  margin-bottom: -30px;
  z-index: 1;
}
.index-database-module .module-body .database-cards .database-card .card-image.card-image-top .pic {
  border-radius: 0 0 60px 60px;
}
.index-database-module .module-body .database-cards .database-card .card-image.card-image-top .pic::before {
  top: -30px;
  background: inherit;
  border-radius: 50%;
  transform: translateY(-50%);
}
.index-database-module .module-body .database-cards .database-card .card-image.card-image-bottom {
  order: 1;
  margin-top: -30px;
  z-index: 1;
}
.index-database-module .module-body .database-cards .database-card .card-image.card-image-bottom .pic {
  border-radius: 60px 60px 0 0;
}
.index-database-module .module-body .database-cards .database-card .card-image.card-image-bottom .pic::before {
  bottom: -30px;
  background: inherit;
  border-radius: 50%;
  transform: translateY(50%);
}
.index-database-module .module-body .database-cards .database-card.database-card-yellow {
  background-color: #ffc400;
}
.index-database-module .module-body .database-cards .database-card.database-card-yellow .card-content .card-title {
  color: #333333;
}
.index-database-module .module-body .database-cards .database-card.database-card-yellow .card-content .card-description {
  color: #333333;
}
.index-database-module .module-body .database-cards .database-card.database-card-yellow .card-image.card-image-bottom .pic::before {
  background-color: #ffc400;
}
.index-database-module .module-body .database-cards .database-card.database-card-blue {
  background-color: #00267e;
}
.index-database-module .module-body .database-cards .database-card.database-card-blue .card-content .card-title {
  color: #ffffff;
}
.index-database-module .module-body .database-cards .database-card.database-card-blue .card-content .card-description {
  color: #ffffff;
}
.index-database-module .module-body .database-cards .database-card.database-card-blue .card-image.card-image-top .pic::before {
  background-color: #00267e;
}
.index-database-module .module-body .database-cards .database-card .card-pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.index-database-module .module-body .database-cards .database-card .card-pagination .pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.index-database-module .module-body .database-cards .database-card .card-pagination .pagination-dot.active {
  background-color: #ffffff;
  width: 24px;
  border-radius: 4px;
}
.index-database-module {
  background: var(--databaseBg) no-repeat center center / cover;
}
.index-database-module .module-header .header-left .module-title-zh {
  color: #ffffff;
}
.index-database-module .module-header .learn-more-link {
  color: #ffffff;
}
.index-database-module .module-header .learn-more-link .bi {
  border-color: #ffffff;
  color: #ffffff;
}
.index-database-module .module-header .learn-more-link:hover {
  color: #ffc400;
}
.index-database-module .module-header .learn-more-link:hover .bi {
  color: #ffc400;
  border-color: #ffc400;
  background-color: transparent;
}
.index-database-module .swiper {
  overflow: hidden;
}
.index-database-module .swiper .database-card {
  border-radius: 20px;
  padding: 1.625rem 1.375rem;
  background: #ffc400 var(--databaseDot1) no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.index-database-module .swiper .database-card:nth-child(3n + 2) {
  background-color: #00267e;
}
.index-database-module .swiper .database-card:nth-child(3n + 2) .card-content {
  color: #ffffff;
}
.index-database-module .swiper .database-card:nth-child(3n + 2) .card-content .card-title {
  border-color: #ffffff38;
}
.index-database-module .swiper .database-card:nth-child(2n) {
  flex-direction: column-reverse;
  background-image: var(--databaseDot2);
}
.index-database-module .swiper .database-card:nth-child(3n) {
  background-image: var(--databaseDot3);
}
.index-database-module .swiper .database-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 3rem;
  color: #333333;
}
.index-database-module .swiper .database-card .card-content .card-title {
  margin-bottom: 1rem;
  border-radius: 50px;
  border: 1px solid #33333338;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.index-database-module .swiper .database-card .card-content .card-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-database-module .swiper .database-card .card-image {
  flex-shrink: 0;
}
.index-database-module .swiper .database-card .card-image .pic::after {
  padding-top: 74.3842%;
}
.index-database-module .swiper .swiper-pagination {
  margin-top: 3rem;
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.index-database-module .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.44;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.index-database-module .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 32px;
}

/* Component: components/sections/IndexPartners.astro */
.index-partners-module {
  position: relative;
}
.index-partners-module .partners-bg-decor {
  position: absolute;
  height: 100%;
}
.index-partners-module .partners-bg-decor img {
  height: 100%;
}
.index-partners-module .partners-bg-decor.decor-1 {
  top: 0;
  right: 0;
}
.index-partners-module .partners-bg-decor.decor-2 {
  bottom: 0;
  left: 0;
}
.index-partners-module .module-body {
  margin: 0 -25px;
  padding: 0 25px;
  position: relative;
  overflow: hidden;
}
.index-partners-module .module-body .partners-swiper .swiper-wrapper .swiper-slide .partner-banner {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.index-partners-module .module-body .partners-swiper .swiper-wrapper .swiper-slide .partner-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.index-partners-module .module-body .partners-swiper .swiper-wrapper .swiper-slide .partner-banner .partner-link {
  display: block;
  text-decoration: none;
}
.index-partners-module .module-body .partners-swiper .swiper-wrapper .swiper-slide .partner-banner .partner-link .pic::after {
  padding-top: 56.25%;
}
.index-partners-module .module-body .partners-swiper .swiper-pagination {
  margin-top: 3rem;
  position: static;
  width: auto;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
@media screen and (max-width: 1200px) {
  .index-partners-module .module-body .partners-swiper .swiper-pagination {
    display: flex;
  }
}
.index-partners-module .module-body .partners-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #00267e;
  opacity: 0.44;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.index-partners-module .module-body .partners-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 32px;
}
.index-partners-module .module-body .partners-nav-btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px solid #3333334d;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #3333334d;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .index-partners-module .module-body .partners-nav-btn {
    display: none;
  }
}
.index-partners-module .module-body .partners-nav-btn:hover {
  background-color: #ffc400;
  border: 1px solid #ffc400;
  color: #ffffff;
}
.index-partners-module .module-body .partners-prev-btn {
  left: 25px;
  transform: translate(-50%, -50%);
}
.index-partners-module .module-body .partners-next-btn {
  right: 25px;
  transform: translate(50%, -50%);
}