/* ==================== 会员中心分组卡片列表样式 ==================== */
.user-group-card {
    background: #fff;
    margin: 12px 12px 0 12px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
    overflow: hidden;
}
.user-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px;
    border-bottom: 1px solid #f7f9fa;
    transition: background 0.2s;
}
.user-menu-item:last-child {
    border-bottom: none;
}
.user-menu-item:active {
    background: #f2f4f8;
}
.menu-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-item-left svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.menu-item-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 12px;
}
.menu-item-right svg {
    stroke: #ccc;
    width: 14px;
    height: 14px;
}

