style.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. *{
  2. margin:0;
  3. padding: 0;
  4. }
  5. body{
  6. font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Helvetica,Arial,"Microsoft Yahei","Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;
  7. font-size: 16px;
  8. color: #333333;
  9. background-color: #FAFAFA;
  10. min-width: 1200px;
  11. }
  12. input[type=number] {
  13. -moz-appearance:textfield;
  14. }
  15. input[type=number]::-webkit-inner-spin-button,
  16. input[type=number]::-webkit-outer-spin-button {
  17. -webkit-appearance: none;
  18. margin: 0;
  19. }
  20. ul{
  21. list-style:none;
  22. }
  23. .inline{
  24. display: inline;
  25. }
  26. .info{
  27. color: rgb(184, 179, 179);
  28. }
  29. .container{
  30. padding: 16px;
  31. }
  32. .flex-align-center{
  33. display: flex;
  34. align-items: center;
  35. }
  36. .flex-align-stretch{
  37. display: flex;
  38. flex-wrap: wrap;
  39. align-items: stretch;
  40. }
  41. .flex-between{
  42. justify-content: space-between;
  43. }
  44. .flex-end{
  45. justify-content: flex-end;
  46. }
  47. .normal-panel{
  48. background-color: #fff;
  49. }
  50. .normal-title{
  51. /* margin: 10px 0; */
  52. color: #333;
  53. font-size: 16px;
  54. font-weight: 700;
  55. }
  56. .normal-card{
  57. padding: 16px;
  58. background: #fff;
  59. border-radius: 4px;
  60. }
  61. .normal-margin{
  62. margin-bottom: 16px !important;
  63. }
  64. .normal-btn-width{
  65. width: 120px;
  66. }
  67. .btn-warning {
  68. background-color: #FA8C16 !important;
  69. }
  70. .el-table .el-table__cell{
  71. padding:2px 0 !important;
  72. }
  73. .el-input-group__append, .el-input-group__prepend{
  74. background-color: #4F7BFD !important;
  75. color: #fff !important;
  76. border: 1px solid #4F7BFD !important;
  77. cursor: pointer;
  78. }
  79. .el-table__body tr.current-row>td{
  80. background-color: #f1f2f3 !important;
  81. color: #333;
  82. /* font-weight: bold; */
  83. }
  84. .list-table-height{
  85. height:calc(100vh - 302px)
  86. }
  87. .inline-16{
  88. display: inline-block !important;
  89. margin-right: 10px !important;
  90. }
  91. .normal_input-width{
  92. width: 240px !important;
  93. }
  94. .image-panel{
  95. position: relative;
  96. display: flex;
  97. align-items: center;
  98. justify-content: space-around;
  99. width: 150px;
  100. height: 150px;
  101. margin-top:10px;
  102. background: #FFFFFF;
  103. border-radius: 4px 4px 4px 4px;
  104. opacity: 1;
  105. border: 1px solid #CCCCCC;
  106. color: #CCCCCC;
  107. font-size: 1.5rem;
  108. cursor: pointer;
  109. overflow: hidden;
  110. }
  111. .close-btn{
  112. position: absolute;
  113. right:5px;
  114. top:5px;
  115. color:red;
  116. text-shadow: 0px 0px 3px #ccc;
  117. z-index: 999;
  118. }
  119. .dialog-footer{
  120. margin-top:32px;
  121. text-align: center;
  122. }
  123. .my-tabs .el-tabs__header{
  124. margin: 0 !important;
  125. border:none !important;
  126. }
  127. .my-tabs .el-tabs__item.is-active{
  128. background: #fff !important;
  129. }
  130. .my-tabs .el-tabs--card>.el-tabs__header .el-tabs__nav, .my-tabs .el-tabs--card>.el-tabs__header .el-tabs__item{
  131. border:none !important;
  132. }