.clear-input{ // 去除input的原生样式
border: 0px;
background-color: none;
outline: none;
}
.clear-input:focus{ // 去除input原生样式
outline: none;
}
input{ // 修改默认输入框样式
font-size: 17px;
padding: 8px;
padding-bottom: 5px;
}
input::-webkit-input-placeholder { // 原生input的placeholder样式处理
color: #A9AEB8;
font-size: 14px;
padding: 0px;
letter-spacing: 1px;
}
input:-webkit-autofill{
-webkit-box-shadow:0 0 0 1000px white inset !important; // 去除自动填充背景色
}