style.css 897 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. body::-webkit-scrollbar {
  25. /* width: 18px; */
  26. /* height: 9px; */
  27. }
  28. /*定义滚动条轨道 内阴影+圆角*/
  29. body::-webkit-scrollbar-track {
  30. /* background-color: inherit;
  31. border: none;
  32. border-radius: 10px; */
  33. }
  34. /*定义滑块 内阴影+圆角*/
  35. body::-webkit-scrollbar-thumb {
  36. /* border-radius: 10px;
  37. position: relative;
  38. right: 2px;
  39. background-color: #c6c6cd; */
  40. /* width: 16px; */
  41. }
  42. a {
  43. text-decoration: none;
  44. cursor: pointer;
  45. }
  46. select,
  47. input {
  48. background: none;
  49. border: 0;
  50. padding: 0;
  51. outline: none;
  52. }
  53. ul,
  54. ol {
  55. list-style: none;
  56. }
  57. body,
  58. html {
  59. background: #fff;
  60. }
  61. .container {
  62. width: 1272px;
  63. margin: 0 auto;
  64. }
  65. .clearfix:after {
  66. content: "";
  67. display: block;
  68. clear: both;
  69. }