     /* 收藏列表样式 */
     .favorite-list {
        margin-top: 10px;
    }

    .favorite-item {
        background: #fff;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        padding: 10px;
    }

    .product-img {
        width: 80px;
        height: 80px;
        border-radius: 4px;
        margin-right: 10px;
        object-fit: cover;
    }

    .product-info {
        flex: 1;
        margin-right: 10px;
    }

    .product-name {
        font-size: 14px;
        color: #333;
        margin-bottom: 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }

    .product-price {
        color: #ff4d4f;
        font-size: 16px;
        font-weight: 500;
    }

    .product-actions {
        display: flex;
        gap: 8px;
    }

    .product-actions .btn {
        font-size: 13px;
        padding: 4px 12px;
        border-radius: 4px;
    }

    /* 空收藏提示 */
    .empty-favorite {
        text-align: center;
        padding: 40px 0;
        background: #fff;
        margin-top: 10px;
    }

    .empty-favorite i {
        font-size: 40px;
        color: #ccc;
        margin-bottom: 10px;
    }

    .empty-favorite p {
        color: #999;
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .main-content {
            padding: 0 !important;
        }

        h2 {
            padding: 15px;
            margin: 0;
            background: #fff;
            font-size: 16px;
            border-bottom: 1px solid #f5f5f5;
        }

        .favorite-item {
            margin-bottom: 1px;
            padding: 15px;
        }

        .product-img {
            width: 70px;
            height: 70px;
        }

        .product-actions {
            flex-direction: column;
        }

        .product-actions .btn {
            padding: 3px 10px;
            font-size: 12px;
        }

        /* 为底部操作栏预留空间 */
        .main-content {
            padding-bottom: 130px !important;
        }

        /* 修改卡片圆角 */
        .card {
            border-radius: 0;
        }
    }