reset.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /* reset */
  2. html,
  3. body,
  4. h1,
  5. h2,
  6. h3,
  7. h4,
  8. h5,
  9. h6,
  10. div,
  11. dl,
  12. dt,
  13. dd,
  14. ul,
  15. ol,
  16. li,
  17. p,
  18. blockquote,
  19. pre,
  20. hr,
  21. figure,
  22. table,
  23. caption,
  24. th,
  25. td,
  26. form,
  27. fieldset,
  28. legend,
  29. input,
  30. button,
  31. textarea,
  32. menu {
  33. margin: 0;
  34. padding: 0;
  35. }
  36. header,
  37. footer,
  38. section,
  39. article,
  40. aside,
  41. nav,
  42. hgroup,
  43. address,
  44. figure,
  45. figcaption,
  46. menu,
  47. details {
  48. display: block;
  49. }
  50. html,
  51. body {
  52. overflow: hidden;
  53. }
  54. table {
  55. border-collapse: collapse;
  56. border-spacing: 0;
  57. }
  58. caption,
  59. th {
  60. text-align: left;
  61. font-weight: normal;
  62. }
  63. html,
  64. body,
  65. fieldset,
  66. img,
  67. iframe,
  68. abbr {
  69. border: 0;
  70. }
  71. i,
  72. cite,
  73. em,
  74. var,
  75. address,
  76. dfn {
  77. font-style: normal;
  78. }
  79. [hidefocus],
  80. summary {
  81. outline: 0;
  82. }
  83. li {
  84. list-style: none;
  85. }
  86. h1,
  87. h2,
  88. h3,
  89. h4,
  90. h5,
  91. h6,
  92. small {
  93. font-size: 100%;
  94. }
  95. sup,
  96. sub {
  97. font-size: 83%;
  98. }
  99. pre,
  100. code,
  101. kbd,
  102. samp {
  103. font-family: inherit;
  104. }
  105. q:before,
  106. q:after {
  107. content: none;
  108. }
  109. textarea {
  110. overflow: auto;
  111. resize: none;
  112. }
  113. label,
  114. summary {
  115. cursor: default;
  116. }
  117. a,
  118. button {
  119. cursor: pointer;
  120. }
  121. h1,
  122. h2,
  123. h3,
  124. h4,
  125. h5,
  126. h6,
  127. em,
  128. strong,
  129. b {
  130. font-weight: bold;
  131. }
  132. del,
  133. ins,
  134. u,
  135. s,
  136. a,
  137. a:hover {
  138. text-decoration: none;
  139. }
  140. /* body,textarea,input,button,select,keygen,legend{font:12px/1.14 arial,\5b8b\4f53;color:#000000;outline:0;} */
  141. body {
  142. background: #fff;
  143. }
  144. a,
  145. a:hover {
  146. color: #333;
  147. }
  148. /* 滚动条样式 */
  149. /* ::-webkit-scrollbar {
  150. width: 8px;
  151. height: 8px;
  152. }
  153. ::-webkit-scrollbar-thumb {
  154. border-radius: 10px;
  155. background: #dddddd;
  156. }
  157. ::-webkit-scrollbar-track {
  158. border-radius: 10px;
  159. background: #eeeeee;
  160. } */