common.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. :root {
  2. --fontColor: #515151;
  3. --mainWidth: 1000px;
  4. --mainColor: #0093fd;
  5. --linkColor: #308EFF;
  6. font-size: 14px;
  7. }
  8. html, body, div, span, applet, object, iframe,
  9. blockquote, pre, abbr, acronym, address, big, cite, code,
  10. del, dfn, em, img, ins, kbd, q, s, samp,
  11. small, strike, strong, sub, sup, tt, var,
  12. b, u, i, center,
  13. dl, dt, dd, ol, ul, li,
  14. fieldset, form, label, legend,
  15. table, caption, tbody, tfoot, thead, tr, th, td,
  16. article, aside, canvas, details, embed,
  17. figure, figcaption, footer, header, hgroup,
  18. menu, nav, output, ruby, section, summary,
  19. time, mark, audio, video {
  20. margin: 0;
  21. padding: 0;
  22. border: 0;
  23. font-size: 100%;
  24. font: inherit;
  25. vertical-align: baseline;
  26. }
  27. /* HTML5 display-role reset for older browsers */
  28. article, aside, details, figcaption, figure,
  29. footer, header, hgroup, menu, nav, section {
  30. display: block;
  31. }
  32. a {
  33. color: var(--linkColor);
  34. text-decoration: none;
  35. }
  36. body {
  37. line-height: 1;
  38. background: #F4F5F9;
  39. }
  40. ol, ul {
  41. list-style: none;
  42. }
  43. blockquote, q {
  44. quotes: none;
  45. }
  46. blockquote:before, blockquote:after,
  47. q:before, q:after {
  48. content: '';
  49. content: none;
  50. }
  51. table {
  52. border-collapse: collapse;
  53. border-spacing: 0;
  54. }
  55. input {
  56. outline: none;
  57. border: 0;
  58. }
  59. button {
  60. border: 0;
  61. padding: 0;
  62. margin: 0;
  63. background: transparent;
  64. outline: none;
  65. cursor: pointer;
  66. }
  67. sub {
  68. font-size: .6em;
  69. }
  70. img {
  71. max-width: 100%;
  72. }
  73. .flex{
  74. display: flex;
  75. }
  76. .flex-column{
  77. display: flex;
  78. flex-direction: column;
  79. }
  80. .space-between{
  81. display: flex;
  82. justify-content: space-between;
  83. }
  84. .space-around{
  85. display: flex;
  86. justify-content: space-around;
  87. }
  88. .align-center{
  89. display: flex;
  90. align-items: center;
  91. }
  92. .align-center-c{
  93. display: flex;
  94. flex-direction: column;
  95. align-items: center;
  96. }
  97. .justify-center{
  98. display: flex;
  99. justify-content: center;
  100. }
  101. .justify-center-c{
  102. display: flex;
  103. flex-direction: column;
  104. justify-content: center;
  105. }
  106. .justify-between{
  107. display: flex;
  108. justify-content: space-between;
  109. }
  110. .margin-0-auto{
  111. margin:0 auto;
  112. }
  113. .inline-block{
  114. display: inline-block;
  115. }
  116. .gray-153{
  117. color:rgb(153,153,153);
  118. }
  119. .gray-34{
  120. color:rgb(34,34,34);
  121. }
  122. .gray-51{
  123. color:rgb(51,51,51);
  124. }
  125. .text-center{
  126. text-align: center;
  127. }