.wechat-posts-list {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    box-sizing: border-box;
}

.date-group {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
}

.date-header {
    padding: 10px 15px;
    background: #f2f2f2;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eaeaea;
}

.wechat-post {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.wechat-post:last-child {
    border-bottom: none;
}

.post-content {
    flex: 1;
    padding-right: 15px;
    min-width: 0;
}

.wechat-post h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wechat-post h3 a {
    color: #333;
    text-decoration: none;
}

.wechat-post h3 a:hover {
    color: #576b95;
}

.post-views {
    font-size: 12px;
    color: #999;
}

.post-thumbnail.right-thumbnail {
    width: 80px;
    height: 80px;
    min-width: 80px;
    overflow: hidden;
    margin-left: 15px;
    background: #f5f5f5;
    border-radius: 8px; 
}

.post-thumbnail.right-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; 
}

.post-thumbnail.right-thumbnail.empty-thumbnail {
    background: #f5f5f5;
    border-radius: 8px; 
}

/* 小设备调整 */
@media screen and (max-width: 768px) {
    .wechat-posts-list {
        padding: 10px;
    }
    
    .wechat-post {
        padding: 10px;
    }
    
    .post-thumbnail.right-thumbnail {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 8px; 
    }
    
    .post-content {
        padding-right: 10px;
    }
    
    .wechat-post h3 {
        font-size: 15px;
    }
    
    .post-views {
        font-size: 11px;
    }
}