global.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. @charset "utf-8";
  2. * {
  3. box-sizing: border-box;
  4. }
  5. html {
  6. background-color: #fff;
  7. color: #000;
  8. font-size: 16px;
  9. }
  10. blockquote, body, button, dd, dl, figure, form, h1, h2, h3, h4, h5, h6, input, legend, ol, p, pre, td, textarea, th, ul, xmp {
  11. margin: 0;
  12. padding: 0;
  13. }
  14. body, button, code, input, kbd, pre, samp, select, textarea, tt, xmp {
  15. line-height: 1.5;
  16. }
  17. big, button, h1, h2, h3, h4, h5, h6, input, select, small, textarea {
  18. font-size: 100%;
  19. }
  20. h1, h2, h3, h4, h5, h6 {
  21. font-family: tahoma, arial, "Hiragino Sans GB", "微软雅黑", simsun, sans-serif;
  22. }
  23. b, h1, h2, h3, h4, h5, h6, strong {
  24. font-weight: 400;
  25. }
  26. address, cite, dfn, em, i, optgroup, var {
  27. font-style: normal;
  28. }
  29. table {
  30. border-collapse: collapse;
  31. border-spacing: 0;
  32. text-align: left;
  33. }
  34. caption, th {
  35. text-align: inherit;
  36. }
  37. menu, ol, ul {
  38. list-style: none;
  39. }
  40. img {
  41. border: 0;
  42. }
  43. button, img, input, object, select, textarea {
  44. vertical-align: middle;
  45. }
  46. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  47. display: block;
  48. }
  49. audio, canvas, video {
  50. display: inline-block;
  51. }
  52. blockquote:after, blockquote:before, q:after, q:before {
  53. content: "\0020";
  54. }
  55. textarea {
  56. overflow: auto;
  57. resize: vertical;
  58. }
  59. a, button, input, select, textarea {
  60. border: none;
  61. outline: 0 none;
  62. }
  63. button::-moz-focus-inner, input::-moz-focus-inner {
  64. border: 0;
  65. padding: 0;
  66. }
  67. mark {
  68. background-color: transparent;
  69. }
  70. a, del, ins, s, u {
  71. text-decoration: none;
  72. }
  73. sub, sup {
  74. vertical-align: baseline;
  75. }
  76. html {
  77. height: 100%;
  78. overflow-x: hidden;
  79. }
  80. body {
  81. color: #333;
  82. font-family: Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica, sans-serif;
  83. line-height: 1;
  84. }
  85. a {
  86. color: #25a4bb;
  87. text-decoration: none;
  88. }
  89. ::-webkit-scrollbar {
  90. height: 1px;
  91. width: 5px;
  92. }
  93. ::-webkit-scrollbar-thumb {
  94. background: rgba(0, 0, 0, .1);
  95. border-radius: 10px;
  96. }
  97. ::-webkit-scrollbar-track {
  98. background: #ededed;
  99. border-radius: 4px;
  100. }