<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 鍒嗛〉鍣ㄦ牱寮� */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.pagination a,
.pagination span {
  padding: 4px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
}

.pagination a:hover {
  background-color: #f0f0f0;
}

.pagination .current {
  background-color: #279864;
  color: white;
  border-color: #279864;
}

.image-container {
  width: 217px;
  height: 202px;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.article-item-box {
  padding: 30px 0px;
  border-bottom: 1px solid #eeeeee;
}
.article-text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.article-title {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}
.article-summary {
  font-size: 14px;
  color: #666666;
  margin-top: 20px;
}
.article-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.article-time &gt; div:first-child {
  font-size: 14px;
  color: #808080;
}
.article-time &gt; a {
  font-size: 14px;
  color: #333333;
  cursor: pointer;
}
.truncated-text {
  position: relative;
  max-height: 3.5em;
  line-height: 2em;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .image-container {
    width: 180px;
    height: 168px;
  }
}

@media (max-width: 1200px) {
  .image-container {
    width: 160px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 100px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .image-container {
    width: 80px;
    height: 77px;
  }
  .article-item-box {
    padding: 20px 0px;
  }
}

@media (max-width: 992px) {
  .page-number {
    display: none;
  }
}
</pre></body></html>