style.css 612 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. html,
  2. body,
  3. div,
  4. section,
  5. article,
  6. header,
  7. p,
  8. footer,
  9. span,
  10. ul,
  11. ol,
  12. li,
  13. h1,
  14. h2,
  15. h3,
  16. h4,
  17. h5,
  18. h6 {
  19. padding: 0;
  20. margin: 0;
  21. font-size: 14px;
  22. box-sizing: border-box;
  23. }
  24. a {
  25. text-decoration: none;
  26. cursor: pointer;
  27. }
  28. select,
  29. input {
  30. background: none;
  31. border: 0;
  32. padding: 0;
  33. outline: none;
  34. }
  35. ul,
  36. ol {
  37. list-style: none;
  38. }
  39. body,
  40. html {
  41. background: #fff;
  42. }
  43. .container {
  44. width: 1272px;
  45. margin: 0 auto;
  46. }
  47. .clearfix:after {
  48. content: "";
  49. display: block;
  50. clear: both;
  51. }
  52. .l_1 {
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. white-space: nowrap;
  56. }