I don't follow how you're organizing your work.
The Chinese Remainder Theorem says the combined modulus is the least common multiple, not the product. In this case, the combined modulus is $60$. This makes things trickier.
You could work a pair of moduli at a time: if you have two equations
$$ x = ga \pmod {gm} \qquad x = gb \pmod {gn} $$
then by reducing modulo $g$, you know $x \equiv 0 \pmod{g}$. If you set $x = gx'$, then you can divide out the $g$'s from everything to get
$$ x' = a \pmod{m} \qquad x' = b \pmod{n} $$
and can work from there. Sometimes this method requires a change of variable first: e.g. maybe it's $x+1 \equiv ga$ and $x + 1 \equiv gb$.
IMO it's more straightforward to multiply each equation to get a common modulus:
$$ \begin{align} 10x &\equiv 20 \pmod{60}
\\ 6x &\equiv 36 \pmod{60}
\\5x &\equiv 40 \pmod{60}
\end{align}$$
then you can use a variation of the Euclidean algorithm to simplify the system: e.g. we can subtract the second equation from the first to reduce it to $4x \equiv -16 \pmod{60}$, and so forth. Eventually, you'll be left with three equations:
$$ x \equiv a \pmod{60} \qquad 0 \equiv b \pmod{60} \qquad 0 \equiv c \pmod{60} $$
if $b\equiv c\equiv0 \pmod{60}$, then $x \equiv a \pmod{60}$ is the solution to your system. If $b$ or $c$ is nonzero modulo $60$, then the system has no solutions.
(the leading coefficient on $x$ in the last set of equations is $1$ because $\gcd(10,6,5) = 1$)