@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins|Noto+Sans+TC");
@import url("https://fonts.googleapis.com/css?family=Poppins|Noto+Serif+TC");
.flex_around {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_between {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_center, .area_group .area_item, .area_block {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_start, .area_group {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_end {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

body,
div {
  box-sizing: border-box;
}

body {
  clear: both;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif, FontAwesome;
  padding: 0;
  margin: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
  letter-spacing: 1px;
  background-color: #fff;
  line-height: 1.5;
}

.area_block {
  position: relative;
  width: 100%;
  background: #fff;
  margin: 10px auto;
  margin-top: 0;
  padding-bottom: 10px;
}
@keyframes float-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.area_block .arrow {
  display: none;
  position: absolute;
  bottom: 20px;
  font-size: 28px;
  color: #d32d26;
  animation: float-horizontal 1.5s ease-in-out infinite alternate;
}
.area_block .arrow.left {
  left: 5px;
}
.area_block .arrow.right {
  right: 5px;
  animation-direction: alternate-reverse;
}
@media (max-width: 768px) {
  .area_block .arrow {
    display: block;
  }
}

.area_group {
  align-items: flex-end;
  /* 禁止子項目換行 */
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  /* 若內容超出寬度，可水平滾動 */
  overflow-y: auto;
  max-width: 1080px;
  width: 100%;
  padding: 10px 20px;
}
.area_group .event_item {
  height: 50px;
  width: auto;
  margin-right: 10px;
}
.area_group .event_item img {
  height: 100%;
  width: auto;
}
.area_group .area_item {
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  border-radius: 40px;
  color: #DF828F;
  border: 2px solid #DF828F;
  flex-wrap: nowrap;
  font-size: 16px;
  text-align: center;
  margin: 0 5px;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.2;
}
.area_group .area_item:hover {
  background: #DF828F;
  color: #fff;
}

.menu-dropdown {
  top: 196px;
}

.jh-content-top {
  margin-top: 204px;
}
@media (max-width: 768px) {
  .jh-content-top {
    margin-top: 180px;
  }
}

.jh-bk-img {
  margin-top: 204px;
}
@media (max-width: 768px) {
  .jh-bk-img {
    margin-top: 180px;
  }
}/*# sourceMappingURL=wei_front.css.map */