@charset "utf-8";
/* CSS Document */

/* 首页专属样式 */
.main {
  margin-top: 100px;
}

/* 横幅样式 */
.banner {
  text-align: center;
  margin-bottom: 48px;
  padding: 24px 0;
}

.banner h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.banner p {
  color: #888888;
  margin-bottom: 16px;
}

.banner-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.8;
}

/* 最新笔记区域 */
.latest-notes {
  margin-top: 32px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #EEEEEE;
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.note-card {
  padding: 16px;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  transition: box-shadow 0.2s ease;
}

.note-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.note-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.note-excerpt {
  font-size: 14px;
  color: #888888;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.note-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888888;
}

.note-tag {
  display: inline-block;
  padding: 2px 6px;
  background-color: #f0f7ff;
  color: #4A90E2;
  border-radius: 4px;
}

/* 移动端适配 */
@media (max-width: 767px) {
  .main {
    margin-top: 80px;
  }

  .banner h1 {
    font-size: 24px;
  }

  .notes-list {
    grid-template-columns: 1fr;
  }
}