ImportData.module.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .ImportData {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. z-index: 10;
  6. width: 100%;
  7. height: 100%;
  8. background-color: #fcf9f5;
  9. border-radius: 10px;
  10. padding: 15px 24px 0;
  11. :global {
  12. .A1ImportTop {
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. margin-bottom: 18px;
  17. }
  18. .A1ImportBack {
  19. display: inline-flex;
  20. align-items: center;
  21. gap: 8px;
  22. font-size: 18px;
  23. font-weight: 700;
  24. color: #4c2f2f;
  25. cursor: pointer;
  26. user-select: none;
  27. }
  28. .tips {
  29. font-size: 14px;
  30. color: #4c2f2f;
  31. }
  32. .A1ImportRight {
  33. display: flex;
  34. align-items: center;
  35. gap: 14px;
  36. }
  37. .A1ImportTable {
  38. .ant-table-cell {
  39. padding: 10px !important;
  40. }
  41. }
  42. }
  43. }
  44. .A1ImportDetailHeader {
  45. display: flex;
  46. align-items: center;
  47. flex-wrap: nowrap;
  48. gap: 12px 24px;
  49. margin-bottom: 18px;
  50. padding: 14px 16px;
  51. background-color: #f7f1e9;
  52. border: 1px solid #dfcece;
  53. border-radius: 8px;
  54. font-size: 15px;
  55. color: #4c2f2f;
  56. overflow: hidden;
  57. > div {
  58. flex: 0 0 auto;
  59. white-space: nowrap;
  60. }
  61. }
  62. .A1ImportDetailFile {
  63. flex: 1 1 auto !important;
  64. min-width: 0;
  65. font-size: 16px;
  66. font-weight: 700;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. white-space: nowrap;
  70. }
  71. .A1ImportSearch {
  72. display: flex;
  73. align-items: center;
  74. flex-wrap: nowrap;
  75. gap: 14px;
  76. margin-bottom: 16px;
  77. overflow: hidden;
  78. :global {
  79. .ant-input-affix-wrapper {
  80. flex: 0 0 200px;
  81. min-width: 200px;
  82. width: 200px;
  83. height: 40px;
  84. border: none;
  85. background-color: transparent;
  86. background-size: 100% 100%;
  87. background-image: url('../../../assets/layImg/home_input_bg.png');
  88. }
  89. .ant-select {
  90. flex: 0 0 180px;
  91. width: 180px;
  92. height: 40px;
  93. border: none;
  94. .ant-select-selector {
  95. background-color: transparent !important;
  96. background-size: 100% 100% !important;
  97. background-image: url('../../../assets/layImg/home_input_bg.png') !important;
  98. border: none !important;
  99. box-shadow: none !important;
  100. }
  101. }
  102. }
  103. }
  104. .A1ImportDetailTable {
  105. :global(.ant-table-cell) {
  106. padding: 10px !important;
  107. }
  108. }