Under Project --> Project Properties --> CRS, make sure that "Enable 'on the fly' CRS transformation" is checked. If this doesn't do the trick, look at the layer properties, and make sure they are set to match the data source (not how you want them to display). This should be EPSG 22181 for your database, and EPSG 3857 for the Google Maps basemap.
Assuming you are working with a limited amount of vector data in your database, you will likely want to set your project CRS to 3857. The street lines will be projected from 22181 to 3857 on the fly to show on your screen, while the Google Maps would stay in 3857. If you find the street lines are taking awhile to render, you could try setting the project CRS to 22181, in which case the Google Maps basemap would be converted from 3857 to 22181. I've generally found that on-the-fly projection of the Google Maps basemap can be more problematic.
I have also seen some issues with alignment, particularly with Google Maps, when you try to zoom in past a certain zoom level.
EDIT after screenshots:
The coordinates on your screenshot do not make sense for EPSG 22181 projection. It looks like both x and y are negative, and the scale is 1:36 which would put the real-life scale of your map at only a few hundred meters. I expect your roads are much longer than that. I think it is likely that your data was not created in 22181, but some other projection. Try going to the Database --> DB Manager menu. Expand PostGIS and keep expanding to your line table. On the right, look for a "Spatial ref" entry for the table. The screenshot below shows where to look for a table I've been building in EPSG 4326. Do yours say 22181? If so, I think it possible that your roads were originally recorded in something like 4326 and were inadvertantly assigned to 22181. If so, it may require something like the PostGIS UpdateGeometrySRID in a SQL query, but you would need to figure out what it should have been first.

EDIT 2:
It appears that your coordinates were actually in EPSG 4326, despite your table being set for 22181. There are two ways to fix this. The first is to set the table to 4326 without changing any of the coordinates themselves. This would be done with something like UpdateGeometrySRID in SQL (QGIS --> DB Manager --> Database --> SQL Window or using pgAdmin):
SELECT UpdateGeometrySRID('line', 'the_geom', 4326);
Your other option is to convert the geometries to 22181 coordinates using ST_Transform. See this post for instructions if you choose this route.
As an aside, you may consider renaming the 'line' table to 'road' or 'street', to avoid confusion with the geometries themselves.