base.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* 重置内外边距 */
  2. body, div, blockquote,
  3. h1, h2, h3, h4, h5, h6, hr, p,
  4. dl, dt, dd, ul, ol, li,
  5. form, button, input, textarea,
  6. pre, fieldset, legend, th, td {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. /* 设置默认文字样式 */
  11. body, input, select, textarea, button {
  12. font: normal 100% -apple-system, PingFangSC-Regular, tahoma, arial, sans-serif;
  13. }
  14. /* 清除移动端按钮点击出现黑色背景 */
  15. * {
  16. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  17. }
  18. /* 清除输入标签选中效果 */
  19. input, select, textarea, button {
  20. outline: none;
  21. }
  22. input, textarea {
  23. border: 0;
  24. border-radius: 0;
  25. -webkit-appearance: none;
  26. appearance: none;
  27. }
  28. /* 清除序列标签默认样式 */
  29. ul, li, dl, dd, dt {
  30. list-style-type: none;
  31. }
  32. /* 清除a标签下划线样式 */
  33. a, a:link, a:visited, a:hover, a:active {
  34. text-decoration: none;
  35. }
  36. /* 清除图片的边框 */
  37. img {
  38. border: 0;
  39. }
  40. /* 清除文字粗体效果 */
  41. h1, h2, h3, h4, h5, h6 {
  42. font-weight: normal;
  43. }
  44. /* 清除浮动 */
  45. .clear {
  46. clear: both;
  47. }