@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;
}

.filter-section {
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.filter-section label {
  margin: 0;
  color: #3a6b4a;
  font-weight: bold;
}

.filter-select {
  max-width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  height: 38px;
  color: #555;
}

.news-table-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
}

.news-table {
  margin-bottom: 0;
}

.news-table > thead > tr > th {
  background-color: #5b8a72;
  color: #fff;
  font-weight: bold;
  border-bottom: none;
  padding: 14px 16px;
  font-size: 0.95em;
}

.news-table > tbody > tr > td {
  padding: 14px 16px;
  vertical-align: middle;
  border-top: 1px solid #eee;
  color: #444;
}

.news-table > tbody > tr:hover {
  background-color: #fcfdfe;
}

.news-date {
  color: #777;
}

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

.label1 {
  background-color: #3498db;
}

.label2 {
  background-color: #e67e22;
}

.label3 {
  background-color: #8e44ad;
}

.news-title-link {
  color: #333;
  display: block;
  transition: color 0.2s;
}

.news-title-link:hover {
  color: #298036;
}

.news-title-link i {
  margin-right: 5px;
  color: #aaa;
}

.news-content {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.news-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #5b8a72;
}

.news-title {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.news-meta {
  color: #888;
  font-size: 0.9rem;
  white-space: nowrap;
}

.news-meta i {
  margin-right: 6px;
  color: #5b8a72;
}

.news-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
  border-left: 4px solid #5b8a72;
  padding: 10px 15px 10px 25px;
  background-color: #fcfdfe;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 576px) {
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}/*# sourceMappingURL=news.css.map */