/* 通用容器 */
.grass-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
#grass-header {
  background: #004d40;
  color: #fff;
  padding: 10px 0;
}

.grass-logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.grass-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.grass-nav li {
  margin: 0 10px;
}

.grass-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Footer */
#grass-footer {
  background: #263238;
  color: #ccc;
  padding: 20px 0;
  text-align: center;
}

.grass-footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .grass-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .grass-nav li {
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .grass-logo a {
    font-size: 1.2rem;
  }
  .grass-nav a {
    font-size: 0.9rem;
  }
  .grass-footer-info p {
    font-size: 0.8rem;
  }
}
/*通用结束*/
/* 面包屑导航 */
.grass-breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.grass-breadcrumb li {
  margin-right: 5px;
}

.grass-breadcrumb li::after {
  content: ">";
  margin-left: 5px;
  color: #888;
}

.grass-breadcrumb li:last-child::after {
  content: "";
}

.grass-breadcrumb a {
  text-decoration: none;
  color: #004d40;
}

/* 新闻列表 */
.grass-section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.grass-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.grass-card {
  background: #f9f9f9;
  padding: 20px;
  flex: 1 1 300px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.grass-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #004d40;
}

.grass-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.grass-news-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.grass-readmore {
  display: inline-block;
  margin-top: 10px;
  color: #00695c;
  text-decoration: none;
  font-weight: bold;
}

.grass-readmore:hover {
  text-decoration: underline;
}

/* 分页 */
.grass-pagination-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 30px 0;
}

.grass-page-link {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #004d40;
  transition: background 0.2s ease;
}

.grass-page-link:hover {
  background: #eef7f5;
}

.grass-page-link.active {
  background: #004d40;
  color: #fff;
  border-color: #004d40;
}

/* 响应式布局 */
@media (max-width: 768px) {
  .grass-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .grass-section-title {
    font-size: 1.5rem;
  }
}
