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
| .modalMinDown {
| &-header {
| display: flex;
| align-items: center;
| justify-content: space-between;
| padding: 12px 0;
|
| &-title {
| font-size: 16px;
| line-height: 24px;
| font-weight: 600;
| }
|
| &-close {
| font-size: 16px;
| }
| }
|
| &-main {
| display: flex;
| flex-wrap: wrap;
|
| &-item {
| padding: 8px 0;
| display: flex;
| flex-direction: column;
| align-items: center;
| flex: 0 0 25%;
|
| &-icon {
| width: 36px;
| height: 36px;
| background: linear-gradient(138deg, #007fff 0%, #0062ff 100%);
| border-radius: 50%;
| display: flex;
| align-items: center;
| justify-content: center;
|
| &-img {
| width: 16px;
| height: 16px;
| }
| }
|
| &-text {
| font-size: 12px;
| line-height: 20px;
| margin-top: 4px;
| }
| }
| }
| }
|
|