input输入框placeholder字体的颜色
input::-webkit-input-placeholder{
/* WebKit browsers */
color: #c2c2c2;
}
input:-moz-placeholder{
/* Mozilla Firefox 4 to 18 */
color: #c2c2c2;
}
input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #c2c2c2;
}
input:-ms-input-placeholder {
/* Internet Explorer 10+ */
color: #c2c2c2;
}