main.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. @import 'element-plus/dist/index.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,PingFang SC;
  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: inherit;
  68. text-decoration: none;
  69. }
  70. a:hover {
  71. text-decoration: underline;
  72. text-decoration: none;
  73. }
  74. img {
  75. border: none;
  76. }
  77. ol,
  78. ul,
  79. li {
  80. list-style: none;
  81. }
  82. input,
  83. textarea,
  84. select,
  85. button {
  86. font: 14px Verdana, Helvetica, Arial, sans-serif;
  87. }
  88. table {
  89. border-collapse: collapse;
  90. }
  91. html {
  92. overflow-y: scroll;
  93. }
  94. #app {
  95. /* padding: 0 20px; */
  96. height: 100vh;
  97. }
  98. /* 清除浮动 */
  99. .clearfix:after,
  100. .clearfix:before {
  101. content: "";
  102. display: table;
  103. }
  104. .clearfix:after {
  105. clear: both;
  106. }
  107. .clearfix {
  108. zoom: 1;
  109. }
  110. .contentTitle {
  111. margin: 20px 0;
  112. }
  113. .el-card__body{
  114. padding: 0 !important;
  115. }