Esp-01 is connected to wifi but blynk shows that the system is offline

Your Arduino Uno’s processor isn’t fast enough to emulate a serial port operating at this speed using the SoftwareSerial library.

SoftwareSerial ports shouldn’t be uses for speeds higher than 9600 baud on the Uno.
Both the Uno and the ESP-01 need to be communicating at the same baud rate for this to work correctly, so your ESP-01 needs to be configured to use 9600 baud too.

You should be looking at the serial monitor output of the Uno to understand what is happening with the connection attempts to Blynk.

You should read this for more info…

Pete.