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

html,
body {
  font-size: 16px;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

.breadcrumb {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.breadcrumb > li + li:before {
  color: #ccc;
  content: "/ ";
}

.breadcrumb a {
  color: #5b8a72;
}

.breadcrumb .icon-home {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

[v-cloak] {
  display: none;
}

footer {
  background-color: #298036;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer p {
  margin: 4px 0;
  font-size: 0.9em;
  opacity: 0.9;
}

footer a {
  color: #c8e6c9;
}

footer a:hover {
  color: #fff;
}

.module-title {
  text-align: center;
  margin-bottom: 30px;
}

.module-title h2 {
  font-size: 24px;
  color: #3a6b4a;
  font-weight: 700;
  display: inline-block;
  border-bottom: 3px solid #a3d165;
  padding-bottom: 8px;
}

.module-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.module-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 24px;
  width: calc(33.333% - 14px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.module-card .card-badge {
  position: absolute;
  top: 14px;
  right: -20px;
  background-color: #e74c3c;
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
  padding: 3px 28px;
  transform: rotate(35deg);
  width: 90px;
}

.module-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.module-card .card-icon i {
  font-size: 36px;
  color: #fff;
}

.module-card h4 {
  font-size: 1.1em;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.module-card p {
  font-size: 0.88em;
  color: #888;
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.module-card .card-btn {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  transition: opacity 0.2s;
}

.module-card .card-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.module-card .card-btn.disabled {
  background-color: #aaa !important;
  cursor: default;
}

.icon-news {
  background-color: #3498db;
}

.icon-sms {
  background-color: #27ae60;
}

.icon-reserve {
  background-color: #e67e22;
}

.icon-inspect {
  background-color: #16a085;
}

.icon-subsidy {
  background-color: #8e44ad;
}

.icon-draw {
  background-color: #c0392b;
}

.btn-news {
  background-color: #3498db;
}

.btn-sms {
  background-color: #27ae60;
}

.btn-reserve {
  background-color: #e67e22;
}

.btn-inspect {
  background-color: #16a085;
}

.btn-subsidy {
  background-color: #8e44ad;
}

.btn-draw {
  background-color: #c0392b;
}

.notice-bar {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 12px 20px;
  margin-bottom: 30px;
  border-radius: 0 6px 6px 0;
  font-size: 0.95em;
  color: #856404;
}

.notice-bar i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .custom-navbar .navbar-brand {
    display: block;
  }
  .custom-navbar .navbar-nav {
    display: block;
  }
  .custom-navbar .navbar-nav > li > a {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .module-card {
    width: 100%;
    min-width: unset;
  }
}/*# sourceMappingURL=index.css.map */