.post-item {
    padding: 0;
    margin: 0;
    border: none;
}

.post-item {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.post-item:last-child {
    border-bottom: none;
}

.post-item .post-info:first-child {
    margin: 20px 0 5px 0;
    padding: 0;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 15px;
}

.post-user {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 6px;
    object-fit: cover;
}

.post-user a {
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.post-user a:hover {
    color: #4091DD;
}

.post-views {
    display: inline-flex;
    align-items: center;
    color: #999;
    pointer-events: none;
    margin-right: 15px;
}

.post-views i {
    margin-right: 4px;
    color: #999;
    font-size: 14px;
}

.follow-btn {
    margin-left: auto;
    padding: 5px 15px;
    background-color: white;
    color: #4091DD;
    border: 1px solid #4091DD;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}

.follow-btn:hover {
    background-color: #f5faff;
}

.follow-btn.followed-btn {
    color: #666;
    border-color: #ddd;
    min-width: 80px;
}

.follow-btn.followed-btn:hover {
    background-color: white;
    color: #4091DD;
}

.post-title {
    margin: 0 0 5px 0;
    padding: 0;
}

.post-title a {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    text-decoration: none;
}

.post-title a:hover {
    color: #4091DD;
}

.post-content-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin: 0;
    padding: 0;
}

.post-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 5px 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 5px 0;
    padding: 0;
}

.post-image {
    position: relative;
    width: 168px;
    height: 110px;
    overflow: hidden;
    border-radius: 4px;
    margin: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-item .post-info:last-child {
    margin: 5px 0 20px 0;
    padding: 0;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 15px;
    justify-content: space-between;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.post-tags .section-tag {
    padding: 2px 8px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.post-tags .section-tag:hover {
    background-color: #f5f5f5;
    color: #4091DD;
}

.post-actions {
    display: flex;
    align-items: center;
}

.post-action-btn {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
}

.post-action-btn i {
    margin-right: 4px;
    font-size: 20px;
}

.post-action-btn:hover {
    color: #4091DD;
}

.post-action-btn.active i {
    color: #FF5722;
}

.post-action-btn.active.like i {
    color: #FF2D55;
}

.post-action-btn.active.favorite i {
    color: #FFC107;
}

.post-info span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.post-info i {
    margin-right: 4px;
    font-size: 14px;
}

.post-info span:not(.post-user) a.light-blue-text,
.post-info .section-link a {
    color: rgb(255, 193, 7);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.post-info span:not(.post-user) a.light-blue-text:hover,
.post-info .section-link a:hover {
    color: rgb(255, 193, 7);
    text-decoration: none;
}

.post-list .layui-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-list .layui-card-header .title {
    font-weight: bold;
}

.post-list .layui-card-header .title i {
    margin-right: 5px;
}

.post-action-btn.like i,
.post-action-btn.favorite i,
.post-action-btn.comment i {
    font-size: 20px;
}