        /* 基础样式 - 与主页面保持一致 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../图片/壁纸.jpg') no-repeat center center;
            background-size: cover;
            z-index: -2;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            /* 新增的固定全屏属性 */
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            max-width: none; /* 覆盖原有的max-width限制 */
            margin: 0; /* 移除原有的auto margin */
            border-radius: 0; /* 可选：移除圆角以实现真正的全屏 */
        }
        
        /* 头部导航 */
        .header {
            background: linear-gradient(90deg, #6e8efb, #a777e3);
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
        }
        
        .back-btn {
            color: white;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .back-btn i {
            margin-right: 8px;
        }
        
        /* 动态内容区域 */
        .timeline {
            padding: 20px;
        }
        
        .timeline-title {
            text-align: center;
            margin-bottom: 30px;
            color: #6e8efb;
            position: relative;
        }
        
        .timeline-title:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #6e8efb, #a777e3);
        }
        
        /* 动态条目 */
        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }
        
        .timeline-item:before {
            content: "";
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #ddd;
        }
        
        .timeline-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            border: 3px solid white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        
        .timeline-content {
            flex: 1;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .timeline-name {
            font-weight: bold;
            color: #6e8efb;
        }
        
        .timeline-time {
            color: #999;
            font-size: 14px;
        }
        
        .timeline-text {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .timeline-footer {
            display: flex;
            gap: 15px;
            color: #999;
            font-size: 14px;
        }
        
        .timeline-footer i {
            margin-right: 5px;
        }
        
        .like-btn, .comment-btn {
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .like-btn:hover, .comment-btn:hover {
            color: #6e8efb;
        }
        
        .liked {
            color: #e74c3c;
        }
		
		.p{
		font-size: 14px;
		}