body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Noto Sans SC", serif;
}
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.fullscreen-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-image: url("./image/20250328/bg.png");
}

#all-pages {
  position: relative;
  top: 0;
  transition: all 800ms ease;
  /* height set by js */
}
.page {
  height: 100%;
  width: 100%;
  scroll-snap-align: start;
}

.logo,
.bottom-btn {
  display: none;
}

.logo {
  position: fixed;
  top: 80px;
  left: 32px;
  z-index: 2;
}

.logo img {
  width: 80px;
}

.bottom-btn {
  position: fixed;
  bottom: 32px;
  right: 64px;
  z-index: 2;
}

.bottom-btn a {
  background-color: #ea5b87;
  margin: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  color: #fff;
  font-weight: 500;
}

.bottom-btn a:hover {
  background-color: #f585a7;
  transform: scale(0.95);
  transition: all 300ms ease;
}

.bottom-btn img {
  width: 40px;
  padding: 4px 16px;
}

/* page 1 */

.page-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-1-logo {
  padding-bottom: 24px;
}

.page-1-logo img {
  width: 100%;
}

.page-1-but {
  display: flex;
}

.page-1-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 8%;
}

.page-1-but a {
  width: 160px;
  height: 104px;
  background-color: #f8bc5e;
  border-radius: 8px;
  margin: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
}

.page-1-but a img {
  width: 54px;
  height: auto;
  padding: 8px;
}

.page-1-but a p {
  color: black;
  font-weight: 500;
  font-size: 24px;
}

.page-1-but a:hover {
  background-color: #e49a23;
  transition: all 300ms ease;
  transform: scale(0.95);
}

.page-1-bottom p {
  color: white;
  text-align: center;
  padding: 4px;
}

.page-1-right img {
  width: 100%;
  padding-top: 74px;
}

/* page 2 */

.page-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-2-left {
  padding-left: 8%;
}

.page-2-left img {
  width: 100%;
}

.page-2-center {
  font-size: 32px;
  font-weight: 500;
}

.page-2-circle {
  height: 120px;
  width: 120px;
  background-color: #f8bc5e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 16px;
}

.page-2-right {
  padding-top: 24px;
  padding-left: 3%;
}

.page-2-right img {
  width: 100%;
}

/* page 3 */

.page-3 {
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  font-weight: 500;
}

.page-3-head {
  padding-bottom: 32px;
}

.page-3-head h2 {
  color: #f8bc5e;
  text-align: center;
  font-size: 32px;
}

.page-3-head p {
  color: white;
  text-align: center;
  padding: 16px 0;
  font-size: 20px;
}

.page-3-content {
  display: flex;
  padding: 0 15%;
}

.page-3-content img {
  width: 100%;
}

.page-3-text h2 {
  color: #f8bc5e;
  font-size: 32px;
}

.page-3-text ul {
  color: white;
}

.page-3-text li {
  padding: 8px 0;
  font-size: 20px;
}

/* page 4 */
.page-4 {
  font-weight: 500;
}

/* page 5 */
.page-5 {
  display: flex;
  justify-content: center;
}

.page-5-left {
  padding: 240px 8%;
}

.page-5-left h2 {
  color: #f8bc5e;
  font-size: 32px;
  text-align: center;
}

.page-5-left a {
  display: flex;
  color: white;
  font-size: 24px;
  background-color: #70a8e0;
  font-weight: 500;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 32px;
  width: 120px;
}

.page-5-left a:hover{
  background-color: #487cb1;
  transition: all 300ms ease;
  transform: scale(0.95);
}

.page-5-left a img {
  width: 40px;
  padding-right: 8px;
}

.page-5-right img {
  width: 100%;
}

/* dot */
.nav-dot-container {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.nav-dot {
  width: 20px;
  height: 30px;
  padding: 8px 0px;
  margin: auto;
}
.nav-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  transition: all 200ms ease;
  margin: auto;
}
.nav-dot span:hover {
  width: 12px;
  height: 12px;
}
.nav-dot.dot-active span {
  width: 15px;
  height: 15px;
  background-color: #ea5b87;
}

.none {
  display: none;
}

@media screen and (max-width: 1200px) {
  .page-3-content {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  .m-none {
    display: none;
    visibility: hidden;
  }

  .m-block {
    display: block;
  }

  .nav-dot {
    padding: 0;
  }

  .bottom-btn-m {
    position: fixed;
    z-index: 2;
    display: flex;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: 4px;
  }

  .bottom-btn-m a {
    background-color: #ea5b87;
    padding: 8px 16px;
    display: flex;
    width: 120px;
    margin: 0 16px;
    border-radius: 32px;
    color: #fff;
    font-weight: 500;
    justify-content: center;
    align-items: center;
  }

  .bottom-btn-m img {
    width: 24px;
    padding-right: 4px;
    height: 24px;
  }

  .page-1 {
    flex-direction: column;
    padding-top: 32px;
  }

  .page-1-left {
    padding: 0;
  }

  .page-1-left img {
    width: 120px;
  }

  .page-1-but a {
    width: 140px;
    height: 90px;
  }

  .page-1-but a img {
    width: 40px;
  }

  .page-1-right-m {
    padding: 0 3%;
  }

  .page-1-right-m img {
    width: 94%;
  }

  .logo {
    left: 16px;
    top: 50px;
  }

  .logo img {
    width: 60px;
  }

  .page-2 {
    flex-direction: column;
  }

  .page-2-center {
    display: flex;
    font-size: 24px;
    padding-bottom: 8%;
  }

  .page-2-circle {
    width: 80px;
    height: 80px;
    margin: 0 16px;
    margin-bottom: 16px;
  }

  .page-3 {
    padding-top: 40px;
  }

  .page-3-head {
    padding-bottom: 0;
  }

  .page-3-head h2,
  .page-3-content h2 {
    font-size: 24px;
    padding-bottom: 4px;
    text-align: center;
  }

  .page-3-head p {
    font-size: 16px;
    padding: 0 16px;
  }

  .page-3-text li {
    font-size: 16px;
  }

  .page-3-content {
    padding: 16px;
    justify-content: center;
  }

  .page-5 {
    flex-direction: column;
    justify-content: flex-start;
  }

  .page-5-left {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-5-left a {
    margin-top: 16px;
  }

  .page-5-right {
    margin-left: -12%;
  }
}

.swiper-container {
  width: 80%;
  height: auto;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 80%;
  margin-right: 16px;
}

.swiper-button-next {
  color: white;
}

.swiper-button-next {
  background-image: url(./image/arrow-right.svg);
}

.swiper-button-prev {
  background-image: url(./image/arrow-left.svg);
}

.header-ad {
	position: relative;
    z-index: 999; !important 
}
