1. /*--css 初始化-- */
    2. @charset "utf-8";
    3. a,
    4. address,
    5. b,
    6. big,
    7. blockquote,
    8. body,
    9. center,
    10. cite,
    11. code,
    12. dd,
    13. del,
    14. div,
    15. dl,
    16. dt,
    17. em,
    18. fieldset,
    19. font,
    20. form,
    21. h1,
    22. h2,
    23. h3,
    24. h4,
    25. h5,
    26. h6,
    27. html,
    28. i,
    29. iframe,
    30. img,
    31. ins,
    32. label,
    33. legend,
    34. li,
    35. ol,
    36. p,
    37. pre,
    38. small,
    39. span,
    40. strong,
    41. u,
    42. ul,
    43. var,
    44. button,
    45. input,
    46. textarea {
    47. padding: 0;
    48. margin: 0;
    49. }
    50. fieldset,
    51. img,
    52. input,
    53. button {
    54. border: none;
    55. outline-style: none;
    56. }
    57. ul,
    58. ol {
    59. list-style: none;
    60. }
    61. input {
    62. font-size: 12px;
    63. font-family: "Helvetica", "Microsoft YaHei";
    64. }
    65. select,
    66. input {
    67. vertical-align: middle;
    68. }
    69. select,
    70. input,
    71. textarea {
    72. font-size: 12px;
    73. outline: none;
    74. }
    75. /*--防止拖动--*/
    76. textarea {
    77. resize: none;
    78. }
    79. /*--去掉图片低测默认的3像素空白缝隙--*/
    80. img {
    81. border: 0;
    82. vertical-align: middle;
    83. }
    84. table {
    85. border-collapse: collapse;
    86. }
    87. h1,
    88. h2,
    89. h3,
    90. h4,
    91. h5,
    92. h6 {
    93. font-size: 100%;
    94. text-decoration: none;
    95. font-weight: normal;
    96. }
    97. s,
    98. i,
    99. em {
    100. font-style: normal;
    101. text-decoration: none;
    102. }
    103. a {
    104. color: inherit;
    105. text-decoration: none;
    106. }
    107. /*--解决button在firefox下文字不能上下居中的问题--*/
    108. button::-moz-focus-inner {
    109. padding: 0px 0 2px;
    110. margin: 0;
    111. border: none;
    112. }
    113. body {
    114. font-size: 12px !important;
    115. background-color: #f9f9f9;
    116. font-family: pingfang SC, helvetica neue, arial, hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, sans-serif !important;
    117. }
    118. html {
    119. box-sizing: border-box;
    120. }
    121. *,
    122. *:before,
    123. *:after {
    124. box-sizing: inherit;
    125. }
    126. html,
    127. body {
    128. height: 100%;
    129. }