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

/* navBar */
.navBar {
  width: 100%;
  background-color: #241719;
}
.navBar_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  margin: auto;
}
.navBar_item:hover {
  color: white;
  background-color: #241719;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}
.navBar_item {
  text-align: center;
  padding: 15px 10px;
  color: white;
  min-width: fit-content;
  border-bottom: 1px solid #241719;
  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;
  }
  .navBar_item {
    flex-shrink: 0;
    display: inline-block;
	background-color: #57474a;
	margin: 15px 10px; 
	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;
  }
}
