public void OnCurEditShopItemCardChangeCard(int cardRareLevel, int price)
 {
     if (CurEdit_ShopItem.Cur_ShopItem is ShopItem_Card sic)
     {
         sic.CardRareLevel = cardRareLevel;
         sic.Price         = price;
         CurEdit_ShopItem.Refresh();
     }
 }