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,39 @@
|
|
|
1
|
+
@import './var.scss';
|
|
2
|
+
|
|
3
|
+
.v-modal-enter {
|
|
4
|
+
animation: v-modal-in 0.2s ease;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.v-modal-leave {
|
|
8
|
+
animation: v-modal-out 0.2s ease forwards;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@keyframes v-modal-in {
|
|
12
|
+
0% {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
100% {
|
|
17
|
+
opacity: 1;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@keyframes v-modal-out {
|
|
22
|
+
0% {
|
|
23
|
+
opacity: 1;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
100% {
|
|
27
|
+
opacity: 0;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.v-modal {
|
|
32
|
+
position: fixed;
|
|
33
|
+
left: 0;
|
|
34
|
+
top: 0;
|
|
35
|
+
width: 100%;
|
|
36
|
+
height: 100%;
|
|
37
|
+
opacity: $--popup-modal-opacity;
|
|
38
|
+
background: $--popup-modal-background-color;
|
|
39
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
html {
|
|
2
|
+
font-family: 'SF Pro Rounded', 'SF Pro', 'Helvetica', 'Roboto', ' Arial', sans-serif;
|
|
3
|
+
font-size: 16px;
|
|
4
|
+
word-spacing: 1px;
|
|
5
|
+
-ms-text-size-adjust: 100%;
|
|
6
|
+
-webkit-text-size-adjust: 100%;
|
|
7
|
+
-moz-osx-font-smoothing: grayscale;
|
|
8
|
+
-webkit-font-smoothing: antialiased;
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
html,
|
|
13
|
+
body {
|
|
14
|
+
scroll-behavior: smooth;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
*,
|
|
18
|
+
*::before,
|
|
19
|
+
*::after {
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
margin: 0;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
*:focus-visible {
|
|
25
|
+
outline: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
a {
|
|
29
|
+
color: #000;
|
|
30
|
+
text-decoration: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
img {
|
|
34
|
+
border: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
img[src=""],
|
|
38
|
+
img:not([src]) {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
h1,
|
|
43
|
+
h2,
|
|
44
|
+
h3,
|
|
45
|
+
h4,
|
|
46
|
+
h5,
|
|
47
|
+
h6 {
|
|
48
|
+
margin: 0;
|
|
49
|
+
padding: 0;
|
|
50
|
+
word-spacing: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
p {
|
|
54
|
+
word-spacing: 0;
|
|
55
|
+
letter-spacing: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// 字体同样类名
|
|
59
|
+
// 使用方法,在需要设置字重的文本上,直接应用对应类名即可
|
|
60
|
+
.font-bold {
|
|
61
|
+
font-weight: bold;
|
|
62
|
+
font-family: 'SFProRounded-Bold', 'SF Pro Rounded', 'SFPro-Bold', 'Helvetica', 'Roboto', 'Arial', sans-serif;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.font-semibold {
|
|
66
|
+
font-weight: 600;
|
|
67
|
+
font-family: 'SFProRounded-Semibold,', 'SF Pro Rounded', 'SFPro-Semibold', 'Helvetica', 'Roboto', 'Arial', sans-serif;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.font-medium {
|
|
71
|
+
font-weight: 500;
|
|
72
|
+
font-family: 'SFProRounded-Medium', 'SF Pro Rounded', 'SFPro-Medium', 'Helvetica', 'Roboto', 'Arial', sans-serif;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.font-regular {
|
|
76
|
+
font-weight: 400;
|
|
77
|
+
font-family: 'SFProRounded-Regular', 'SF Pro Rounded', 'SFPro-Regular', 'Helvetica', 'Roboto', 'Arial', sans-serif;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// hover 过渡
|
|
81
|
+
.hover-transition {
|
|
82
|
+
transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
a.link-text {
|
|
86
|
+
text-decoration: underline;
|
|
87
|
+
color: #3370ff;
|
|
88
|
+
|
|
89
|
+
&:hover {
|
|
90
|
+
color: #3370ff;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.blur-overlay {
|
|
95
|
+
backdrop-filter: blur(5px);
|
|
96
|
+
background: rgba(0, 0, 0, 0.2);
|
|
97
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
@import './common/popup.scss';
|
|
2
|
+
|
|
3
|
+
.ts-dialog-wrapper {
|
|
4
|
+
position: fixed;
|
|
5
|
+
top: 0;
|
|
6
|
+
bottom: 0;
|
|
7
|
+
left: 0;
|
|
8
|
+
right: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ts-dialog {
|
|
12
|
+
margin: 0 auto;
|
|
13
|
+
max-width: 100%;
|
|
14
|
+
max-height: 100vh;
|
|
15
|
+
background: #fff;
|
|
16
|
+
|
|
17
|
+
&.is-center {
|
|
18
|
+
position: absolute;
|
|
19
|
+
top: 50%;
|
|
20
|
+
left: 50%;
|
|
21
|
+
transform: translate(-50%, -50%);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.is-round {
|
|
25
|
+
border-radius: 16px;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ts-dialog__header {
|
|
30
|
+
padding: 0 16px;
|
|
31
|
+
height: 60px;
|
|
32
|
+
background: #fff;
|
|
33
|
+
|
|
34
|
+
.ts-normal-header-container {
|
|
35
|
+
position: absolute;
|
|
36
|
+
left: 14px;
|
|
37
|
+
right: 14px;
|
|
38
|
+
height: inherit;
|
|
39
|
+
display: flex;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
align-items: center;
|
|
42
|
+
box-sizing: border-box;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ts-normal-header-container .ts-header-left-container,
|
|
46
|
+
.ts-normal-header-container .ts-header-right-container {
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 14px;
|
|
49
|
+
|
|
50
|
+
.ts-header-icon-btn-container {
|
|
51
|
+
display: flex;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
align-items: center;
|
|
54
|
+
width: 32px;
|
|
55
|
+
height: 32px;
|
|
56
|
+
text-align: center;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
color: #a2aab8;
|
|
59
|
+
background: #f4f6fa;
|
|
60
|
+
|
|
61
|
+
&.success-icon-container {
|
|
62
|
+
color: #ffaa0a;
|
|
63
|
+
background: rgba(255, 170, 10, 0.08);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.iconfont {
|
|
67
|
+
font-size: 20px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ts-normal-header-container .ts-header-left-container {
|
|
73
|
+
left: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.ts-normal-header-container .ts-header-right-container {
|
|
77
|
+
right: 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.ts-title-container {
|
|
81
|
+
h1,
|
|
82
|
+
.title {
|
|
83
|
+
text-align: center;
|
|
84
|
+
font-size: 18px;
|
|
85
|
+
line-height: 21px;
|
|
86
|
+
color: #172b4d;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&.is-round .ts-dialog__header {
|
|
92
|
+
border-radius: 16px 16px 0 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&.is-round .ts-dialog__footer {
|
|
96
|
+
border-radius: 0 0 16px 16px;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.dialog-fade-enter-active {
|
|
101
|
+
animation: dialog-fade-in 0.3s;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.dialog-fade-leave-active {
|
|
105
|
+
animation: dialog-fade-out 0.3s;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
@keyframes dialog-fade-in {
|
|
109
|
+
0% {
|
|
110
|
+
transform: translate3d(0, -20px, 0);
|
|
111
|
+
opacity: 0;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
100% {
|
|
115
|
+
transform: translate3d(0, 0, 0);
|
|
116
|
+
opacity: 1;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@keyframes dialog-fade-out {
|
|
121
|
+
0% {
|
|
122
|
+
transform: translate3d(0, 0, 0);
|
|
123
|
+
opacity: 1;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
100% {
|
|
127
|
+
transform: translate3d(0, -20px, 0);
|
|
128
|
+
opacity: 0;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
.grade-selection-list-wrapper {
|
|
2
|
+
margin: 10px auto 0;
|
|
3
|
+
width: 343px;
|
|
4
|
+
// height: 200px;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
background: #ffffff;
|
|
7
|
+
border-radius: 10px;
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
align-items: center;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
|
|
13
|
+
.grade-selection-list-title{
|
|
14
|
+
font-size: 18px;
|
|
15
|
+
font-family: 'SFProRounded-Medium', 'SFProRounded','SFPro-Medium','Helvetica','Roboto','Arial','sans-serif';
|
|
16
|
+
color: #172B4D;
|
|
17
|
+
line-height: 27px;
|
|
18
|
+
margin-top: 16px;
|
|
19
|
+
}
|
|
20
|
+
.grade-selection-list-container {
|
|
21
|
+
width: 100%;
|
|
22
|
+
padding-top: 16px;
|
|
23
|
+
padding-left: 16px;
|
|
24
|
+
padding-right: 6px;
|
|
25
|
+
padding-bottom: 6px;
|
|
26
|
+
// display: flex;
|
|
27
|
+
// justify-content: center;
|
|
28
|
+
// align-items: center;
|
|
29
|
+
|
|
30
|
+
ul,li{
|
|
31
|
+
list-style: none;
|
|
32
|
+
padding: 0;
|
|
33
|
+
margin: 0;
|
|
34
|
+
display: inline;
|
|
35
|
+
}
|
|
36
|
+
.grade-selection-item-wrapper{
|
|
37
|
+
display: flex;
|
|
38
|
+
// align-items: center;
|
|
39
|
+
// justify-content: flex-start;
|
|
40
|
+
flex-wrap: wrap;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.grade-selection-item{
|
|
44
|
+
margin-right: 10px;
|
|
45
|
+
margin-bottom: 10px;
|
|
46
|
+
padding: 10px;
|
|
47
|
+
min-width: 97px;
|
|
48
|
+
height: 36px;
|
|
49
|
+
background: #F8F9FA;
|
|
50
|
+
border-radius: 6px;
|
|
51
|
+
display: flex;
|
|
52
|
+
align-items: center;
|
|
53
|
+
justify-content: center;
|
|
54
|
+
|
|
55
|
+
.item-text{
|
|
56
|
+
color: #A2AAB8;
|
|
57
|
+
// height: 16px;
|
|
58
|
+
// line-height: 16px;
|
|
59
|
+
font-size: 14px;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.active{
|
|
64
|
+
background: #FFAA0A linear-gradient(45deg, #FFD518 0%, #FFAA0A 100%);
|
|
65
|
+
|
|
66
|
+
.item-text{
|
|
67
|
+
color: #ffffff;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.btn{
|
|
72
|
+
margin-top: 6px;
|
|
73
|
+
margin-bottom: 16px;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
@@ -0,0 +1,369 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 1924942 */
|
|
3
|
+
src: url('//at.alicdn.com/t/font_1924942_l9jdvry059.eot?t=1637736214198'); /* IE9 */
|
|
4
|
+
src: url('//at.alicdn.com/t/font_1924942_l9jdvry059.eot?t=1637736214198#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
|
5
|
+
url('//at.alicdn.com/t/font_1924942_l9jdvry059.woff2?t=1637736214198') format('woff2'),
|
|
6
|
+
url('//at.alicdn.com/t/font_1924942_l9jdvry059.woff?t=1637736214198') format('woff'),
|
|
7
|
+
url('//at.alicdn.com/t/font_1924942_l9jdvry059.ttf?t=1637736214198') format('truetype'),
|
|
8
|
+
url('//at.alicdn.com/t/font_1924942_l9jdvry059.svg?t=1637736214198#iconfont') format('svg');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.iconfont {
|
|
12
|
+
font-family: "iconfont" !important;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
-webkit-font-smoothing: antialiased;
|
|
16
|
+
-moz-osx-font-smoothing: grayscale;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.icon-pdf:before {
|
|
20
|
+
content: "\e654";
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.icon-close1:before {
|
|
24
|
+
content: "\e653";
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.icon-alert-e656:before {
|
|
28
|
+
content: "\e656";
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.icon-left-arrpw:before {
|
|
32
|
+
content: "\e657";
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.icon-close-new-e658:before {
|
|
36
|
+
content: "\e658";
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.icon-unselect:before {
|
|
40
|
+
content: "\e651";
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.icon-selected:before {
|
|
44
|
+
content: "\e652";
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.icon-telephone:before {
|
|
48
|
+
content: "\e650";
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.icon-youtube-new:before {
|
|
52
|
+
content: "\e64c";
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.icon-whatsapp:before {
|
|
56
|
+
content: "\e64d";
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.iconicon-location:before {
|
|
60
|
+
content: "\e64b";
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.iconwechat-qr-code-icon:before {
|
|
64
|
+
content: "\e64a";
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.icon-alert:before {
|
|
68
|
+
content: "\e649";
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.icon-star:before {
|
|
72
|
+
content: "\e648";
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.icon-passed:before {
|
|
76
|
+
content: "\e647";
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.icon-more-right:before {
|
|
80
|
+
content: "\e646";
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.icon-more-left:before {
|
|
84
|
+
content: "\e645";
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.icon-arrow-right:before {
|
|
88
|
+
content: "\e64f";
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.icon-failed:before {
|
|
92
|
+
content: "\e644";
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.icon-difficulty:before {
|
|
96
|
+
content: "\e643";
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.icon-higher-department:before {
|
|
100
|
+
content: "\e642";
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.icon-junior-department:before {
|
|
104
|
+
content: "\e641";
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.icon-primary-department:before {
|
|
108
|
+
content: "\e640";
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.icon-preschool-department:before {
|
|
112
|
+
content: "\e63f";
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.icon-transfer1:before {
|
|
116
|
+
content: "\e63e";
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.icon-reschedule:before {
|
|
120
|
+
content: "\e63d";
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.icon-transfer:before {
|
|
124
|
+
content: "\e63c";
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.icon-next:before {
|
|
128
|
+
content: "\e63b";
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.icon-close-new:before {
|
|
132
|
+
content: "\e639";
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.icon-arrow-left:before {
|
|
136
|
+
content: "\e63a";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.icon-upaid-courses:before {
|
|
140
|
+
content: "\e638";
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.icon-top-dark:before {
|
|
144
|
+
content: "\e636";
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.icon-bottom-dark:before {
|
|
148
|
+
content: "\e637";
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.icon-switch:before {
|
|
152
|
+
content: "\e635";
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.icon-info-circle:before {
|
|
156
|
+
content: "\e634";
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.icon-success-circle:before {
|
|
160
|
+
content: "\e632";
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.icon-user-switch:before {
|
|
164
|
+
content: "\e630";
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.icon-download:before {
|
|
168
|
+
content: "\e631";
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.icon-wish-list:before {
|
|
172
|
+
content: "\e62e";
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.icon-edit:before {
|
|
176
|
+
content: "\e62f";
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.icon-order:before {
|
|
180
|
+
content: "\e62c";
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.icon-test:before {
|
|
184
|
+
content: "\e62d";
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.icon-course:before {
|
|
188
|
+
content: "\e62b";
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.icon-coupon:before {
|
|
192
|
+
content: "\e62a";
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.icon-take-class-time:before {
|
|
196
|
+
content: "\e629";
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.icon-wish:before {
|
|
200
|
+
content: "\e628";
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.icon-success:before {
|
|
204
|
+
content: "\e61c";
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.icon-mail:before {
|
|
208
|
+
content: "\e606";
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.icon-asc-sort:before {
|
|
212
|
+
content: "\e604";
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.icon-desc-sort:before {
|
|
216
|
+
content: "\e603";
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.icon-show-more:before {
|
|
220
|
+
content: "\e602";
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.icon-access-course-details:before {
|
|
224
|
+
content: "\e601";
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.icon-attend-the-class:before {
|
|
228
|
+
content: "\e600";
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.icon-camera-outline:before {
|
|
232
|
+
content: "\e616";
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.icon-setting-outline:before {
|
|
236
|
+
content: "\e615";
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.icon-home-outline:before {
|
|
240
|
+
content: "\e610";
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.icon-file-outline:before {
|
|
244
|
+
content: "\e60f";
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.icon-warning-outline:before {
|
|
248
|
+
content: "\e609";
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.icon-success-outline:before {
|
|
252
|
+
content: "\e60a";
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.icon-quote-left:before {
|
|
256
|
+
content: "\e627";
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.icon-quote-right:before {
|
|
260
|
+
content: "\e626";
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.icon-asc:before {
|
|
264
|
+
content: "\e625";
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.icon-desc:before {
|
|
268
|
+
content: "\e624";
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.icon-calendar-date-outline:before {
|
|
272
|
+
content: "\e623";
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.icon-tel:before {
|
|
276
|
+
content: "\e622";
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.icon-faq:before {
|
|
280
|
+
content: "\e621";
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.icon-arrow-top:before {
|
|
284
|
+
content: "\e620";
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.icon-arrow-bottom:before {
|
|
288
|
+
content: "\e61f";
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.icon-arrow-top-outline:before {
|
|
292
|
+
content: "\e61e";
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.icon-arrow-bottom-outline:before {
|
|
296
|
+
content: "\e61d";
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.icon-arrow-right-outline:before {
|
|
300
|
+
content: "\e61b";
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.icon-arrow-left-outline:before {
|
|
304
|
+
content: "\e61a";
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.icon-logo:before {
|
|
308
|
+
content: "\e619";
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.icon-linkedin:before {
|
|
312
|
+
content: "\e618";
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.icon-quote:before {
|
|
316
|
+
content: "\e617";
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.icon-close:before {
|
|
320
|
+
content: "\e614";
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.icon-play:before {
|
|
324
|
+
content: "\e613";
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.icon-menu-outline:before {
|
|
328
|
+
content: "\e612";
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.icon-clock-outline:before {
|
|
332
|
+
content: "\e611";
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.icon-ins:before {
|
|
336
|
+
content: "\e633";
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.icon-download-outline:before {
|
|
340
|
+
content: "\e60e";
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.icon-projector-outline:before {
|
|
344
|
+
content: "\e60d";
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.icon-calendar-outline:before {
|
|
348
|
+
content: "\e60c";
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.icon-desktop-outline:before {
|
|
352
|
+
content: "\e60b";
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.icon-wechat:before {
|
|
356
|
+
content: "\e64e";
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.icon-facebook:before {
|
|
360
|
+
content: "\e608";
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.icon-backtop:before {
|
|
364
|
+
content: "\e607";
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.icon-youtube:before {
|
|
368
|
+
content: "\e605";
|
|
369
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|