base.css 966 B

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