  /* ========== 我的界面 ========== */
        .me-content {
          width: 100%;
          height: 100%;
          overflow-y: auto;
          position: relative;
          background: #FAFAFA;
        }

        .profile-cover-wrapper {
          width: 100%;
          height: var(--me-cover-height);
          overflow: hidden;
          position: relative;
        }
        .profile-cover { width: 100%; height: 100%; object-fit: cover; }
        .profile-cover-overlay {
          position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
          background: linear-gradient(to bottom, transparent, #FAFAFA);
        }

        .profile-header {
          padding: 0 28px; margin-top: -40px; position: relative;
          display: flex; flex-direction: column; align-items: flex-start;
        }

        .profile-avatar-container {
          width: var(--me-avatar-size); height: var(--me-avatar-size);
          margin-bottom: 16px;
          border-radius: 50%;
          border: none; 
          box-shadow: 0 0 0 1px rgba(0,0,0,0.03); 
          overflow: hidden;
          background: #FFF;
        }
        .profile-avatar { width: 100%; height: 100%; object-fit: cover; }

        .user-name { 
          font-family: var(--font-serif);
          font-size: 22px; 
          font-weight: 600; 
          color: #000; 
          margin-bottom: 6px; 
        }
        .user-bio { font-size: 12px; color: #78909C; line-height: 1.6; max-width: 90%; }

        .menu-list { margin-top: var(--me-menu-gap, 40px); padding: 0 28px; }
        
        .menu-item {
          padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
          display: flex; justify-content: space-between; align-items: center;
          cursor: pointer;
        }
        .menu-label { font-size: 14px; font-weight: 400; color: #263238; letter-spacing: 0.3px; }
        .menu-arrow { color: #CFD8DC; font-size: 12px; }