/* 最新文章小工具样式 */
.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-item {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.post-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.post-link:hover {
    color: #e74c3c;
    transform: translateX(5px);
}

.post-thumbnail {
    flex: 0 0 80px;
    margin-right: 15px;
}

.post-thumbnail img {
    border-radius: 4px;
}

.post-content {
    flex: 1;
}

.post-title {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
}

.post-date {
    font-size: 0.85em;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .post-thumbnail {
        flex-basis: 60px;
    }
}


/*zyg*/
.recent-posts-widget{
    padding: 20px 15px;
}