UIBlurEffect* blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
visualEffectView.alpha = 0.8;
[_backImageView addSubview:visualEffectView];
visualEffectView.frame = _backImageView.bounds;