:root {
  --DefaultColor: #373A90;
  --SecondaryColor: #f5f5f5;
  --TitleTextColor: #243c51;
  --TitleBoxRadius: 30px;
  --BreakCardRadius: 16px
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* link 滑順 */
  scroll-behavior: smooth;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}


.container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10px;
  background-color: var(--DefaultColor);
}

.box {
  width: 100%;
  max-width: 1360px;
  padding: 60px 0;
}

.titleBox {
  display: flex;
  justify-content: center;
  width: 100%;
}


.title {
  font-size: 30px;
  font-weight: bold;
  color: var(--TitleTextColor);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 65px;
  line-height: 1;
  background-color: var(--DefaultColor);
  border-radius: 0 0 var(--TitleBoxRadius) var(--TitleBoxRadius);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

}

.title.gray {
  background-color: var(--SecondaryColor);
  color: #fff;
}

.title img {
  height: 28px;
}

.description {
  font-size: 20px;

}

.mapBg {
  background-color: #fffdf4;
  background-image: url(../imgs/serve_map.png);
}

.imageTitle {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.imageTitle img {
  width: 100%;
  max-width: 320px;
  display: block;
}

.imageTextBox {
  display: flex;
  justify-content: center;
  width: 100%;
}

.imageText {
  width: 100%;
  max-width: 320px;
  display: block;
}

.sloganTitle {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.sloganTitle .left {
  width: calc(100% / 7 * 3);
}

.sloganTitle .center {
  width: calc(100% / 7);
  height: 100%;
  position: relative;
}

.sloganTitle .center .line {
  width: 100px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  top: 50%;
  left: 50%;
  position: absolute;
}

.sloganTitle .right {
  width: calc(100% / 7 * 3);
}

.sloganTitle .des {
  color: #fff;
  font-weight: 500;
}

.sloganTitle .des64 {
  font-size: 64px;
}

.sloganTitle .des40 {
  font-size: 40px;
}

.sloganTitle .des32 {
  font-size: 32px;
}

.sloganTitle .des_tl {
  text-align: left;
}

.sloganTitle .des_tr {
  text-align: right;
}

.sloganTitle .des_tc {
  text-align: center;
}


@media (max-width:1024px) {
  .box {
    max-width: 900px;
  }

  .sloganTitle .des64 {
    font-size: 40px;
  }

  .sloganTitle .des40 {
    font-size: 28px;
  }

  .sloganTitle .des32 {
    font-size: 20px;
  }


}

@media (max-width:768px) {
  .title {
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
  }

  .title img {
    height: 20px;
  }

  .sloganTitle .des64 {
    font-size: 32px;
  }

  .sloganTitle .des40 {
    font-size: 18px;
  }

  .sloganTitle .des32 {
    font-size: 14px;
  }
}

@media (max-width:480px) {
  .sloganTitle {
    flex-direction: column-reverse;
  }

  .sloganTitle .left,
  .sloganTitle .right {
    width: 100%;
  }

  .sloganTitle .left>div,
  .sloganTitle .right>div {
    text-align: center;
  }

  .sloganTitle .center {
    display: none;
  }
}


.computerShowF {
  display: flex !important;
}

.mobileShowF {
  display: none !important;
}

.computerShow {
  display: block !important;
}

.mobileShow {
  display: none !important;
}

.computerShow480 {
  display: block !important;
}

.mobileShow480 {
  display: none !important;
}

.computerShowF480 {
  display: flex !important;
}

.mobileShowF480 {
  display: none !important;
}



@media (max-width:768px) {

  .computerShowF {
    display: none !important;
  }

  .mobileShowF {
    display: flex !important;
  }

  .computerShow {
    display: none !important;
  }

  .mobileShow {
    display: block !important;
  }
}

@media (max-width:480px) {

  .computerShowF480,
  .computerShow480 {
    display: none !important;
  }

  .mobileShowF480 {
    display: flex !important;
  }

  .mobileShow480 {
    display: block !important;
  }
}




/* swiper */

.scrollHand {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  z-index: 1;
}

/* 自訂 pagination 容器 */
.custom-pagination {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding-left: 50px;
}

/* 預設 bullet 樣式：白色橫條 */
.custom-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  opacity: 1;
  transition: background-color 0.3s ease;
}

/* 當前頁面：橘色 */
.custom-pagination .swiper-pagination-bullet-active {
  background-color: orange;
}

.swiperBtn {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 50px;
  z-index: 1;
  cursor: pointer;
}

.swiperBtn img {
  width: 100%;
}

.next_btn {
  right: 20px;
}

.prev_btn {
  transform: translateY(-50%) rotate(180deg);
  left: 20px;
}

@media (max-width:768px) {
  .swiperBtn {
    width: 30px;
  }
}

@media (max-width:480px) {
  .custom-pagination .swiper-pagination-bullet {
    width: 25px;
  }

  .custom-pagination {
    justify-content: center;
    padding-left: unset;
  }
}