/* 头像样式优化 */
.avatar-container {
    text-align: center;
    margin: 30px 0;
}

.avatar-img {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.avatar-img:hover {
    transform: scale(1.05);
}

.profile-title {
    margin: 20px 0 10px 0;
    color: #333;
}

.profile-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

/* 文章列表样式 */
.post-list {
    list-style: none;
    padding: 0;
}

.post-list li {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.post-date {
    color: #888;
    font-size: 0.9em;
    margin-right: 10px;
}

/* 竖直排列图片样式 */
.vertical-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.vertical-img {
    width: 60%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vertical-img:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
a,
a:link,
a:visited {
  color: inherit;       /* 跟随正文颜色 */
  text-decoration: none; /* 去掉下划线（可选） */
}

a:hover,
a:active {
  color: #007acc;        /* 鼠标悬停时高亮（可选） */
  text-decoration: underline; /* 悬停时显示下划线（可选） */
}