/* ===== 学生列表页 ===== */
.home-page .stat-row {
  margin-bottom: 24px;
}
.home-page .stat-card {
  border-radius: 8px;
  transition: transform 0.2s;
}
.home-page .stat-card:hover {
  transform: translateY(-2px);
}
.home-page .stat-value {
  font-weight: 700;
  font-size: 24px;
}
.home-page .table-wrapper {
  background: #fff;
  border-radius: 8px;
}
/* 头像列 */
.student-avatar {
  vertical-align: middle;
}
.student-name {
  font-weight: 600;
  font-size: 14px;
}
.student-email {
  color: #1677ff;
}
.student-phone {
  font-family: monospace;
}

/* ===== 关于系统页 ===== */
.about-page {
  padding: 40px;
  background: #e6f7ff;
  min-height: 100vh;
}
.about-page .about-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-page .system-info {
  text-align: left;
  margin-top: 24px;
}

/* ===== 校园公告页 ===== */
.post-list .post-card {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.post-list .post-title {
  font-weight: 600;
}
.post-list .post-body {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== 评论留言页 ===== */
.comment-list .comment-item {
  display: flex;
  gap: 12px;
  width: 100%;
}
.comment-list .comment-avatar {
  flex-shrink: 0;
}
.comment-list .comment-bubble {
  flex: 1;
  border-radius: 0 12px 12px 12px;
  background: #fafafa;
}
.comment-list .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.comment-list .comment-author {
  font-weight: 700;
  font-size: 14px;
}
.comment-list .comment-email {
  color: #999;
  font-size: 12px;
}
.comment-list .comment-body {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== 相册列表页 ===== */
.album-list .album-card {
  border-radius: 12px;
  overflow: hidden;
}
.album-list .album-cover {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-list .album-cover-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.6);
}
.album-list .album-title {
  font-size: 14px;
  font-weight: 600;
}

/* ===== 待办事项页 ===== */
.todo-list .progress-card {
  text-align: center;
}
.todo-list .progress-label {
  color: #999;
  font-size: 14px;
  margin-bottom: 4px;
}
.todo-list .todo-title {
  font-weight: 500;
}
.todo-list .todo-done {
  text-decoration: line-through;
  color: #bbb;
}
.todo-list .todo-pending {
  color: #333;
}

/* ===== 校园相册页 ===== */
.photo-gallery .photo-card {
  border-radius: 8px;
  overflow: hidden;
}
.photo-gallery .photo-thumb {
  height: 160px;
  object-fit: cover;
  background: #f5f5f5;
}
.photo-gallery .photo-meta {
  font-size: 13px;
}
.photo-gallery .pagination-wrapper {
  text-align: center;
  margin-top: 28px;
}

