private void OnDestroy()
 {
     if (instance == this)
     {
         instance = null;
     }
 }
        void Awake()
        {
            if (instance != null)
            {
                Destroy(this);
                return;
            }
            instance = this;

            checkListTimeCountDown = checkListTimeInterval;
        }