overseas 2.0.7
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/README.md +12 -0
- package/package.json +80 -0
- package/packages/.DS_Store +0 -0
- package/packages/base/bottom-popup/index.js +10 -0
- package/packages/base/bottom-popup/src/bottom-popup.vue +151 -0
- package/packages/base/button/index.js +10 -0
- package/packages/base/button/src/button.vue +108 -0
- package/packages/base/dialog/index.js +10 -0
- package/packages/base/dialog/src/dialog.vue +173 -0
- package/packages/base/icon/index.js +10 -0
- package/packages/base/icon/src/icon.vue +15 -0
- package/packages/base/image/index.js +10 -0
- package/packages/base/image/src/image.vue +40 -0
- package/packages/base/material-list/index.js +10 -0
- package/packages/base/material-list/src/material-list.vue +48 -0
- package/packages/base/popup/index.js +10 -0
- package/packages/base/popup/src/popup.vue +44 -0
- package/packages/business/basic-image/index.js +10 -0
- package/packages/business/basic-image/src/basicImage.vue +51 -0
- package/packages/business/bottom-fixed-button/index.js +10 -0
- package/packages/business/bottom-fixed-button/src/bottomFixedButton.vue +66 -0
- package/packages/business/class-choose/index.js +10 -0
- package/packages/business/class-choose/src/courseCard.vue +142 -0
- package/packages/business/class-choose/src/img/icon_close_bottomcard.svg +14 -0
- package/packages/business/class-choose/src/img/icon_date.svg +21 -0
- package/packages/business/class-choose/src/img/icon_full.svg +27 -0
- package/packages/business/class-choose/src/img/icon_full_EL.svg +49 -0
- package/packages/business/class-choose/src/img/icon_selected.svg +18 -0
- package/packages/business/class-choose/src/img/icon_star_selected.svg +13 -0
- package/packages/business/class-choose/src/img/icon_star_unselect.svg +13 -0
- package/packages/business/class-choose/src/index.vue +316 -0
- package/packages/business/grade-panel/index.js +10 -0
- package/packages/business/grade-panel/src/gradePanel.vue +150 -0
- package/packages/business/material-panel/index.js +10 -0
- package/packages/business/material-panel/src/index.vue +136 -0
- package/packages/business/notified-panel/index.js +10 -0
- package/packages/business/notified-panel/src/areaCodeList.js +181 -0
- package/packages/business/notified-panel/src/index.vue +491 -0
- package/packages/business/page-render/index.js +10 -0
- package/packages/business/page-render/src/pageRender.vue +73 -0
- package/packages/business/registration-panel/index.js +10 -0
- package/packages/business/registration-panel/src/areaCodeList.js +181 -0
- package/packages/business/registration-panel/src/img/icon_off.png +0 -0
- package/packages/business/registration-panel/src/img/icon_on.png +0 -0
- package/packages/business/registration-panel/src/index.vue +329 -0
- package/packages/business/registration-panel/src/languageList.js +41 -0
- package/packages/business/selector-panel/index.js +10 -0
- package/packages/business/selector-panel/src/selectorPanel.vue +134 -0
- package/packages/business/student-info/index.js +10 -0
- package/packages/business/student-info/src/api/index.js +10 -0
- package/packages/business/student-info/src/config.js +11 -0
- package/packages/business/student-info/src/studentInfo.vue +145 -0
- package/packages/business/switch-student/index.js +10 -0
- package/packages/business/switch-student/src/api/index.js +28 -0
- package/packages/business/switch-student/src/switchStudent.vue +245 -0
- package/packages/business/tips-popup/index.js +10 -0
- package/packages/business/tips-popup/src/tipsPopup.vue +76 -0
- package/packages/business/user-login/index.js +10 -0
- package/packages/business/user-login/src/api/index.js +23 -0
- package/packages/business/user-login/src/img/logo.png +0 -0
- package/packages/business/user-login/src/index.vue +149 -0
- package/packages/theme-style/package.json +38 -0
- package/packages/theme-style/src/bottom-fixed-button.scss +31 -0
- package/packages/theme-style/src/bottom-popup.scss +87 -0
- package/packages/theme-style/src/button.scss +110 -0
- package/packages/theme-style/src/class-choose.scss +251 -0
- package/packages/theme-style/src/common/popup.scss +39 -0
- package/packages/theme-style/src/common/var.scss +6 -0
- package/packages/theme-style/src/common.scss +97 -0
- package/packages/theme-style/src/dialog.scss +130 -0
- package/packages/theme-style/src/grade-panel.scss +76 -0
- package/packages/theme-style/src/icon.scss +369 -0
- package/packages/theme-style/src/image.scss +8 -0
- package/packages/theme-style/src/img/body_bg.png +0 -0
- package/packages/theme-style/src/img/pdf.png +0 -0
- package/packages/theme-style/src/img/title_bg.png +0 -0
- package/packages/theme-style/src/index.scss +20 -0
- package/packages/theme-style/src/material-list.scss +118 -0
- package/packages/theme-style/src/material-panel.scss +2 -0
- package/packages/theme-style/src/notified-panel.scss +207 -0
- package/packages/theme-style/src/page-render.scss +3 -0
- package/packages/theme-style/src/registration-panel.scss +158 -0
- package/packages/theme-style/src/selector-panel.scss +86 -0
- package/packages/theme-style/src/student-info.scss +114 -0
- package/packages/theme-style/src/switch-student.scss +176 -0
- package/packages/theme-style/src/tips-popup.scss +60 -0
- package/packages/theme-style/src/user-login.scss +93 -0
- package/src/index.js +74 -0
- package/src/network/api.js +53 -0
- package/src/network/apiUrl.js +65 -0
- package/src/utils/dom.js +54 -0
- package/src/utils/filters.js +82 -0
- package/src/utils/merge.js +16 -0
- package/src/utils/phone.js +153 -0
- package/src/utils/popup/index.js +115 -0
- package/src/utils/popup/popup-manager.js +178 -0
- package/src/utils/storage.js +22 -0
- package/src/utils/utils.js +49 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// base
|
|
2
|
+
@import './icon.scss';
|
|
3
|
+
@import './image.scss';
|
|
4
|
+
@import './button.scss';
|
|
5
|
+
@import './dialog.scss';
|
|
6
|
+
@import './common.scss';
|
|
7
|
+
@import './bottom-popup.scss';
|
|
8
|
+
@import './class-choose.scss';
|
|
9
|
+
// business
|
|
10
|
+
@import './bottom-fixed-button.scss';
|
|
11
|
+
@import './page-render.scss';
|
|
12
|
+
@import './grade-panel.scss';
|
|
13
|
+
@import './tips-popup.scss';
|
|
14
|
+
@import './switch-student.scss';
|
|
15
|
+
@import './student-info.scss';
|
|
16
|
+
@import './user-login.scss';
|
|
17
|
+
@import './material-panel.scss';
|
|
18
|
+
@import './selector-panel.scss';
|
|
19
|
+
@import './notified-panel.scss';
|
|
20
|
+
@import './registration-panel.scss'
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
.material-list {
|
|
2
|
+
width: 343px;
|
|
3
|
+
border-radius: 16px;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
justify-content: flex-start;
|
|
7
|
+
align-items: center;
|
|
8
|
+
margin: 0 auto;
|
|
9
|
+
background-image: url("./img/body_bg.png");
|
|
10
|
+
background-size: cover;
|
|
11
|
+
background-repeat: "no-repeat";
|
|
12
|
+
margin-top: 24px;
|
|
13
|
+
margin-bottom: 16px;
|
|
14
|
+
.material-panel_title {
|
|
15
|
+
text-align: center;
|
|
16
|
+
padding: 3px 16px;
|
|
17
|
+
height: 33px;
|
|
18
|
+
min-width: 184px;
|
|
19
|
+
font-size: 20px;
|
|
20
|
+
font-family: "SFProRounded-Semibold", "SF Pro Rounded", "SFPro-Semibold",
|
|
21
|
+
"Helvetica", "Roboto", "Arial", sans-serif;
|
|
22
|
+
font-weight: 600;
|
|
23
|
+
color: #ffffff;
|
|
24
|
+
line-height: 24px;
|
|
25
|
+
background-image: url("./img/title_bg.png");
|
|
26
|
+
background-size: cover;
|
|
27
|
+
position: relative;
|
|
28
|
+
top: -8px;
|
|
29
|
+
}
|
|
30
|
+
.material-panel_body {
|
|
31
|
+
width: 100%;
|
|
32
|
+
margin: 8px 0px;
|
|
33
|
+
border-radius: 16px;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
justify-content: flex-start;
|
|
38
|
+
align-items: center;
|
|
39
|
+
position: relative;
|
|
40
|
+
.material-list-box {
|
|
41
|
+
max-height: 278px;
|
|
42
|
+
overflow: auto;
|
|
43
|
+
scrollbar-width: none;
|
|
44
|
+
&::-webkit-scrollbar {
|
|
45
|
+
display: none; /* Chrome Safari */
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
&.more {
|
|
49
|
+
margin: 8px 0px 0px;
|
|
50
|
+
.material-panel-masking {
|
|
51
|
+
position: absolute;
|
|
52
|
+
bottom: 0;
|
|
53
|
+
width: 343px;
|
|
54
|
+
height: 25px;
|
|
55
|
+
background: linear-gradient(
|
|
56
|
+
180deg,
|
|
57
|
+
rgba(255, 243, 220, 0) 0%,
|
|
58
|
+
#fff3dc 100%
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
.material {
|
|
62
|
+
&:last-child {
|
|
63
|
+
margin-bottom: 25px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.material {
|
|
69
|
+
display: flex;
|
|
70
|
+
justify-content: flex-start;
|
|
71
|
+
align-items: center;
|
|
72
|
+
margin-bottom: 10px;
|
|
73
|
+
width: 311px;
|
|
74
|
+
height: 68px;
|
|
75
|
+
background: #ffffff;
|
|
76
|
+
border-radius: 10px;
|
|
77
|
+
padding: 10px;
|
|
78
|
+
// &:last-child {
|
|
79
|
+
// margin-bottom: 0px;
|
|
80
|
+
// }
|
|
81
|
+
|
|
82
|
+
.material-icon {
|
|
83
|
+
width: 42px;
|
|
84
|
+
height: 48px;
|
|
85
|
+
background-image: url("./img/pdf.png");
|
|
86
|
+
background-size: cover;
|
|
87
|
+
flex-shrink: 0;
|
|
88
|
+
}
|
|
89
|
+
.material-info {
|
|
90
|
+
margin-left: 10px;
|
|
91
|
+
display: flex;
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
justify-content: center;
|
|
94
|
+
align-items: flex-start;
|
|
95
|
+
.material-info_title {
|
|
96
|
+
font-size: 16px;
|
|
97
|
+
font-family: SFProRounded-Medium, SFProRounded;
|
|
98
|
+
font-weight: 500;
|
|
99
|
+
color: #172b4d;
|
|
100
|
+
line-height: 19px;
|
|
101
|
+
margin-bottom: 7px;
|
|
102
|
+
width: 239px;
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
overflow: hidden;
|
|
105
|
+
text-overflow: ellipsis;
|
|
106
|
+
text-align: start;
|
|
107
|
+
}
|
|
108
|
+
.material-info_size {
|
|
109
|
+
font-size: 12px;
|
|
110
|
+
font-family: SFProRounded-Medium, SFProRounded;
|
|
111
|
+
font-weight: 500;
|
|
112
|
+
color: #a2aab8;
|
|
113
|
+
line-height: 14px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
.notified-panel {
|
|
2
|
+
width: 100%;
|
|
3
|
+
padding: 10px;
|
|
4
|
+
background-size: 100%;
|
|
5
|
+
background-repeat: no-repeat;
|
|
6
|
+
.notified-header {
|
|
7
|
+
padding: 24px 16px;
|
|
8
|
+
border-bottom: 1px dashed #dddddd;
|
|
9
|
+
background-color: #fff;
|
|
10
|
+
|
|
11
|
+
.notified-title {
|
|
12
|
+
font-size: 20px;
|
|
13
|
+
font-family: PingFangSC-Semibold, PingFang SC;
|
|
14
|
+
font-weight: 600;
|
|
15
|
+
color: #222222;
|
|
16
|
+
line-height: 33px;
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
text-overflow: ellipsis;
|
|
19
|
+
white-space: nowrap;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.notified-desc {
|
|
23
|
+
font-size: 14px;
|
|
24
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
25
|
+
font-weight: 400;
|
|
26
|
+
color: #222222;
|
|
27
|
+
line-height: 20px;
|
|
28
|
+
margin-top: 10px;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
text-overflow: ellipsis;
|
|
31
|
+
display: -webkit-box;
|
|
32
|
+
-webkit-box-orient: vertical;
|
|
33
|
+
-webkit-line-clamp: 2;
|
|
34
|
+
word-break: break-all;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.notified-form {
|
|
39
|
+
padding: 24px 16px;
|
|
40
|
+
background-color: #fff;
|
|
41
|
+
|
|
42
|
+
.form-item {
|
|
43
|
+
margin-bottom: 24px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.name-item {
|
|
47
|
+
display: flex;
|
|
48
|
+
|
|
49
|
+
.form-name + .form-name {
|
|
50
|
+
margin-left: 17px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.item-label {
|
|
55
|
+
font-size: 14px;
|
|
56
|
+
font-family: PingFangSC-Semibold, PingFang SC;
|
|
57
|
+
font-weight: 600;
|
|
58
|
+
color: #222222;
|
|
59
|
+
margin-bottom: 8px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.item-body {
|
|
63
|
+
.van-cell {
|
|
64
|
+
padding: 0 16px;
|
|
65
|
+
}
|
|
66
|
+
.van-cell::after {
|
|
67
|
+
border-bottom:none
|
|
68
|
+
}
|
|
69
|
+
.van-cell__value {
|
|
70
|
+
margin-left: -16px;
|
|
71
|
+
}
|
|
72
|
+
.van-field__body {
|
|
73
|
+
border: 1px solid #dfdfdf;
|
|
74
|
+
padding: 10px;
|
|
75
|
+
}
|
|
76
|
+
.van-field--error {
|
|
77
|
+
.van-field__body {
|
|
78
|
+
border: 1px solid #ee0a24;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.grade-body {
|
|
84
|
+
.van-dropdown-menu__title {
|
|
85
|
+
width: 90%;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.phone-body {
|
|
90
|
+
display: flex;
|
|
91
|
+
width: 306px;
|
|
92
|
+
|
|
93
|
+
.van-dropdown-menu {
|
|
94
|
+
width: 80px;
|
|
95
|
+
border: 1px solid #dfdfdf;
|
|
96
|
+
border-right: 0px;
|
|
97
|
+
}
|
|
98
|
+
.van-cell {
|
|
99
|
+
padding: 0;
|
|
100
|
+
}
|
|
101
|
+
.van-cell__value {
|
|
102
|
+
margin-left: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// .van-cell__value {
|
|
106
|
+
// margin-left: -10px;
|
|
107
|
+
// }
|
|
108
|
+
// .van-field__body {
|
|
109
|
+
// border: 1px solid #dfdfdf;
|
|
110
|
+
// padding: 10px;
|
|
111
|
+
// }
|
|
112
|
+
// .van-field--error {
|
|
113
|
+
// .van-field__body {
|
|
114
|
+
// border: 1px solid #ee0a24;
|
|
115
|
+
// }
|
|
116
|
+
// }
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// .name-body {
|
|
120
|
+
// display: flex;
|
|
121
|
+
// .van-field+.van-field {
|
|
122
|
+
// margin-left: 17px;
|
|
123
|
+
// }
|
|
124
|
+
// }
|
|
125
|
+
.customize-body {
|
|
126
|
+
.van-dropdown-menu__title {
|
|
127
|
+
width: 90%;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.van-checkbox,
|
|
131
|
+
.van-radio {
|
|
132
|
+
width: 306px;
|
|
133
|
+
background: #ffffff;
|
|
134
|
+
border-top: 1px solid #dfdfdf;
|
|
135
|
+
border-left: 1px solid #dfdfdf;
|
|
136
|
+
border-right: 1px solid #dfdfdf;
|
|
137
|
+
padding: 10px;
|
|
138
|
+
display: flex;
|
|
139
|
+
align-items: flex-start;
|
|
140
|
+
|
|
141
|
+
&:last-child {
|
|
142
|
+
border-bottom: 1px solid #dfdfdf;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.van-checkbox__label,
|
|
146
|
+
.van-radio__label {
|
|
147
|
+
font-size: 14px;
|
|
148
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
149
|
+
font-weight: 400;
|
|
150
|
+
color: #222222;
|
|
151
|
+
.van-cell {
|
|
152
|
+
border: 1px solid #dfdfdf;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
.van-checkbox__icon {
|
|
156
|
+
font-size: 14px;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.customize34 {
|
|
161
|
+
&.van-cell {
|
|
162
|
+
padding: 0px;
|
|
163
|
+
}
|
|
164
|
+
.van-cell__value {
|
|
165
|
+
margin-left: 0px;
|
|
166
|
+
}
|
|
167
|
+
.van-field__body {
|
|
168
|
+
border: none;
|
|
169
|
+
padding: 0;
|
|
170
|
+
}
|
|
171
|
+
.van-field--error {
|
|
172
|
+
.van-field__body {
|
|
173
|
+
border: 1px solid #ee0a24;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
.label-required {
|
|
180
|
+
&::after {
|
|
181
|
+
content: "*";
|
|
182
|
+
color: #f56c6c;
|
|
183
|
+
margin-left: 4px;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
.van-button {
|
|
187
|
+
overflow: hidden;
|
|
188
|
+
text-overflow: ellipsis;
|
|
189
|
+
white-space: nowrap;
|
|
190
|
+
}
|
|
191
|
+
.activeRadioIcon {
|
|
192
|
+
width: 12px;
|
|
193
|
+
height: 12px;
|
|
194
|
+
border: 4px solid #ff9f0a;
|
|
195
|
+
border-radius: 50%;
|
|
196
|
+
}
|
|
197
|
+
.inactiveRadioIcon {
|
|
198
|
+
width: 12px;
|
|
199
|
+
height: 12px;
|
|
200
|
+
border: 1px solid rgba(34, 34, 34, 0.4);
|
|
201
|
+
border-radius: 50%;
|
|
202
|
+
}
|
|
203
|
+
.van-radio__icon {
|
|
204
|
+
display: flex;
|
|
205
|
+
align-items: center;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
.registration-panel {
|
|
2
|
+
width: 100%;
|
|
3
|
+
padding: 10px;
|
|
4
|
+
background-size: 100%;
|
|
5
|
+
background-repeat: no-repeat;
|
|
6
|
+
|
|
7
|
+
.registration-form {
|
|
8
|
+
padding: 24px 16px;
|
|
9
|
+
background-color: #fff;
|
|
10
|
+
|
|
11
|
+
.form-item {
|
|
12
|
+
margin-bottom: 24px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.item-body {
|
|
16
|
+
.van-cell {
|
|
17
|
+
padding: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.van-cell::after {
|
|
21
|
+
border-bottom: none
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.van-field__body {
|
|
25
|
+
border: 1px solid #dfdfdf;
|
|
26
|
+
padding: 10px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.van-field--error {
|
|
30
|
+
.van-field__body {
|
|
31
|
+
border: 1px solid #ee0a24;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.phone-body {
|
|
37
|
+
display: flex;
|
|
38
|
+
|
|
39
|
+
.van-dropdown-menu {
|
|
40
|
+
width: 80px;
|
|
41
|
+
border: 1px solid #dfdfdf;
|
|
42
|
+
border-right: 0px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.van-cell {
|
|
46
|
+
padding: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.van-cell__value {
|
|
50
|
+
margin-left: 0;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.code-body {
|
|
55
|
+
display: flex;
|
|
56
|
+
|
|
57
|
+
.van-cell {
|
|
58
|
+
padding: 0;
|
|
59
|
+
flex: 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.code-box {
|
|
63
|
+
min-width: 120px;
|
|
64
|
+
white-space: nowrap;
|
|
65
|
+
line-height: 44px;
|
|
66
|
+
border-left: 0px;
|
|
67
|
+
font-size: 14px;
|
|
68
|
+
text-align: center;
|
|
69
|
+
height: 46px;
|
|
70
|
+
position: relative;
|
|
71
|
+
color: #FF9F0A;
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
|
|
74
|
+
&.hide {
|
|
75
|
+
color: #999;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.pa-box {
|
|
79
|
+
border: 1px solid #dfdfdf;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&::before {
|
|
83
|
+
content: '';
|
|
84
|
+
width: 1px;
|
|
85
|
+
height: 12px;
|
|
86
|
+
position: absolute;
|
|
87
|
+
left: 0;
|
|
88
|
+
top: 17px;
|
|
89
|
+
background: #dfdfdf;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
&.countdown span {
|
|
93
|
+
color: #222;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.van-field__body {
|
|
98
|
+
border: 1px solid #dfdfdf;
|
|
99
|
+
border-right: 0;
|
|
100
|
+
padding: 10px;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.label-required {
|
|
106
|
+
&::after {
|
|
107
|
+
content: "*";
|
|
108
|
+
color: #f56c6c;
|
|
109
|
+
margin-left: 4px;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.van-button {
|
|
114
|
+
overflow: hidden;
|
|
115
|
+
text-overflow: ellipsis;
|
|
116
|
+
white-space: nowrap;
|
|
117
|
+
&.hide {
|
|
118
|
+
opacity: .5;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.van-radio__icon {
|
|
123
|
+
display: flex;
|
|
124
|
+
align-items: center;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.agreement-box {
|
|
128
|
+
margin-top: 10px;
|
|
129
|
+
display: flex;
|
|
130
|
+
|
|
131
|
+
.text {
|
|
132
|
+
a.link-text {
|
|
133
|
+
text-decoration: none;
|
|
134
|
+
color: #3370ff;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.icon {
|
|
139
|
+
width: 16px;
|
|
140
|
+
height: 16px;
|
|
141
|
+
margin: 2px 5px 0 0;
|
|
142
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAsFJREFUWEfNV81rE1EQn5mXJiloCwq1lqXm7e5BL1oQ9aQHFRHx89KTPemf5U1PvfiJiFQPnvxAqL3oYbMvlKW1BYWq0CTNzsjURNIPTWgTtu+2vHkzv/ebmd++Qeh+DYRhOJ6m6RgRHWTm/QCQbx6vE9FPZv5mjFmIomgeANa6cY2djMIwHErTdAIRA0Qc6GSv+yKyJiJlY8xsFEU//nfmfwCMtfYkABwnIlK/zPwVAOZFZKnRaKwkSVJT557nFXK53DAiHgKAcSIaBQBkZgaAOefcRwBItwOyLQDP8waLxeIlEVGHIiIOAD7EcbzSDQO+7w8DwClEtAoEEZeq1erLJElWN5/fAsDzvAP5fP4yIu4DAKXvdblcXu4m8GabIAhGAOA8AAyJyK96vf4iSZLv7XYbAOjN8/n8LQ0uIgvMPFOpVKo7Cd46UyqVikR0ERHHmiAetjPRDsCEYXhVadfgcRw/BwDNYS8W+b5/RUFoOqIoetaqib8ArLWniWhCaU/T9NFub74ZtTJhjLmp6WDmWefce7VZB9BstUki0u/HO815J6qaNXGDmcUYM60tug7AWnuOiI6KSBzH8UwnR7vZ931f68Fn5i/OuTcKYMD3/duImBOR6W5bbacgtEURcVJEGnEcP8AwDAMRudAsPC2Ovi9r7TUiOoyIr9Bae5aIjjHzW+fcXN+j/0n5CSI6w8yfMQgCrcyRNE2fVCoVldq+r1KpNGqMuQ4Ay8rAFBEN1mq1+9tJZT/QqOAVCoUpZl5VAHeIyJTL5Xs9FJ5OuCkIgrvMnO4JANmmYC8UYasN3znnPnVKXi/2N7RhS4iYedE597QXATr52CBEmUvxXvgZZf87brKQ3YOkWTTZPskURNaP0nUiMn2Wt/o308GkTUS2jGYisigiOpot/2M000HkyK5Hs3Yly3I43ayofRnPfwOhCholyfS56QAAAABJRU5ErkJggg==) 0 0/16px auto no-repeat;
|
|
143
|
+
|
|
144
|
+
&.on {
|
|
145
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAmRJREFUWEfFlz9oE3EUxz8vLQ2XRDeh4B9QBAcRNyuCUBxcioPgX3BprW6Kg9jNwa3iIHZSa7IIigoO0sVBCoKkbiIOgihYhaKb5owJbZ787rjkvNz1LrmUy5KQ37v3/bz3e+/d7yck/OgTStSsCZAjiO4H2QW62X1cfoF+RuUd6CtK9QU5RS2Ja4kz0vn8bnJDM4ieBSnG2bvraqPyiNbarEw3Pq33TCSA3iFPybqBcAVkJJlw0EqbKLep1a/LZRphPkIBtFIchdZzkIP9CXeBVCF3XCbtleBKF4BWRvbB8AKwfTDibS/LsDohk833fr//AbiR69sNEPc0l0EO+DPRBnD2fJO1OLi0R+VPq/yuj3s10QEoW7OIXBtw2sPdqd6UqfqM08BO05hWG8p96L/ae8XWJmutvaZFXYBy4T7CdK9uUtkr8zL154I4E862VpIPmRjZHcdg7JZr9OYSfH8Z8YDaFOujomXrNCKPU0XjPbzzBBx+ALlh9x/7GzzdE+1a9YxouXAX4WJqgKB4IgDuiVasKshYKoAw8dYqLJ6Dry/Wca1LopXCD2BLpNXWo3Bozl1eutrtMEr89Xn48iwurp8mA39B8pGWJz9CcZu7bKLyO04nbvqv0RuAH8L89hdcGGBc/C5AzBaYthp/2KlsT8h8e9Xel7hD52xBfBGGpdofXXBrYiP3DEwRJm3DKIi+xU0JmDbsZRAFIdKImyQ4g6jXUewftWFtmTz97ih2QLJ8GTkAWb+O3SxkeCBxALI+kjkQWR5K26Mhy2N5ByLDi0kbIsurmX+WZHY5DQ60jbqe/wOZCDtUSNIy8AAAAABJRU5ErkJggg==) 0 0/16px auto no-repeat;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.text {
|
|
150
|
+
flex: 1;
|
|
151
|
+
font-size: 14px;
|
|
152
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
153
|
+
font-weight: 400;
|
|
154
|
+
color: #7A7A7A;
|
|
155
|
+
line-height: 20px;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
.selection-list-wrapper {
|
|
2
|
+
margin: 10px auto 0;
|
|
3
|
+
width: 343px;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
background: #ffffff;
|
|
6
|
+
border-radius: 10px;
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
align-items: center;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
|
|
12
|
+
.selection-list-title{
|
|
13
|
+
width: 295px;
|
|
14
|
+
font-size: 16px;
|
|
15
|
+
font-family: 'SFProRounded-Medium', 'SFProRounded','SFPro-Medium','Helvetica','Roboto','Arial','sans-serif';
|
|
16
|
+
font-weight: 500;
|
|
17
|
+
color: #172B4D;
|
|
18
|
+
line-height: 22px;
|
|
19
|
+
margin-top: 16px;
|
|
20
|
+
// 多行标题 ,待解决
|
|
21
|
+
word-wrap: break-word;
|
|
22
|
+
// white-space:pre-wrap;
|
|
23
|
+
text-align: center;
|
|
24
|
+
display: flex;
|
|
25
|
+
justify-content: center;
|
|
26
|
+
align-items: center;
|
|
27
|
+
}
|
|
28
|
+
.selection-list-container {
|
|
29
|
+
width: 100%;
|
|
30
|
+
padding-top: 10px;
|
|
31
|
+
padding-left: 16px;
|
|
32
|
+
padding-right: 16px;
|
|
33
|
+
|
|
34
|
+
ul,li{
|
|
35
|
+
list-style: none;
|
|
36
|
+
padding: 0;
|
|
37
|
+
margin: 0;
|
|
38
|
+
display: inline;
|
|
39
|
+
}
|
|
40
|
+
.selection-item-wrapper{
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-wrap: wrap;
|
|
43
|
+
margin-right: -10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.selection-item{
|
|
47
|
+
margin-right: 10px;
|
|
48
|
+
margin-bottom: 10px;
|
|
49
|
+
padding: 10px;
|
|
50
|
+
width: 97px;
|
|
51
|
+
height: 36px;
|
|
52
|
+
background: #F8F9FA;
|
|
53
|
+
border-radius: 6px;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
justify-content: center;
|
|
57
|
+
|
|
58
|
+
.item-text{
|
|
59
|
+
color: #A2AAB8;
|
|
60
|
+
// height: 16px;
|
|
61
|
+
// line-height: 16px;
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.active{
|
|
67
|
+
background: #FFAA0A linear-gradient(45deg, #FFD518 0%, #FFAA0A 100%);
|
|
68
|
+
|
|
69
|
+
.item-text{
|
|
70
|
+
color: #ffffff;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
.double{
|
|
74
|
+
width: 150px;
|
|
75
|
+
}
|
|
76
|
+
.only-one{
|
|
77
|
+
width: 312px;
|
|
78
|
+
margin-right: 0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.btn{
|
|
82
|
+
margin-top: 6px;
|
|
83
|
+
margin-bottom: 16px;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
.icon-close-new-e658{
|
|
2
|
+
font-size: 32px;
|
|
3
|
+
}
|
|
4
|
+
.invalid {
|
|
5
|
+
font-size: 12px;
|
|
6
|
+
color: #ff503f;
|
|
7
|
+
text-align: right;
|
|
8
|
+
padding-right: 15px;
|
|
9
|
+
}
|
|
10
|
+
.icon-left{
|
|
11
|
+
font-size: 32px;
|
|
12
|
+
}
|
|
13
|
+
.popup-body-wrapper {
|
|
14
|
+
height: 100%;
|
|
15
|
+
position: relative;
|
|
16
|
+
|
|
17
|
+
.popup-tips {
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 81px;
|
|
20
|
+
font-size: 14px;
|
|
21
|
+
color: #a2aab8;
|
|
22
|
+
line-height: 16px;
|
|
23
|
+
margin-top: 10px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.btn {
|
|
27
|
+
position: absolute;
|
|
28
|
+
// bottom: 54px;
|
|
29
|
+
// margin-bottom: 54px;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.popup-txt {
|
|
34
|
+
background: #fff;
|
|
35
|
+
margin: 10px 0;
|
|
36
|
+
width: 100%;
|
|
37
|
+
display: inline-block;
|
|
38
|
+
border-radius: 10px;
|
|
39
|
+
padding: 0 16px;
|
|
40
|
+
font-size: 16px;
|
|
41
|
+
line-height: 22px;
|
|
42
|
+
|
|
43
|
+
h1,
|
|
44
|
+
h2,
|
|
45
|
+
h3,
|
|
46
|
+
h4,
|
|
47
|
+
h5,
|
|
48
|
+
h6,
|
|
49
|
+
pre {
|
|
50
|
+
font-size: 16px;
|
|
51
|
+
line-height: 19px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.student-info {
|
|
55
|
+
height: 60px;
|
|
56
|
+
display: flex;
|
|
57
|
+
align-items: center;
|
|
58
|
+
position: relative;
|
|
59
|
+
|
|
60
|
+
span {
|
|
61
|
+
height: 22px;
|
|
62
|
+
line-height: 22px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
input {
|
|
66
|
+
display: block;
|
|
67
|
+
outline-style: none;
|
|
68
|
+
outline-width: 0px;
|
|
69
|
+
border: none;
|
|
70
|
+
border-style: none;
|
|
71
|
+
text-shadow: none;
|
|
72
|
+
outline-color: transparent;
|
|
73
|
+
box-shadow: none;
|
|
74
|
+
width: 200px;
|
|
75
|
+
height: 22px;
|
|
76
|
+
position: absolute;
|
|
77
|
+
right: 0;
|
|
78
|
+
font-size: 16px;
|
|
79
|
+
font-family: SFProRounded-Medium, SFProRounded;
|
|
80
|
+
font-weight: 500;
|
|
81
|
+
color: #A2AAB8;
|
|
82
|
+
line-height: 22px;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.desc ::v-deep .el-dialog.common-dialog .el-dialog__body .dialog-body {
|
|
88
|
+
background: #fff;
|
|
89
|
+
|
|
90
|
+
.result-understanding-dialog {
|
|
91
|
+
max-height: 380px;
|
|
92
|
+
overflow-y: scroll;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.txt {
|
|
96
|
+
padding: 0 24px;
|
|
97
|
+
font-weight: 500;
|
|
98
|
+
color: #172b4d;
|
|
99
|
+
font-size: 16px;
|
|
100
|
+
line-height: 19px;
|
|
101
|
+
word-break: break-word !important;
|
|
102
|
+
|
|
103
|
+
h1,
|
|
104
|
+
h2,
|
|
105
|
+
h3,
|
|
106
|
+
h4,
|
|
107
|
+
h5,
|
|
108
|
+
h6,
|
|
109
|
+
pre {
|
|
110
|
+
font-size: 16px;
|
|
111
|
+
line-height: 19px;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|