1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| .idcard-ocr {
| &-main {
| flex: 1;
| height: 48px;
| border-radius: 5px;
| background-color: #fff;
| display: flex;
| padding: 10px;
| align-items: flex-start;
| margin-right: 8px;
| &-img {
| // max-width: 54px;
| max-width: 48px;
| max-height: 48px;
| opacity: 0.8;
| margin-right: 8px;
| }
|
| &-title {
| // line-height: 48px;
| // text-align: left;
| // height: 48px;
| // width: 94px;
| &-top {
| color: #171a1d;
| font-size: 14px;
| line-height: 22px;
| // height: 22px;
| }
| &-bottom {
| font-size: 12px;
| // transform: scale(0.83);
| // transform-origin: 0 0;
| color: rgba(23, 26, 29, 0.6);
| line-height: 14px;
| // height: 14px;
| // width: 118px;
| }
| }
| &-modal {
| text-align: left;
| padding: 12px;
| &-m .dtm-modal-body {
| padding: 0 !important;
| }
| &-space {
| width: 3px;
| height: 12px;
| display: inline-block;
| background: #007fff;
| margin-right: 8px;
| & span {
| font-size: 14px;
| }
| }
| &-img {
| & img {
| width: 120px;
| }
| }
| &-img2 {
| padding: 0 12px;
| & img {
| height: 72px;
| width: 100%;
| }
| }
| & .dtm-modal-title {
| font-size: 16px;
| }
| }
| }
|
| &-main:last-child {
| margin-right: 0;
| }
| }
|
|