base.css 575 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font: 16px/1.5 sans-serif;
  8. color: #333;
  9. background-color: #fff;
  10. }
  11. li {
  12. list-style: none;
  13. }
  14. em,
  15. i {
  16. font-style: normal;
  17. }
  18. a {
  19. text-decoration: none;
  20. color: #333;
  21. }
  22. a:hover {
  23. color: #5eb69c;
  24. }
  25. img {
  26. width: 100%;
  27. vertical-align: middle;
  28. }
  29. input {
  30. padding: 0;
  31. border: none;
  32. outline: none;
  33. color: #333;
  34. }
  35. button {
  36. cursor: pointer;
  37. }
  38. /* 清除浮动 */
  39. .clearfix:before,
  40. .clearfix:after {
  41. content: '';
  42. display: table;
  43. }
  44. .clearfix:after {
  45. clear: both;
  46. }
  47. .clearfix {
  48. *zoom: 1;
  49. }