@import url("https://fonts.googleapis.com/css?family=Poppins|Noto+Sans+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, .block_group {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_start {
  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;
}

.background_template {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

body {
  clear: both;
  text-align: center;
  font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif, FontAwesome;
  font-size: 14px;
  color: #2b2b2b;
  padding: 0;
  margin: 0;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  position: relative;
  letter-spacing: 2px;
  background-color: #f6f4ec;
  background-size: 35px 35px;
  background-image: url("/images/icon/dot_main.png");
  background-repeat: repeat;
  line-height: 1.5;
}

img {
  width: 100%;
  height: auto;
}

.block_group {
  margin-top: 10px;
}
.block_group .blue_block {
  max-width: 250px;
  margin: 5px;
}
.block_group .blue_block .title {
  font-size: 16px;
  color: #fff;
  background: #036eb8;
  padding: 10px 0;
}
.block_group .blue_block .title .small {
  font-weight: 400;
  font-size: 14px;
}
.block_group .blue_block .banner img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=newyear.css.map */