        /* 右侧内容区 */
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        /* 微博墙样式 */
        .weibo-wall {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        /* 发布微博表单 */
        .weibo-form {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .weibo-form h2 {
            color: #8B5A2B;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: normal;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #5a4a3a;
            font-weight: bold;
        }
        
        .form-group input[type="text"],
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: border 0.3s;
        }
        
        .form-group input[type="text"]:focus,
        .form-group textarea:focus {
            border-color: #8B5A2B;
            outline: none;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-group input[type="file"] {
            display: none;
        }
        
        .file-upload {
            display: inline-block;
            padding: 8px 15px;
            background-color: #F5E8C4;
            color: #5a4a3a;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .file-upload:hover {
            background-color: #e0d5c0;
        }
        
        .submit-btn {
            background-color: #8B5A2B;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #6d4622;
        }
        
        /* 微博列表 */
        .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-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;
}
        .weibo-content {
            flex-grow: 1;
        }
        
        .weibo-header {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            gap: 10px;
        }
        
        .weibo-username {
            font-weight: bold;
            color: #5a4a3a;
        }
        
        .weibo-date {
            color: #999;
            font-size: 12px;
        }
        
        .weibo-ip {
            color: #999;
            font-size: 12px;
        }
        
        .weibo-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
        }
        
        .weibo-text {
            margin-bottom: 10px;
            color: #555;
            line-height: 1.5;
        }
        
        .weibo-image {
            max-width: 100%;
            max-height: 200px;
            border-radius: 4px;
            margin-top: 10px;
        }