reset.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. @CHARSET "UTF-8";
  2. /* --- reset style start --- */
  3. html, body, pre, p, ul, ol, li, dl, dt, dd, form, input, hr, h1, h2, h3,
  4. h4, h5, h6, table, caption, tbody, tfoot, thead, tr, th, td {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. body {
  9. display: table;
  10. width: 100%;
  11. font-size: 14px;
  12. font-family: 'Microsoft YaHei', Arial, sans-serif, \5b8b\4f53;
  13. color: #606060;
  14. }
  15. pre {
  16. border: none;
  17. font-size: 100%;
  18. font-family: inherit;
  19. background-color: #fff;
  20. }
  21. ul li {
  22. list-style: none;
  23. }
  24. h1 {
  25. font-size: 20px;
  26. }
  27. h2 {
  28. font-size: 18px;
  29. }
  30. h3 {
  31. font-size: 14px;
  32. }
  33. h4, h5, h6 {
  34. font-size: 12px;
  35. }
  36. img {
  37. cursor: pointer;
  38. border: 0;
  39. }
  40. table {
  41. border-collapse: collapse;
  42. border-spacing: 0;
  43. }
  44. a {
  45. color: #606060;
  46. text-decoration: none;
  47. outline: 0 none;
  48. }
  49. button {
  50. border: none;
  51. cursor: pointer;
  52. }
  53. em {
  54. font-style: normal;
  55. }
  56. iframe {
  57. width: 100%;
  58. border: none;
  59. }
  60. textarea {
  61. resize: none;
  62. }
  63. /* --- reset style end --- */
  64. /* --- common style start --- */
  65. .fl {
  66. float: left;
  67. }
  68. .fr {
  69. float: right;
  70. }
  71. .fn {
  72. float: none;
  73. }
  74. .al {
  75. text-align: left;
  76. }
  77. .ac {
  78. text-align: center;
  79. }
  80. .ar {
  81. text-align: right;
  82. }
  83. .at {
  84. vertical-align: top;
  85. }
  86. .am {
  87. vertical-align: middle;
  88. }
  89. .ab {
  90. vertical-align: bottom;
  91. }
  92. .hidden {
  93. display: none !important;
  94. }
  95. .ml10 {
  96. margin-left: 10px;
  97. }
  98. .ml20 {
  99. margin-left: 20px;
  100. }
  101. .mr10 {
  102. margin-right: 10px;
  103. }
  104. /* clear float */
  105. .clearfix:after {
  106. content: "";
  107. display: block;
  108. height: 0;
  109. clear: both;
  110. }
  111. .clearfix { +
  112. zoom: 1;
  113. }
  114. .btn-bg {
  115. margin: 0;
  116. padding: 0;
  117. text-align: center;
  118. border: none;
  119. cursor: pointer;
  120. }
  121. .link-bg a {
  122. display: block;
  123. overflow: hidden;
  124. text-align: center;
  125. text-decoration: none;
  126. }
  127. /* ========== 进度加载条 ========== */
  128. #ajaxLoadingMask {
  129. display: none;
  130. position: absolute;
  131. left: 0px;
  132. top: 0px;
  133. width: 100%;
  134. height: 100%;
  135. z-index: 100000;
  136. /* filter: alpha(opacity=30);*/
  137. /* -moz-opacity: 0.3;*/
  138. filter: alpha(opacity = 0);
  139. -moz-opacity: 0;
  140. opacity: 0;
  141. /* background-color: #000;*/
  142. }
  143. #ajaxLoadingIcon {
  144. display: none;
  145. position: fixed;
  146. top: 100px;
  147. left: 100px;
  148. /* color:#000;*/
  149. z-index: 100001;
  150. }
  151. .icon-showloading {
  152. /* width: 100px;*/
  153. /* height: 100px;*/
  154. width: 48px;
  155. height: 48px;
  156. /* background: url(images/loading.gif) no-repeat scroll center center rgba(0, 0, 0, 0);*/
  157. background: url(images/loading.gif) no-repeat;
  158. }
  159. /* ========== 进度加载条 END ========== */
  160. .pointer {
  161. cursor: pointer;
  162. }
  163. .ellipsis {
  164. overflow: hidden;
  165. text-overflow: ellipsis;
  166. white-space: nowrap;
  167. }
  168. .block {
  169. display: block;
  170. }
  171. .cursorPointer {
  172. cursor: pointer;
  173. }