base.css 1.1 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. input, a {
  16. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  17. -webkit-appearance: none;
  18. appearance: none;
  19. }
  20. /* 清除输入标签选中效果 */
  21. input, select, textarea, button {
  22. outline: none;
  23. }
  24. /* 清除序列标签默认样式 */
  25. ul, li, dl, dd, dt {
  26. list-style-type: none;
  27. }
  28. /* 清除a标签下划线样式 */
  29. a, a:link, a:visited, a:hover, a:active {
  30. text-decoration: none;
  31. }
  32. /* 清除图片的边框 */
  33. img {
  34. border: 0;
  35. width: 100%;
  36. display: block;
  37. }
  38. /* 清除浮动 */
  39. .clear {
  40. clear: both;
  41. }
  42. /*定义标题文字加粗正常,字间距为0*/
  43. h1, h2, h3, h4, h5, h6, p {
  44. font-weight: normal;
  45. letter-spacing: 0;
  46. }