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
| .ModalLContent {
| position: fixed;
| overflow-y: auto;
| border-radius: 0px;
|
| &-main {
| display: flex;
| flex-direction: column;
| height: 100%;
| }
| &-head {
| background-color: #007fff;
| color: #fff;
| text-align: center;
| font-size: 16px;
| line-height: 24px;
| padding: 12px 12px;
| }
| &-content {
| flex: 1;
| overflow: auto;
| // min-height: 302px;
| max-height: 440px;
| // border-radius: 0 0 10px 10px;
| background: #f2f2f2;
| & :focus-visible {
| outline: -webkit-focus-ring-color auto 0px;
| }
| }
| &-bottom {
| // position: absolute;
| // bottom: -40px;
| margin-top: 16px;
| width: 100%;
| display: flex;
| justify-content: center;
| &-img {
| width: 24px;
| height: 24px;
| }
| }
|
| &-item {
| padding: 8px;
| margin-bottom: 4px;
| font-size: 15px;
| line-height: 23px;
| }
|
| &-item:last-child {
| margin-bottom: 0;
| }
| }
|
|