1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| .batchImport {
| &-item {
| display: flex;
|
| &:last-child {
| margin-top: 32px;
| }
|
| &-num {
| width: 24px;
| height: 24px;
| border: 1px solid #e6e6e6;
| border-radius: 50%;
| text-align: center;
| line-height: 24px;
| margin-right: 16px;
| }
|
| &-p {
| color: rgba(0, 0, 0, 0.65);
| }
| }
| }
|
|