| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- .ImportData {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 10;
- width: 100%;
- height: 100%;
- background-color: #fcf9f5;
- border-radius: 10px;
- padding: 15px 24px 0;
- :global {
- .A1ImportTop {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 18px;
- }
- .A1ImportBack {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- font-size: 18px;
- font-weight: 700;
- color: #4c2f2f;
- cursor: pointer;
- user-select: none;
- }
- .tips {
- font-size: 14px;
- color: #4c2f2f;
- }
- .A1ImportRight {
- display: flex;
- align-items: center;
- gap: 14px;
- }
- .A1ImportTable {
- .ant-table-cell {
- padding: 10px !important;
- }
- }
- }
- }
- .A1ImportDetailHeader {
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- gap: 12px 24px;
- margin-bottom: 18px;
- padding: 14px 16px;
- background-color: #f7f1e9;
- border: 1px solid #dfcece;
- border-radius: 8px;
- font-size: 15px;
- color: #4c2f2f;
- overflow: hidden;
- > div {
- flex: 0 0 auto;
- white-space: nowrap;
- }
- }
- .A1ImportDetailFile {
- flex: 1 1 auto !important;
- min-width: 0;
- font-size: 16px;
- font-weight: 700;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .A1ImportSearch {
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- gap: 14px;
- margin-bottom: 16px;
- overflow: hidden;
- :global {
- .ant-input-affix-wrapper {
- flex: 0 0 200px;
- min-width: 200px;
- width: 200px;
- height: 40px;
- border: none;
- background-color: transparent;
- background-size: 100% 100%;
- background-image: url('../../../assets/layImg/home_input_bg.png');
- }
- .ant-select {
- flex: 0 0 180px;
- width: 180px;
- height: 40px;
- border: none;
- .ant-select-selector {
- background-color: transparent !important;
- background-size: 100% 100% !important;
- background-image: url('../../../assets/layImg/home_input_bg.png') !important;
- border: none !important;
- box-shadow: none !important;
- }
- }
- }
- }
- .A1ImportDetailTable {
- :global(.ant-table-cell) {
- padding: 10px !important;
- }
- }
|