base.css 842 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. background-color: #f2f2f2;
  8. }
  9. ul li {
  10. list-style: none;
  11. }
  12. a {
  13. text-decoration:none ;
  14. color: #66b1ff;
  15. }
  16. .biaoshi{
  17. position: relative;
  18. font-style:normal
  19. }
  20. .biaoshi::before{
  21. position: absolute;
  22. top: -10px;
  23. left: -94px;
  24. content: '*';
  25. color: #F56C6C;
  26. }
  27. .el-button--primary{
  28. background-color: #1482b4;
  29. border-color: #1482b4;
  30. }
  31. .el-button--primary:focus, .el-button--primary:hover {
  32. background: #186f97;
  33. border-color: #186f97;
  34. }
  35. .el-input.is-active .el-input__inner, .el-input__inner:focus {
  36. border-color: #1482b4;
  37. }
  38. .cell{
  39. text-align: center !important;
  40. }
  41. .el-input__inner{
  42. line-height: normal;
  43. }
  44. input::-webkit-outer-spin-button,
  45. input::-webkit-inner-spin-button {
  46. -webkit-appearance: none;
  47. }
  48. input[type="number"] {
  49. -moz-appearance: textfield;
  50. }