@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;
}

body {
  font-family: "Microsoft JhengHei", 微軟正黑體, "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
}

ul {
  list-style-type: none;
}

p {
  line-height: 2;
}

[v-cloak] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.w100p {
  width: 100%;
}

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

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

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

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-content {
  padding: 60px 15px;
  background: url("/static/image/bg-1.png") left 60px no-repeat, url("/static/image/bg-2.png") right 80px no-repeat, url("/static/image/bg-3.png") bottom left no-repeat, url("/static/image/bg-4.png") bottom right no-repeat;
  background-size: auto, auto, 160px, 60%;
  max-width: 960px;
  min-height: 640px;
  padding-bottom: 200px;
}

.page-title {
  position: relative;
  display: inline-flex;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.page-title span:first-child {
  color: #000;
}
.page-title span:last-child {
  color: #a6be66;
}

@media (min-width: 576px) {
  .page-title:before, .page-title:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 60px;
    background-color: #000;
  }
  .page-title:before {
    right: calc(100% + 20px);
  }
  .page-title:after {
    left: calc(100% + 20px);
  }
}
.floating-btns {
  position: fixed;
  right: 30px;
  bottom: 10%;
  display: flex;
  flex-direction: column;
}
.floating-btns .btn-floating {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
}
.floating-btns .btn-floating:nth-child(1) {
  background-color: #5e9cb5;
}
.floating-btns .btn-floating:nth-child(1):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background-color: #5e9cb5;
}
.floating-btns .btn-floating:nth-child(2) {
  background-color: #a8bf67;
}
.floating-btns .btn-floating:nth-child(2):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background-color: #a8bf67;
}
.floating-btns .btn-floating:nth-child(3) {
  background-color: #d1bc0b;
}
.floating-btns .btn-floating:nth-child(4) {
  background-color: #e19bbb;
}

@media (min-width: 768px) {
  .floating-btns .btn-floating {
    width: 64px;
    height: 64px;
    font-size: 1rem;
  }
}
.header {
  position: relative;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  width: 100%;
}
.header .navbar-logo {
  display: inline-block;
  width: 200px;
  margin-right: 20px;
}
.header .navbar-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding-top: 60px;
  overflow-y: auto;
  z-index: 1;
}
.header .navbar-menu a {
  display: block;
  padding: 15px 20px;
  color: #000;
  white-space: nowrap;
  text-align: left;
  transition: all 0.3s;
}
.header .navbar-menu a:hover {
  color: #59a73a;
}
.header .navbar-menu li {
  width: 100%;
}
.header .navbar-menu li.active a {
  position: relative;
  color: #59a73a;
}
.header .navbar-menu li.active a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #59a73a;
}
.header .navbar-menu .dropdown {
  position: relative;
}
.header .navbar-menu .dropdown:hover .dropdown-menu {
  display: block;
}
.header .navbar-menu .dropdown-menu {
  display: none;
  position: static;
  border-top: 1px solid #c8dbbe;
}
.header .navbar-menu .dropdown-menu a {
  display: block;
  margin: 3px 0;
  padding-left: 40px;
  opacity: 0.9;
}

@media (min-width: 992px) {
  .header .container {
    width: 970px;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
  }
  .header .navbar-menu {
    position: static;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    padding-top: 0;
    overflow-y: inherit;
  }
  .header .navbar-menu a {
    color: #000;
    padding: 10px;
  }
  .header .navbar-menu a:hover {
    color: #59a73a;
  }
  .header .navbar-menu li {
    width: auto;
  }
  .header .navbar-menu li.active {
    position: relative;
  }
  .header .navbar-menu li.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background-color: #59a73a;
  }
  .header .navbar-menu li.active a {
    color: #59a73a;
  }
  .header .navbar-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: transparent;
    border-top: none;
    z-index: 1;
  }
  .header .navbar-menu .dropdown-menu a {
    display: block;
    color: #fff;
    background-color: #59a73a;
    min-width: 120px;
    margin: 3px 0;
    padding-left: 10px;
    text-align: center;
    opacity: 0.9;
  }
  .header .navbar-menu .dropdown-menu a:hover {
    color: #fff;
    background-color: #1a6fb0;
  }
}
#menuToggle {
  display: none;
}
#menuToggle:checked ~ .hamburger {
  position: fixed;
}
#menuToggle:checked ~ .hamburger span {
  background-color: transparent;
}
#menuToggle:checked ~ .hamburger span:before {
  transform: rotate(45deg);
}
#menuToggle:checked ~ .hamburger span:after {
  transform: rotate(-45deg);
}
#menuToggle:checked ~ .navbar-menu {
  display: flex;
  animation: fadeIn 0.3s;
}
#menuToggle:checked ~ .navbar-menu a {
  text-align: center;
  font-size: 1.5rem;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2;
}
.hamburger span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition: all 0.3s;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition: all 0.3s;
}
.hamburger span:before {
  transform: translateY(-13px);
}
.hamburger span:after {
  transform: translateY(13px);
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  line-height: 2;
  margin-bottom: 16px;
}
.table th {
  color: #fff;
  background-color: #a6be66;
  border: 1px solid #dee2e6;
  padding: 12px;
}
.table td {
  padding: 12px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

.header {
  background-image: url("/static/image/maintenance/banner.jpg");
}

.table th, .table td {
  text-align: center;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 40px 15px;
  background: url("/static/image/footer-left.png") left bottom no-repeat, url("/static/image/footer-right.png") right bottom no-repeat;
  background-size: 160px, 240px;
  background-color: #a7bf66;
}
footer .counter, footer .time, footer .contact {
  margin-bottom: 12px;
}
footer .contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
footer .contact li {
  margin: 6px 10px;
}/*# sourceMappingURL=maintenance.css.map */