赛亿提成统计系统

base.css 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. @charset "utf-8";
  2. /* CSS Document */
  3. @charset "utf-8";
  4. /*!
  5. * @名称:base.css
  6. * @功能:1、重设浏览器默认样式
  7. * 2、设置通用原子类
  8. */
  9. /* 防止用户自定义背景颜色对网页的影响,添加让用户可以自定义字体 */
  10. html {
  11. background: white;
  12. color: black;
  13. }
  14. html,body{
  15. width: 100%;
  16. height: 100%;
  17. }
  18. /* 内外边距通常让各个浏览器样式的表现位置不同 */
  19. body,
  20. div,
  21. dl,
  22. dt,
  23. dd,
  24. ul,
  25. ol,
  26. li,
  27. h1,
  28. h2,
  29. h3,
  30. h4,
  31. h5,
  32. h6,
  33. pre,
  34. code,
  35. form,
  36. fieldset,
  37. legend,
  38. input,
  39. textarea,
  40. p,
  41. blockquote,
  42. th,
  43. td,
  44. hr,
  45. button,
  46. article,
  47. aside,
  48. details,
  49. figcaption,
  50. figure,
  51. footer,
  52. header,
  53. hgroup,
  54. menu,
  55. nav,
  56. section {
  57. margin: 0;
  58. padding: 0;
  59. }
  60. /* 要注意表单元素并不继承父级 font 的问题 */
  61. body,
  62. button,
  63. input,
  64. select,
  65. textarea {
  66. font: 12px \5b8b\4f53, arial, sans-serif;
  67. }
  68. input,
  69. select,
  70. textarea {
  71. font-size: 100%;
  72. }
  73. /* 去掉 table cell 的边距并让其边重合 */
  74. table {
  75. border-collapse: collapse;
  76. border-spacing: 0;
  77. }
  78. /* ie bug:th 不继承 text-align */
  79. th {
  80. text-align: inherit;
  81. }
  82. /* 去除默认边框 */
  83. fieldset,
  84. img {
  85. border: none;
  86. }
  87. /* ie6 7 8(q) bug 显示为行内表现 */
  88. iframe {
  89. display: block;
  90. }
  91. /* 去掉 firefox 下此元素的边框 */
  92. abbr,
  93. acronym {
  94. border: none;
  95. font-variant: normal;
  96. }
  97. /* 一致的 del 样式 */
  98. del {
  99. text-decoration: line-through;
  100. }
  101. address,
  102. caption,
  103. cite,
  104. code,
  105. dfn,
  106. em,
  107. th,
  108. var {
  109. font-style: normal;
  110. font-weight: 500;
  111. }
  112. /* 去掉列表前的标识,li 会继承 */
  113. ol,
  114. ul {
  115. list-style: none;
  116. }
  117. /* 对齐是排版最重要的因素,别让什么都居中 */
  118. caption,
  119. th {
  120. text-align: left;
  121. }
  122. /* 来自yahoo,让标题都自定义,适应多个系统应用 */
  123. h1,
  124. h2,
  125. h3,
  126. h4,
  127. h5,
  128. h6 {
  129. font-size: 100%;
  130. font-weight: 500;
  131. }
  132. q:before,
  133. q:after {
  134. content: '';
  135. }
  136. /* 统一上标和下标 */
  137. sub,
  138. sup {
  139. font-size: 75%;
  140. line-height: 0;
  141. position: relative;
  142. vertical-align: baseline;
  143. }
  144. sup {
  145. top: -0.5em;
  146. }
  147. sub {
  148. bottom: -0.25em;
  149. }
  150. /* 让链接在 hover 状态下显示下划线 */
  151. a:hover {
  152. text-decoration: underline;
  153. }
  154. /* 默认不显示下划线,保持页面简洁 */
  155. ins,
  156. a {
  157. text-decoration: none;
  158. }
  159. /* 去除 ie6 & ie7 焦点点状线 */
  160. a:focus,
  161. *:focus {
  162. outline: none;
  163. }
  164. /* 清除浮动 */
  165. .clearfix:before,
  166. .clearfix:after {
  167. content: "";
  168. display: table;
  169. }
  170. .clearfix:after {
  171. clear: both;
  172. overflow: hidden;
  173. }
  174. .clearfix {
  175. zoom: 1;
  176. /* for ie6 & ie7 */
  177. }
  178. .clear {
  179. clear: both;
  180. display: block;
  181. font-size: 0;
  182. height: 0;
  183. line-height: 0;
  184. overflow: hidden;
  185. }
  186. /* 设置显示和隐藏,通常用来与 js 配合 */
  187. .hide {
  188. display: none;
  189. }
  190. .block {
  191. display: block;
  192. }
  193. /* 设置浮动,减少浮动带来的 bug */
  194. .fl,
  195. .fr {
  196. display: inline;
  197. }
  198. .fl {
  199. float: left;
  200. }
  201. .fr {
  202. float: right;
  203. }