You will need to "anchor" the search patterns at the end of the lines and so:
NOL6$
NPPC$
NPRL2$
etc....
If you cannot amend the original file with the list of patterns, you can use sed and so with the patterns in file1 and the file to search as file:
grep -v -f <(sed 's/$/$/' file1) file
With sed, we are replacing the end of the line with $
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…