basem.css 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*格式化样式*/
  2. *{
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body{
  7. width: 100%;
  8. font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  9. background: #f3f3f3;
  10. color: #232323;
  11. }
  12. table {
  13. border-collapse:collapse;
  14. border-spacing:0;
  15. }
  16. fieldset,img {
  17. border:none;
  18. border: 0;
  19. }
  20. address,caption,cite,code,dfn,em,strong,th,var {
  21. font-style:normal;
  22. /* font-weight:normal */
  23. }
  24. ol,ul {
  25. list-style:none;
  26. }
  27. caption,th {
  28. text-align:left;
  29. }
  30. h1,h2,h3,h4,h5,h6 {
  31. font-weight:normal;
  32. /*line-height: 0;*/
  33. }
  34. abbr,acronym {
  35. border:0;
  36. }
  37. a{
  38. display: block;
  39. text-decoration: none;
  40. }
  41. body a:hover{
  42. display: block;
  43. text-decoration: none;
  44. }
  45. input,textarea{
  46. background: transparent;
  47. border: none;
  48. outline:none;
  49. }
  50. /*通用样式*/
  51. .safe{
  52. width: 94%;
  53. margin: 0 auto;
  54. }
  55. .left{
  56. float: left;
  57. }
  58. .right{
  59. float:right;
  60. }
  61. .clear {
  62. clear: both;
  63. }
  64. .graytxt{
  65. color: #898989;
  66. }