@zgfe/modules-dm 1.0.56-zhongyuan.27 → 1.0.56-zhongyuan.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/constants/api.d.ts +1 -0
- package/es/constants/api.js +2 -0
- package/es/modules/dataManage/collectionAttributeList.js +360 -31
- package/es/modules/dataManage/components/creditPop/index.less +121 -121
- package/es/modules/dataManage/components/depositPop/index.less +115 -115
- package/es/modules/dataManage/components/developModal/index.css +36 -36
- package/es/modules/dataManage/components/developModal/index.less +36 -36
- package/es/modules/dataManage/components/editTxt/index.less +44 -44
- package/es/modules/dataManage/components/eventFilter/styles/index.less +72 -72
- package/es/modules/dataManage/components/importAttrDialog/styles/index.less +90 -90
- package/es/modules/dataManage/components/importMetaDialog/styles/index.less +91 -91
- package/es/modules/dataManage/components/tablePlus.js +2 -2
- package/es/modules/dataManage/styles/detailed.less +74 -74
- package/es/modules/dataManage/styles/index.less +5 -0
- package/es/modules/dataMap/css/index.css +196 -196
- package/es/modules/dataMap/css/index.less +213 -213
- package/es/modules/dataPlan/styles/index.less +316 -316
- package/es/modules/dataReal/css/index.css +50 -50
- package/es/modules/dataReal/css/index.less +53 -53
- package/package.json +2 -2
|
@@ -1,121 +1,121 @@
|
|
|
1
|
-
.creditPopBg {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 0;
|
|
4
|
-
right: 0;
|
|
5
|
-
bottom: 0;
|
|
6
|
-
left: 0;
|
|
7
|
-
z-index: 10000;
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
background: rgba(2, 20, 41, 0.8);
|
|
12
|
-
.creditPopHeader {
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: space-between;
|
|
16
|
-
height: 82px;
|
|
17
|
-
padding-right: 24px;
|
|
18
|
-
padding-left: 24px;
|
|
19
|
-
.creditPopHeaderTitle {
|
|
20
|
-
color: #000;
|
|
21
|
-
font-weight: 500;
|
|
22
|
-
font-size: 24px;
|
|
23
|
-
font-family: PingFang SC;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
line-height: normal;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
.creditPopContent {
|
|
29
|
-
width: 960px;
|
|
30
|
-
background-color: #fff;
|
|
31
|
-
border-radius: 10px;
|
|
32
|
-
}
|
|
33
|
-
.creditPopPngBox {
|
|
34
|
-
display: flex;
|
|
35
|
-
align-items: center;
|
|
36
|
-
justify-content: space-between;
|
|
37
|
-
padding-right: 24px;
|
|
38
|
-
padding-left: 24px;
|
|
39
|
-
.creditPopPng {
|
|
40
|
-
width: 208px;
|
|
41
|
-
height: 266px;
|
|
42
|
-
overflow: hidden;
|
|
43
|
-
background-color: #f6fbfe;
|
|
44
|
-
background-repeat: no-repeat;
|
|
45
|
-
background-position: top right;
|
|
46
|
-
background-size: contain;
|
|
47
|
-
border-radius: 8px;
|
|
48
|
-
}
|
|
49
|
-
.creditPopPng01 {
|
|
50
|
-
background-image: url('./imgs/png01.png');
|
|
51
|
-
}
|
|
52
|
-
.creditPopPng02 {
|
|
53
|
-
background-image: url('./imgs/png02.png');
|
|
54
|
-
}
|
|
55
|
-
.creditPopPng03 {
|
|
56
|
-
background-image: url('./imgs/png03.png');
|
|
57
|
-
}
|
|
58
|
-
.creditPopPng04 {
|
|
59
|
-
background-image: url('./imgs/png04.png');
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
.creditPopTxtBox {
|
|
63
|
-
display: flex;
|
|
64
|
-
// align-items: center;
|
|
65
|
-
flex-direction: column;
|
|
66
|
-
justify-content: space-between;
|
|
67
|
-
padding: 24px;
|
|
68
|
-
.creditPopTxt {
|
|
69
|
-
display: flex;
|
|
70
|
-
align-items: center;
|
|
71
|
-
color: var(--io-n-8, #354354);
|
|
72
|
-
font-weight: 400;
|
|
73
|
-
font-size: 14px;
|
|
74
|
-
font-family: PingFang SC;
|
|
75
|
-
font-style: normal;
|
|
76
|
-
line-height: normal;
|
|
77
|
-
line-height: 20px;
|
|
78
|
-
}
|
|
79
|
-
.creditPopClickIcon {
|
|
80
|
-
margin-right: 8px;
|
|
81
|
-
margin-left: 16px;
|
|
82
|
-
color: #165dff;
|
|
83
|
-
cursor: pointer;
|
|
84
|
-
}
|
|
85
|
-
.creditPopClickTxt {
|
|
86
|
-
color: #165dff;
|
|
87
|
-
cursor: pointer;
|
|
88
|
-
}
|
|
89
|
-
.creditPopTxt::before {
|
|
90
|
-
display: inline-block;
|
|
91
|
-
margin: 7px;
|
|
92
|
-
padding: 3px;
|
|
93
|
-
background-color: #354354;
|
|
94
|
-
border-radius: 3px;
|
|
95
|
-
content: '';
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
.creditPopFooter {
|
|
99
|
-
display: flex;
|
|
100
|
-
align-items: center;
|
|
101
|
-
justify-content: flex-end;
|
|
102
|
-
height: 80px;
|
|
103
|
-
padding-right: 24px;
|
|
104
|
-
border-top: 1px solid #f2f3f4;
|
|
105
|
-
// > :nth-child(1) {
|
|
106
|
-
// margin-right: 16px;
|
|
107
|
-
// color: #fff;
|
|
108
|
-
// background-color: #29bd52;
|
|
109
|
-
// border-color: #29bd52;
|
|
110
|
-
// }
|
|
111
|
-
}
|
|
112
|
-
.creditPopLinkPng {
|
|
113
|
-
width: 16px;
|
|
114
|
-
height: 16px;
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
background-image: url('./imgs/link.png');
|
|
117
|
-
background-repeat: no-repeat;
|
|
118
|
-
background-position: top right;
|
|
119
|
-
background-size: contain;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
1
|
+
.creditPopBg {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
z-index: 10000;
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
background: rgba(2, 20, 41, 0.8);
|
|
12
|
+
.creditPopHeader {
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: space-between;
|
|
16
|
+
height: 82px;
|
|
17
|
+
padding-right: 24px;
|
|
18
|
+
padding-left: 24px;
|
|
19
|
+
.creditPopHeaderTitle {
|
|
20
|
+
color: #000;
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
font-size: 24px;
|
|
23
|
+
font-family: PingFang SC;
|
|
24
|
+
font-style: normal;
|
|
25
|
+
line-height: normal;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
.creditPopContent {
|
|
29
|
+
width: 960px;
|
|
30
|
+
background-color: #fff;
|
|
31
|
+
border-radius: 10px;
|
|
32
|
+
}
|
|
33
|
+
.creditPopPngBox {
|
|
34
|
+
display: flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
justify-content: space-between;
|
|
37
|
+
padding-right: 24px;
|
|
38
|
+
padding-left: 24px;
|
|
39
|
+
.creditPopPng {
|
|
40
|
+
width: 208px;
|
|
41
|
+
height: 266px;
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
background-color: #f6fbfe;
|
|
44
|
+
background-repeat: no-repeat;
|
|
45
|
+
background-position: top right;
|
|
46
|
+
background-size: contain;
|
|
47
|
+
border-radius: 8px;
|
|
48
|
+
}
|
|
49
|
+
.creditPopPng01 {
|
|
50
|
+
background-image: url('./imgs/png01.png');
|
|
51
|
+
}
|
|
52
|
+
.creditPopPng02 {
|
|
53
|
+
background-image: url('./imgs/png02.png');
|
|
54
|
+
}
|
|
55
|
+
.creditPopPng03 {
|
|
56
|
+
background-image: url('./imgs/png03.png');
|
|
57
|
+
}
|
|
58
|
+
.creditPopPng04 {
|
|
59
|
+
background-image: url('./imgs/png04.png');
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
.creditPopTxtBox {
|
|
63
|
+
display: flex;
|
|
64
|
+
// align-items: center;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
justify-content: space-between;
|
|
67
|
+
padding: 24px;
|
|
68
|
+
.creditPopTxt {
|
|
69
|
+
display: flex;
|
|
70
|
+
align-items: center;
|
|
71
|
+
color: var(--io-n-8, #354354);
|
|
72
|
+
font-weight: 400;
|
|
73
|
+
font-size: 14px;
|
|
74
|
+
font-family: PingFang SC;
|
|
75
|
+
font-style: normal;
|
|
76
|
+
line-height: normal;
|
|
77
|
+
line-height: 20px;
|
|
78
|
+
}
|
|
79
|
+
.creditPopClickIcon {
|
|
80
|
+
margin-right: 8px;
|
|
81
|
+
margin-left: 16px;
|
|
82
|
+
color: #165dff;
|
|
83
|
+
cursor: pointer;
|
|
84
|
+
}
|
|
85
|
+
.creditPopClickTxt {
|
|
86
|
+
color: #165dff;
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
}
|
|
89
|
+
.creditPopTxt::before {
|
|
90
|
+
display: inline-block;
|
|
91
|
+
margin: 7px;
|
|
92
|
+
padding: 3px;
|
|
93
|
+
background-color: #354354;
|
|
94
|
+
border-radius: 3px;
|
|
95
|
+
content: '';
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
.creditPopFooter {
|
|
99
|
+
display: flex;
|
|
100
|
+
align-items: center;
|
|
101
|
+
justify-content: flex-end;
|
|
102
|
+
height: 80px;
|
|
103
|
+
padding-right: 24px;
|
|
104
|
+
border-top: 1px solid #f2f3f4;
|
|
105
|
+
// > :nth-child(1) {
|
|
106
|
+
// margin-right: 16px;
|
|
107
|
+
// color: #fff;
|
|
108
|
+
// background-color: #29bd52;
|
|
109
|
+
// border-color: #29bd52;
|
|
110
|
+
// }
|
|
111
|
+
}
|
|
112
|
+
.creditPopLinkPng {
|
|
113
|
+
width: 16px;
|
|
114
|
+
height: 16px;
|
|
115
|
+
overflow: hidden;
|
|
116
|
+
background-image: url('./imgs/link.png');
|
|
117
|
+
background-repeat: no-repeat;
|
|
118
|
+
background-position: top right;
|
|
119
|
+
background-size: contain;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
@@ -1,115 +1,115 @@
|
|
|
1
|
-
.depositPopBg {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 0;
|
|
4
|
-
right: 0;
|
|
5
|
-
bottom: 0;
|
|
6
|
-
left: 0;
|
|
7
|
-
z-index: 10000;
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
background: rgba(2, 20, 41, 0.8);
|
|
12
|
-
.depositPopHeader {
|
|
13
|
-
display: flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: space-between;
|
|
16
|
-
height: 82px;
|
|
17
|
-
padding-right: 24px;
|
|
18
|
-
padding-left: 24px;
|
|
19
|
-
.depositPopHeaderTitle {
|
|
20
|
-
color: #000;
|
|
21
|
-
font-weight: 500;
|
|
22
|
-
font-size: 24px;
|
|
23
|
-
font-family: PingFang SC;
|
|
24
|
-
font-style: normal;
|
|
25
|
-
line-height: normal;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
.depositPopContent {
|
|
29
|
-
width: 960px;
|
|
30
|
-
background-color: #fff;
|
|
31
|
-
border-radius: 10px;
|
|
32
|
-
}
|
|
33
|
-
.depositPopPngBox {
|
|
34
|
-
display: flex;
|
|
35
|
-
align-items: center;
|
|
36
|
-
justify-content: space-between;
|
|
37
|
-
padding-right: 24px;
|
|
38
|
-
padding-left: 24px;
|
|
39
|
-
.depositPopPng {
|
|
40
|
-
width: 444px;
|
|
41
|
-
height: 266px;
|
|
42
|
-
overflow: hidden;
|
|
43
|
-
background-color: #f6fbfe;
|
|
44
|
-
background-repeat: no-repeat;
|
|
45
|
-
background-position: top right;
|
|
46
|
-
background-size: contain;
|
|
47
|
-
border-radius: 8px;
|
|
48
|
-
}
|
|
49
|
-
.depositPopPng01 {
|
|
50
|
-
background-image: url('./imgs/png01.png');
|
|
51
|
-
}
|
|
52
|
-
.depositPopPng02 {
|
|
53
|
-
background-image: url('./imgs/png02.png');
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
.depositPopTxtBox {
|
|
57
|
-
display: flex;
|
|
58
|
-
// align-items: center;
|
|
59
|
-
flex-direction: column;
|
|
60
|
-
justify-content: space-between;
|
|
61
|
-
padding: 24px;
|
|
62
|
-
.depositPopTxt {
|
|
63
|
-
display: flex;
|
|
64
|
-
align-items: center;
|
|
65
|
-
color: var(--io-n-8, #354354);
|
|
66
|
-
font-weight: 400;
|
|
67
|
-
font-size: 14px;
|
|
68
|
-
font-family: PingFang SC;
|
|
69
|
-
font-style: normal;
|
|
70
|
-
line-height: normal;
|
|
71
|
-
line-height: 20px;
|
|
72
|
-
}
|
|
73
|
-
.depositPopClickIcon {
|
|
74
|
-
margin-right: 8px;
|
|
75
|
-
margin-left: 16px;
|
|
76
|
-
color: #165dff;
|
|
77
|
-
cursor: pointer;
|
|
78
|
-
}
|
|
79
|
-
.depositPopClickTxt {
|
|
80
|
-
color: #165dff;
|
|
81
|
-
cursor: pointer;
|
|
82
|
-
}
|
|
83
|
-
.depositPopTxt::before {
|
|
84
|
-
display: inline-block;
|
|
85
|
-
margin: 7px;
|
|
86
|
-
padding: 3px;
|
|
87
|
-
background-color: #354354;
|
|
88
|
-
border-radius: 3px;
|
|
89
|
-
content: '';
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
.depositPopFooter {
|
|
93
|
-
display: flex;
|
|
94
|
-
align-items: center;
|
|
95
|
-
justify-content: flex-end;
|
|
96
|
-
height: 80px;
|
|
97
|
-
padding-right: 24px;
|
|
98
|
-
border-top: 1px solid #f2f3f4;
|
|
99
|
-
// > :nth-child(1) {
|
|
100
|
-
// margin-right: 16px;
|
|
101
|
-
// color: #fff;
|
|
102
|
-
// background-color: #29bd52;
|
|
103
|
-
// border-color: #29bd52;
|
|
104
|
-
// }
|
|
105
|
-
}
|
|
106
|
-
.depositPopLinkPng {
|
|
107
|
-
width: 16px;
|
|
108
|
-
height: 16px;
|
|
109
|
-
overflow: hidden;
|
|
110
|
-
background-image: url('./imgs/link.png');
|
|
111
|
-
background-repeat: no-repeat;
|
|
112
|
-
background-position: top right;
|
|
113
|
-
background-size: contain;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
1
|
+
.depositPopBg {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 0;
|
|
4
|
+
right: 0;
|
|
5
|
+
bottom: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
z-index: 10000;
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
background: rgba(2, 20, 41, 0.8);
|
|
12
|
+
.depositPopHeader {
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: space-between;
|
|
16
|
+
height: 82px;
|
|
17
|
+
padding-right: 24px;
|
|
18
|
+
padding-left: 24px;
|
|
19
|
+
.depositPopHeaderTitle {
|
|
20
|
+
color: #000;
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
font-size: 24px;
|
|
23
|
+
font-family: PingFang SC;
|
|
24
|
+
font-style: normal;
|
|
25
|
+
line-height: normal;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
.depositPopContent {
|
|
29
|
+
width: 960px;
|
|
30
|
+
background-color: #fff;
|
|
31
|
+
border-radius: 10px;
|
|
32
|
+
}
|
|
33
|
+
.depositPopPngBox {
|
|
34
|
+
display: flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
justify-content: space-between;
|
|
37
|
+
padding-right: 24px;
|
|
38
|
+
padding-left: 24px;
|
|
39
|
+
.depositPopPng {
|
|
40
|
+
width: 444px;
|
|
41
|
+
height: 266px;
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
background-color: #f6fbfe;
|
|
44
|
+
background-repeat: no-repeat;
|
|
45
|
+
background-position: top right;
|
|
46
|
+
background-size: contain;
|
|
47
|
+
border-radius: 8px;
|
|
48
|
+
}
|
|
49
|
+
.depositPopPng01 {
|
|
50
|
+
background-image: url('./imgs/png01.png');
|
|
51
|
+
}
|
|
52
|
+
.depositPopPng02 {
|
|
53
|
+
background-image: url('./imgs/png02.png');
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
.depositPopTxtBox {
|
|
57
|
+
display: flex;
|
|
58
|
+
// align-items: center;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
justify-content: space-between;
|
|
61
|
+
padding: 24px;
|
|
62
|
+
.depositPopTxt {
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: center;
|
|
65
|
+
color: var(--io-n-8, #354354);
|
|
66
|
+
font-weight: 400;
|
|
67
|
+
font-size: 14px;
|
|
68
|
+
font-family: PingFang SC;
|
|
69
|
+
font-style: normal;
|
|
70
|
+
line-height: normal;
|
|
71
|
+
line-height: 20px;
|
|
72
|
+
}
|
|
73
|
+
.depositPopClickIcon {
|
|
74
|
+
margin-right: 8px;
|
|
75
|
+
margin-left: 16px;
|
|
76
|
+
color: #165dff;
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
}
|
|
79
|
+
.depositPopClickTxt {
|
|
80
|
+
color: #165dff;
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
}
|
|
83
|
+
.depositPopTxt::before {
|
|
84
|
+
display: inline-block;
|
|
85
|
+
margin: 7px;
|
|
86
|
+
padding: 3px;
|
|
87
|
+
background-color: #354354;
|
|
88
|
+
border-radius: 3px;
|
|
89
|
+
content: '';
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
.depositPopFooter {
|
|
93
|
+
display: flex;
|
|
94
|
+
align-items: center;
|
|
95
|
+
justify-content: flex-end;
|
|
96
|
+
height: 80px;
|
|
97
|
+
padding-right: 24px;
|
|
98
|
+
border-top: 1px solid #f2f3f4;
|
|
99
|
+
// > :nth-child(1) {
|
|
100
|
+
// margin-right: 16px;
|
|
101
|
+
// color: #fff;
|
|
102
|
+
// background-color: #29bd52;
|
|
103
|
+
// border-color: #29bd52;
|
|
104
|
+
// }
|
|
105
|
+
}
|
|
106
|
+
.depositPopLinkPng {
|
|
107
|
+
width: 16px;
|
|
108
|
+
height: 16px;
|
|
109
|
+
overflow: hidden;
|
|
110
|
+
background-image: url('./imgs/link.png');
|
|
111
|
+
background-repeat: no-repeat;
|
|
112
|
+
background-position: top right;
|
|
113
|
+
background-size: contain;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
.devModel {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
}
|
|
4
|
-
.devModel_radioList {
|
|
5
|
-
display: grid;
|
|
6
|
-
grid-column-gap: 10px;
|
|
7
|
-
grid-template-columns: repeat(4, 1fr);
|
|
8
|
-
align-items: center;
|
|
9
|
-
justify-content: center;
|
|
10
|
-
}
|
|
11
|
-
.devModel_radioList_item {
|
|
12
|
-
padding: 20px 0px;
|
|
13
|
-
color: #354354;
|
|
14
|
-
text-align: center;
|
|
15
|
-
background: #fafafb;
|
|
16
|
-
}
|
|
17
|
-
.devModel_radioList_active {
|
|
18
|
-
color: #165dff;
|
|
19
|
-
background: #e8efff;
|
|
20
|
-
}
|
|
21
|
-
.devModel_content {
|
|
22
|
-
margin: 0px 0px 24px;
|
|
23
|
-
padding: 0px 0px 24px;
|
|
24
|
-
border-bottom: 1px solid #f2f3f4;
|
|
25
|
-
}
|
|
26
|
-
.devModel_content h3 {
|
|
27
|
-
margin: 0px 0px 16px;
|
|
28
|
-
}
|
|
29
|
-
.devModel_content .buttonText {
|
|
30
|
-
margin: 0px 0px 0px 8px;
|
|
31
|
-
}
|
|
32
|
-
.devModel_content:last-child {
|
|
33
|
-
margin: 0px 0px 0px;
|
|
34
|
-
padding: 0px 0px 0px;
|
|
35
|
-
border-bottom: 0px solid #f2f3f4;
|
|
36
|
-
}
|
|
1
|
+
.devModel {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
.devModel_radioList {
|
|
5
|
+
display: grid;
|
|
6
|
+
grid-column-gap: 10px;
|
|
7
|
+
grid-template-columns: repeat(4, 1fr);
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
}
|
|
11
|
+
.devModel_radioList_item {
|
|
12
|
+
padding: 20px 0px;
|
|
13
|
+
color: #354354;
|
|
14
|
+
text-align: center;
|
|
15
|
+
background: #fafafb;
|
|
16
|
+
}
|
|
17
|
+
.devModel_radioList_active {
|
|
18
|
+
color: #165dff;
|
|
19
|
+
background: #e8efff;
|
|
20
|
+
}
|
|
21
|
+
.devModel_content {
|
|
22
|
+
margin: 0px 0px 24px;
|
|
23
|
+
padding: 0px 0px 24px;
|
|
24
|
+
border-bottom: 1px solid #f2f3f4;
|
|
25
|
+
}
|
|
26
|
+
.devModel_content h3 {
|
|
27
|
+
margin: 0px 0px 16px;
|
|
28
|
+
}
|
|
29
|
+
.devModel_content .buttonText {
|
|
30
|
+
margin: 0px 0px 0px 8px;
|
|
31
|
+
}
|
|
32
|
+
.devModel_content:last-child {
|
|
33
|
+
margin: 0px 0px 0px;
|
|
34
|
+
padding: 0px 0px 0px;
|
|
35
|
+
border-bottom: 0px solid #f2f3f4;
|
|
36
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
.devModel {
|
|
2
|
-
box-sizing: border-box;
|
|
3
|
-
&_radioList {
|
|
4
|
-
display: grid;
|
|
5
|
-
grid-column-gap: 10px;
|
|
6
|
-
grid-template-columns: repeat(4, 1fr);
|
|
7
|
-
align-items: center;
|
|
8
|
-
justify-content: center;
|
|
9
|
-
&_item {
|
|
10
|
-
padding: 20px 0px;
|
|
11
|
-
color: #354354;
|
|
12
|
-
text-align: center;
|
|
13
|
-
background: #fafafb;
|
|
14
|
-
}
|
|
15
|
-
&_active {
|
|
16
|
-
color: #165dff;
|
|
17
|
-
background: #e8efff;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
&_content {
|
|
21
|
-
margin: 0px 0px 24px;
|
|
22
|
-
padding: 0px 0px 24px;
|
|
23
|
-
border-bottom: 1px solid #f2f3f4;
|
|
24
|
-
h3 {
|
|
25
|
-
margin: 0px 0px 16px;
|
|
26
|
-
}
|
|
27
|
-
.buttonText {
|
|
28
|
-
margin: 0px 0px 0px 8px;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
&_content:last-child {
|
|
32
|
-
margin: 0px 0px 0px;
|
|
33
|
-
padding: 0px 0px 0px;
|
|
34
|
-
border-bottom: 0px solid #f2f3f4;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
.devModel {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
&_radioList {
|
|
4
|
+
display: grid;
|
|
5
|
+
grid-column-gap: 10px;
|
|
6
|
+
grid-template-columns: repeat(4, 1fr);
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
&_item {
|
|
10
|
+
padding: 20px 0px;
|
|
11
|
+
color: #354354;
|
|
12
|
+
text-align: center;
|
|
13
|
+
background: #fafafb;
|
|
14
|
+
}
|
|
15
|
+
&_active {
|
|
16
|
+
color: #165dff;
|
|
17
|
+
background: #e8efff;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
&_content {
|
|
21
|
+
margin: 0px 0px 24px;
|
|
22
|
+
padding: 0px 0px 24px;
|
|
23
|
+
border-bottom: 1px solid #f2f3f4;
|
|
24
|
+
h3 {
|
|
25
|
+
margin: 0px 0px 16px;
|
|
26
|
+
}
|
|
27
|
+
.buttonText {
|
|
28
|
+
margin: 0px 0px 0px 8px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
&_content:last-child {
|
|
32
|
+
margin: 0px 0px 0px;
|
|
33
|
+
padding: 0px 0px 0px;
|
|
34
|
+
border-bottom: 0px solid #f2f3f4;
|
|
35
|
+
}
|
|
36
|
+
}
|