allocation-worker.component.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. @import "../../../../src/theme.less";
  2. :host {
  3. width: 100%;
  4. height: 100%;
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. background: rgba(0, 0, 0, 0.4);
  9. z-index: 999;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .detail {
  15. width: 1000px;
  16. min-height: 580px;
  17. border-radius: 5px;
  18. background: #fff;
  19. color: #333;
  20. font-size: 14px;
  21. padding: 12px 20px;
  22. padding-bottom: 70px;
  23. position: relative;
  24. .title {
  25. font-size: 18px;
  26. text-align: center;
  27. line-height: 24px;
  28. margin: 0;
  29. margin-bottom: 12px;
  30. position: relative;
  31. i {
  32. position: absolute;
  33. right: 0;
  34. top: 0;
  35. font-size: 20px;
  36. color: #666;
  37. cursor: pointer;
  38. padding: 0 5px;
  39. }
  40. }
  41. .content {
  42. width: 960px;
  43. overflow: hidden;
  44. .select {
  45. width: 100%;
  46. background: #f9fafb;
  47. border: 1px solid #e5e9ed;
  48. border-radius: 5px;
  49. padding: 13px 20px;
  50. .label {
  51. margin-bottom: 8px;
  52. }
  53. }
  54. .table {
  55. width: 100%;
  56. margin-top: 15px;
  57. .thead {
  58. background-image: repeating-linear-gradient(
  59. to right,
  60. @bg-start,
  61. @bg-end 100%
  62. ) !important;
  63. th {
  64. color: #fff !important;
  65. text-align: center;
  66. font-size: 12px;
  67. border: none;
  68. }
  69. }
  70. .box {
  71. min-height: 380px;
  72. border-radius: 5px;
  73. background: #f9fafb;
  74. border: 1px solid #e5e9ed;
  75. padding-bottom: 60px;
  76. position: relative;
  77. .pagination {
  78. margin-top: 14px;
  79. position: absolute;
  80. bottom: 12px;
  81. right: 5px;
  82. }
  83. }
  84. }
  85. }
  86. .btns {
  87. width: 100%;
  88. position: absolute;
  89. left: 0;
  90. bottom: 20px;
  91. button {
  92. margin: 9px;
  93. margin-bottom: 0;
  94. }
  95. }
  96. }