style.css 495 B

12345678910111213141516171819202122232425262728293031323334353637
  1. html,body,div,section,article,header,p,footer,span,ul,ol,li,h1,h2,h3,h4,h5,h6 {
  2. padding:0;
  3. margin:0;
  4. font-size: 14px;
  5. box-sizing: border-box;
  6. }
  7. a {
  8. text-decoration: none;
  9. cursor: pointer;
  10. }
  11. select,input {
  12. background:none;
  13. border:0;
  14. padding:0;
  15. outline: none;
  16. }
  17. ul,ol {
  18. list-style: none;
  19. }
  20. body,html {
  21. background:#fff;
  22. }
  23. .container {
  24. width:1272px;
  25. margin:0 auto;
  26. }
  27. .clearfix:after {
  28. content:"";
  29. display: block;
  30. clear:both;
  31. }