        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 微博详情页样式 */
        .weibo-detail {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .weibo-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 10px 0 10px;
            border-bottom: 1px solid #eee;
            gap: 15px;
        }
        
        .weibo-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #F5E8C4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8B5A2B;
            font-weight: bold;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .weibo-user-info {
            flex-grow: 1;
        }
        
        .weibo-username {
            font-weight: bold;
            color: #5a4a3a;
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .weibo-meta {
            display: flex;
            gap: 15px;
            color: #999;
            font-size: 14px;
        }
        
        .weibo-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
            line-height: 1.4;
        }
        
        .weibo-text {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .weibo-images {
            margin-bottom: 30px;
        }
        
        .weibo-image {
            max-width: 100%;
            max-height: 500px;
            border-radius: 8px;
            margin-bottom: 10px;
            margin-top: 20px;
            display: block;
        }
        
        /* 微博列表 */
        .weibo-list {
            background-color: #fff;
            padding: 20px;
            margin-bottom:20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .weibo-list h2 {
            color: #8B5A2B;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: normal;
        }
        
        .weibo-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 15px;
        }
        
        .weibo-item:last-child {
            border-bottom: none;
        }
        
        .weibo-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #F5E8C4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8B5A2B;
            font-weight: bold;
            flex-shrink: 0;
        }.weibo-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F5E8C4;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #8B5A2B;
    font-weight: bold;
    flex-shrink: 0;
}