base.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. @charset "utf-8";
  2. /* reset */
  3. html,
  4. body,
  5. div,
  6. span,
  7. iframe,
  8. h1,
  9. h2,
  10. h3,
  11. h4,
  12. h5,
  13. h6,
  14. p,
  15. blockquote,
  16. pre,
  17. a,
  18. cite,
  19. code,
  20. del,
  21. em,
  22. img,
  23. q,
  24. small,
  25. strong,
  26. sub,
  27. sup,
  28. b,
  29. i,
  30. dl,
  31. dt,
  32. dd,
  33. ol,
  34. ul,
  35. li,
  36. fieldset,
  37. form,
  38. label,
  39. legend,
  40. table,
  41. tr,
  42. th,
  43. td {
  44. margin: 0;
  45. padding: 0;
  46. border: 0;
  47. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
  48. "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  49. }
  50. header,
  51. footer,
  52. section,
  53. article,
  54. aside,
  55. nav,
  56. hgroup,
  57. address,
  58. figure,
  59. figcaption,
  60. menu,
  61. details,
  62. summary,
  63. main {
  64. display: block;
  65. }
  66. audio,
  67. canvas,
  68. progress,
  69. video {
  70. display: inline-block;
  71. }
  72. audio:not([controls]) {
  73. display: none;
  74. height: 0;
  75. }
  76. table {
  77. border-collapse: collapse;
  78. border-spacing: 0;
  79. }
  80. html,
  81. body,
  82. fieldset,
  83. img,
  84. iframe,
  85. abbr {
  86. border: 0;
  87. }
  88. [hidefocus],
  89. summary {
  90. outline: 0;
  91. }
  92. a {
  93. background-color: transparent;
  94. color: #333;
  95. }
  96. a:active,
  97. a:hover {
  98. outline: 0;
  99. }
  100. img {
  101. vertical-align: middle;
  102. border: none;
  103. }
  104. li {
  105. list-style: none;
  106. }
  107. h1,
  108. h2,
  109. h3,
  110. h4,
  111. h5,
  112. h6 {
  113. font-size: 100%;
  114. }
  115. small {
  116. font-size: 80%;
  117. }
  118. input:-webkit-autofill {
  119. -webkit-box-shadow: 0 0 0 1000px white inset;
  120. }
  121. sub,
  122. sup {
  123. position: relative;
  124. line-height: 0;
  125. vertical-align: baseline;
  126. font-size: 75%;
  127. }
  128. sub {
  129. bottom: -0.25em;
  130. }
  131. sup {
  132. top: -0.5em;
  133. }
  134. svg:not(:root) {
  135. overflow: hidden;
  136. }
  137. code,
  138. kbd,
  139. pre,
  140. samp {
  141. font-size: 1em;
  142. font-family: monospace, monospace;
  143. }
  144. q:before,
  145. q:after {
  146. content: none;
  147. }
  148. label,
  149. summary {
  150. cursor: default;
  151. }
  152. a,
  153. button {
  154. cursor: pointer;
  155. }
  156. h1,
  157. h2,
  158. h3,
  159. h4,
  160. h5,
  161. h6,
  162. em {
  163. font-weight: normal;
  164. }
  165. strong,
  166. b {
  167. font-weight: bold;
  168. }
  169. del,
  170. ins,
  171. u,
  172. s,
  173. a,
  174. a:hover {
  175. text-decoration: none;
  176. }
  177. button,
  178. input,
  179. select,
  180. textarea,
  181. keygen,
  182. legend {
  183. margin: 0;
  184. font: inherit;
  185. color: inherit;
  186. }
  187. textarea {
  188. overflow: auto;
  189. }
  190. input {
  191. outline: none;
  192. }
  193. body {
  194. background: #ffffff;
  195. /* font-size: 22px; */
  196. color: #333;
  197. font-family: "HYQiHei", "Helvetica Neue", Helvetica, Arial, "PingFang SC",
  198. "Hiragino Sans GB", "Heiti SC", "MicrosoftYaHei", "WenQuanYi Micro Hei",
  199. sans-serif;
  200. }
  201. .maxWidth {
  202. width: 1200px;
  203. margin: 0px auto;
  204. }
  205. .clear:after,
  206. .maxWidth:after {
  207. display: block;
  208. content: ".";
  209. clear: both;
  210. line-height: 0;
  211. visibility: hidden;
  212. }
  213. .clear,
  214. .maxWidth {
  215. zoom: 1;
  216. }
  217. /* ................................... */
  218. /* 外边框 */
  219. .global-variable {
  220. margin: 18px;
  221. padding: 20px;
  222. background: #ffffff;
  223. min-height: 88vh;
  224. /* height: 89vh; */
  225. }
  226. /* 列表点击 */
  227. .Hit {
  228. color: #409eff;
  229. }
  230. /* 分页 */
  231. .pagination-container {
  232. display: flex;
  233. justify-content: center;
  234. margin-top: 20px;
  235. }
  236. .newly {
  237. display: flex;
  238. justify-content: right;
  239. margin-bottom: 20px;
  240. }
  241. .centeredH3 {
  242. text-align: center;
  243. font-size: 26px;
  244. font-weight: 600;
  245. margin-bottom: 20px;
  246. }
  247. .el-date-editor .el-range-separator {
  248. padding: 0;
  249. }
  250. .el-form-item--small.el-form-item {
  251. margin-bottom: 0px;
  252. margin-top: 4px;
  253. }
  254. .el-dialog__body {
  255. padding-top: 15px;
  256. }
  257. .el-form-item {
  258. margin-bottom: 10px;
  259. }