.latest-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
}
.article-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.article-item a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
}
@media (max-width: 768px) {
.latest-articles {
grid-template-columns: 1fr;
    }
}
.hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}
.limited-text {
  display: inline-block;
  width: 300px; /* 设置最大宽度 */
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏溢出的文本 */
  text-overflow: ellipsis; /* 显示省略号 */
}