base.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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: #b9412e;
  15. }
  16. .insideTop {
  17. position: relative;
  18. padding-left: 30px;
  19. font-weight: 700;
  20. height: 40px;
  21. margin-bottom: 12px;
  22. }
  23. .insideTop .add{
  24. position: absolute;
  25. top: -10px;
  26. right: 30px;
  27. }
  28. .obstruct{
  29. position: absolute;
  30. left: 0px;
  31. top: 60px;
  32. width: 100%;
  33. background-color: #f2f2f2;
  34. height: 12px;
  35. }
  36. .biaoshi{
  37. position: relative;
  38. font-style:normal
  39. }
  40. .biaoshi::before{
  41. position: absolute;
  42. top: 0px;
  43. left: -92px;
  44. content: '*';
  45. color: #F56C6C;
  46. }
  47. .el-button--primary{
  48. background-color: #b9412e;
  49. border-color: #b9412e;
  50. }
  51. .el-button--primary:focus, .el-button--primary:hover {
  52. background: #a33e2f;
  53. border-color: #a33e2f;
  54. }
  55. .el-input.is-active .el-input__inner, .el-input__inner:focus {
  56. border-color: #b9412e;
  57. }
  58. .cell{
  59. text-align: center !important;
  60. }
  61. .el-input__inner{
  62. line-height: normal;
  63. }
  64. input::-webkit-outer-spin-button,
  65. input::-webkit-inner-spin-button {
  66. -webkit-appearance: none;
  67. }
  68. input[type="number"] {
  69. -moz-appearance: textfield;
  70. }
  71. .el-dialog{
  72. min-width: 652px;
  73. }
  74. .el-upload__tip{
  75. font-size: 14px;
  76. }
  77. .el-range-editor.is-active, .el-range-editor.is-active:hover{
  78. border-color: #b9412e;
  79. }
  80. .el-date-table td.today span{
  81. color: #b9412e;
  82. }
  83. .el-date-table td.end-date span, .el-date-table td.start-date span{
  84. background-color: #b9412e;
  85. }
  86. .el-date-table td.available:hover{
  87. color: #b9412e;
  88. }
  89. .el-select .el-input__inner:focus{
  90. border-color: #b9412e;
  91. }
  92. .el-select-dropdown__item.selected{
  93. color: #b9412e;
  94. }
  95. .el-select .el-input.is-focus .el-input__inner{
  96. border-color: #b9412e;
  97. }
  98. .el-table--fit{
  99. border-top: 1px solid #EBEEF5;
  100. }
  101. .table_img{
  102. width: 100px;
  103. height: 50px;
  104. object-fit: cover;
  105. }
  106. .table_name{
  107. cursor: pointer;
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. white-space: nowrap;
  111. }
  112. .el-button--text{
  113. color: #964134;
  114. }
  115. .el-button--text:focus, .el-button--text:hover{
  116. color: #e06a58;
  117. }
  118. .upHint{
  119. color: black;
  120. height: 20px;
  121. }
  122. .el-radio__input.is-checked+.el-radio__label{
  123. color: #964134;
  124. }
  125. .el-radio__input.is-checked .el-radio__inner{
  126. border-color: #964134;
  127. background: #964134;
  128. }
  129. .el-image__preview{
  130. border: 10px solid #cccccc;
  131. }
  132. .el-pager li{
  133. border-radius: 5px;
  134. margin: 0 5px;
  135. min-width: 28px;
  136. background-color: #f4f4f5;
  137. }
  138. .el-pagination .btn-next, .el-pagination .btn-prev{
  139. background-color: #f4f4f5;
  140. padding: 0;
  141. min-width: 28px;
  142. }
  143. .el-pagination__sizes .el-input .el-input__inner:hover{
  144. border-color: #b9412e;
  145. }
  146. .el-pager li:hover{
  147. color: #b9412e;
  148. }
  149. .el-pager li.active{
  150. color: #fff;
  151. background-color: #b9412e;
  152. }
  153. .el-pagination button:hover{
  154. color: #b9412e;
  155. }