:root {
  --DefaultColor: #FFF100;
  --SecondaryColor: #2F4961;
  --TitleTextColor: #243c51;
  --TitleBoxRadius: 30px;
  --BreakCardRadius: 16px
}

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


.container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

.box {
  width: 100%;
  max-width: 1440px;
  padding: 0 0 61px;
}

.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);
}

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

  .title img {
    height: 20px;
  }
}

.computerShowF {
  display: flex !important;
}

.mobileShowF {
  display: none !important;
}

.computerShow {
  display: block !important;
}

.mobileShow {
  display: none !important;
}

@media (max-width:768px) {

  .computerShowF {
    display: none !important;
  }

  .mobileShowF {
    display: flex !important;
  }

  .computerShow {
    display: none !important;
  }

  .mobileShow {
    display: block !important;
  }
}