/* 个人中心与收藏页模块：新浪灰白列表 */
.user-card {
    margin: 0;
    padding: 1.4rem 1rem;
    border-top: 1rem solid var(--page-bg);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.user-head { display: flex; align-items: center; gap: 1rem; }
.user-head img { width: 5.8rem; height: 5.8rem; border-radius: 50%; background: #f2f2f2; }
.user-head h1 { font-size: 1.8rem; font-weight: 400; }
.user-head p { color: var(--muted); font-size: 1.2rem; }
.user-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1.2rem; border: 1px solid var(--line); }
.stat-card { padding: 0.9rem 0.4rem; border-right: 1px solid var(--line); background: #fff; text-align: center; }
.stat-card:last-child { border-right: none; }
.stat-card strong { display: block; color: var(--sina-red); font-size: 1.8rem; font-weight: 400; }
.stat-card span { color: var(--muted); font-size: 1.1rem; }
.menu-list { margin: 0; border-top: 1rem solid var(--page-bg); background: #fff; overflow: hidden; }
.menu-list a,
.menu-list button {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 1.3rem 1rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: #303640;
    text-align: left;
}

.favorite-filter {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    border-top: 1rem solid var(--page-bg);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.favorite-filter button {
    height: 3.6rem;
    border-right: 1px solid var(--line);
    color: #333;
    font-size: 1.35rem;
    line-height: 3.6rem;
    white-space: nowrap;
}
.favorite-filter button:last-child { border-right: none; }
.favorite-filter button.active { color: var(--sina-red); }

.favorite-list { margin: 0; background: #fff; }
.favorite-card { display: flex; gap: 1.3rem; margin: 0 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); background: #fff; }
.favorite-card img { width: 10rem; height: 6.7rem; object-fit: cover; background: #f2f2f2; }
.favorite-info { flex: 1; min-width: 0; }
.favorite-info h3 { font-size: 1.55rem; font-weight: 400; line-height: 2.2rem; }
.favorite-info p { color: var(--muted); font-size: 1.16rem; }
.favorite-meta { display: flex; gap: 0.8rem; align-items: center; margin-top: 0.3rem; color: var(--muted); font-size: 1.12rem; }
.favorite-actions { display: flex; gap: 0.8rem; margin-top: 0.7rem; }
.favorite-actions a,
.favorite-actions button { flex: 1; min-height: 3rem; font-size: 1.15rem; }
