/* topLogo */
.topLogo {
  width: 100%;
  background-color: #fff;
}
.topLogo_container {
  margin: auto;
  max-width: 1220px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.topLogo_img {
  margin: 10px 0;
  width: 80%;
}

/* navBar */
.navBar {
  width: 100%;
  background-color: #3db877;
}
.navBar_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  flex-wrap: wrap;
  margin: auto;
}

.navBar_item:hover {
  color: black;
  background-color: white;
  font-weight: 700;	
}
.navBar_item {
  text-align: center;
  padding: 1.5% 1.5%;
  color: white;
  min-width: fit-content;
  font-family: 'noto sans TC';
}
.navBar_item a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 959px) {
  .navBar_container {
    width: 100%;
    overflow-x: scroll;
	flex-wrap: nowrap; 
	justify-content: flex-start;  
  }
  .navBar_item {
    flex-shrink: 0;
    display: inline-block;
	background-color: #54c98b;
    padding: 1.5% 2%;
	margin: 2% 1%; 
	border-radius: 1.5vw;
  }
  .topLogo_img {
    width: 100%;
  }
}

/* swiper */
.swiper {
  width: 100%;
/*  height: 540px;*/
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.swiper-img-pc {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-img-mo {
  display: none;
}
.swiper-button-container {
  position: absolute;
  height: 100%;
  max-width: 1220px;
  width: calc(100% - 20px);
  top: 0;
  right: 50%;
  transform: translate(50%, 0%);
  z-index: 2;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-button-next {
  pointer-events: auto;
  color: white;
}
.swiper-pagination-bullet {
  /* 點點的顏色 */
  background-color: white;
}
@media screen and (max-width: 959px) {
  .swiper {
    height: auto;
  }
  .swiper-img-pc {
    display: none;
  }
  .swiper-img-mo {
    display: block;
    width: 100%;
    height: auto;
  }
}
