第一种方法(直接给input添加样式)
1 input{ 2 outline: none; 3 }
第二种方法(控制聚焦时不出现边框)
1 input:focus{ 2 outline: none; 3 }