index.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. table {
  2. width: 100%;
  3. }
  4. .data-fill-list-box {
  5. position: relative;
  6. .hc-collapse-item-header {
  7. flex: 1;
  8. position: relative;
  9. margin-left: 10px;
  10. display: flex;
  11. align-items: center;
  12. .real-fill-rate {
  13. position: relative;
  14. height: 100%;
  15. line-height: initial;
  16. margin-right: 18px;
  17. padding-right: 18px;
  18. &::after {
  19. content: "";
  20. background: #bfc8cf;
  21. position: absolute;
  22. right: 0;
  23. height: 100%;
  24. width: 1px;
  25. top: 0;
  26. }
  27. .tag {
  28. position: relative;
  29. background: white;
  30. font-size: 12px;
  31. color: #BD3124;
  32. padding: 1px 6px;
  33. border-radius: 3px;
  34. border: 1px solid #BD3124;
  35. margin-bottom: 2px;
  36. margin-top: 2px;
  37. }
  38. .tag.yes {
  39. color: #88CF65;
  40. border-color: #88CF65;
  41. }
  42. }
  43. .item-title {
  44. flex: 1;
  45. position: relative;
  46. user-select: none;
  47. color: #591BB7;
  48. font-size: 16px;
  49. font-weight: bold;
  50. cursor: pointer;
  51. }
  52. .hc-extra-text-box {
  53. position: relative;
  54. padding-right: 24px;
  55. line-height: initial;
  56. }
  57. }
  58. .data-fill-list-item-content {
  59. position: relative;
  60. height: calc(100vh - 222px);
  61. .data-fill-table-form-box {
  62. position: relative;
  63. height: calc(100% - 36px);
  64. overflow: hidden;
  65. border: 4px solid #c4c4c4;
  66. &.is-window {
  67. border: 0;
  68. .hc-window-tip {
  69. position: relative;
  70. height: 100%;
  71. display: flex;
  72. justify-content: center;
  73. align-items: center;
  74. .table-form-no {
  75. position: relative;
  76. img {
  77. width: 380px;
  78. }
  79. .desc {
  80. text-align: center;
  81. font-size: 20px;
  82. color: #aaa;
  83. }
  84. }
  85. }
  86. }
  87. .form-window-icon {
  88. position: absolute;
  89. top: 10px;
  90. right: 10px;
  91. background: #3794FF;
  92. color: white;
  93. font-size: 20px;
  94. width: 32px;
  95. height: 32px;
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. border-radius: 30px;
  100. cursor: pointer;
  101. &:hover {
  102. background: #204DA0;
  103. }
  104. }
  105. }
  106. .data-fill-table-action {
  107. position: relative;
  108. display: flex;
  109. align-items: center;
  110. padding: 4px 10px;
  111. .tip-action {
  112. cursor: pointer;
  113. margin-right: 24px;
  114. }
  115. .link-action {
  116. position: relative;
  117. flex: 1;
  118. }
  119. .btn-action {
  120. position: relative;
  121. }
  122. }
  123. }
  124. }
  125. .radio-group-box {
  126. text-align: center;
  127. }
  128. .data-fill-table-tip-box {
  129. position: relative;
  130. .tip-title {
  131. font-size: 16px;
  132. margin-bottom: 10px;
  133. display: flex;
  134. align-items: center;
  135. }
  136. .tip-item {
  137. margin-bottom: 20px;
  138. }
  139. .table-tip-foot {
  140. position: absolute;
  141. bottom: 15px;
  142. right: 0;
  143. left: 0;
  144. display: flex;
  145. align-items: center;
  146. padding: 0 15px;
  147. .tip-left-btn {
  148. flex: 1;
  149. .dow-text {
  150. cursor: pointer;
  151. display: flex;
  152. align-items: center;
  153. }
  154. }
  155. }
  156. }