main.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. @import './base.css';
  2. * {
  3. box-sizing: border-box;
  4. }
  5. body,
  6. div,
  7. dl,
  8. dt,
  9. dd,
  10. ul,
  11. ol,
  12. li,
  13. h1,
  14. h2,
  15. h3,
  16. h4,
  17. h5,
  18. h6,
  19. pre,
  20. code,
  21. form,
  22. fieldset,
  23. legend,
  24. input,
  25. button,
  26. textarea,
  27. p,
  28. blockquote,
  29. th,
  30. td {
  31. margin: 0;
  32. padding: 0;
  33. }
  34. body {
  35. background: #fff;
  36. color: #555;
  37. font-size: 14px;
  38. font-family: Verdana, Arial, Helvetica, sans-serif;
  39. }
  40. td,
  41. th,
  42. caption {
  43. font-size: 14px;
  44. }
  45. h1,
  46. h2,
  47. h3,
  48. h4,
  49. h5,
  50. h6 {
  51. font-weight: normal;
  52. font-size: 100%;
  53. }
  54. address,
  55. caption,
  56. cite,
  57. code,
  58. dfn,
  59. em,
  60. strong,
  61. th,
  62. var {
  63. font-style: normal;
  64. font-weight: normal;
  65. }
  66. a {
  67. color: #555;
  68. text-decoration: none;
  69. }
  70. a:hover {
  71. text-decoration: underline;
  72. }
  73. img {
  74. border: none;
  75. }
  76. ol,
  77. ul,
  78. li {
  79. list-style: none;
  80. }
  81. input,
  82. textarea,
  83. select,
  84. button {
  85. font: 14px Verdana, Helvetica, Arial, sans-serif;
  86. }
  87. table {
  88. border-collapse: collapse;
  89. }
  90. html {
  91. overflow-y: auto;
  92. }
  93. #app {
  94. /* padding: 0 20px; */
  95. /* height: 100vh; */
  96. }
  97. /* 清除浮动 */
  98. .clearfix:after,
  99. .clearfix:before {
  100. content: "";
  101. display: table;
  102. }
  103. .clearfix:after {
  104. clear: both;
  105. }
  106. .clearfix {
  107. zoom: 1;
  108. }
  109. .contentTitle {
  110. margin: 20px 0;
  111. }
  112. .contentTitle:nth-of-type(1) {
  113. margin-top: 0px;
  114. }
  115. .img_text_middle {
  116. display: flex;
  117. flex-direction: row;
  118. align-items: center;
  119. }