
/* 去掉苹果的默认UI来渲染按钮 保持苹果和安卓的风格一致 */
input[type="submit"], input[type="reset"], input[type="button"], input[type="text"], input[type="file"], input[type="password"], textarea, button {
     appearance:none; 
    -moz-appearance:none; 
    -webkit-appearance: none !important;
 }
a{
  color: inherit;
}