mario-education 2.4.4 → 2.4.5-beta
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/dist/MarioFramework.Education/ClientApp/src/components/Select/InputSelector.d.ts +13 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Shapes/Circle/Circle.d.ts +11 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Shapes/Circle/ItemCircle.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/components/Shapes/Circle/utils.d.ts +5 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/CustomBarChart.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/CustomChartCircle.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/CustomLineChart.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/ReadinessToLearn.d.ts +7 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentByAge.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentByGender.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentByGrade.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/StudentWithSpecialNeeds.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/TopLearningStrategy.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/TopSkill.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/components/TotalCard.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts +12 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/types.d.ts +48 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/utils.d.ts +23 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts +18 -7
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchAssistant/components/SwitchAssistantModal.d.ts +4 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchAssistant/hooks/useSwitchAssistant.d.ts +17 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchAssistant/utils/constants.d.ts +8 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchAssistant/utils/type.interface.d.ts +36 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/SwitchAssistant/views/SwitchAssistantList.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/WelcomeEmailResend/hook/useGetUserList.d.ts +12 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/WelcomeEmailResend/hook/useResendMail.d.ts +5 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/WelcomeEmailResend/utils/constants.d.ts +25 -0
- package/dist/MarioFramework.Education/ClientApp/src/containers/WelcomeEmailResend/views/WelcomeEmailResend.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/dashboardService.d.ts +11 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/userService.d.ts +5 -0
- package/dist/MarioFramework.Education/ClientApp/src/services/welcomeEmailResendService.d.ts +3 -0
- package/dist/MarioFramework.Education/ClientApp/src/utils/serviceType.interface.d.ts +8 -0
- package/dist/index.css +275 -0
- package/dist/index.js +1807 -332
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1815 -340
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
export interface IOptionSelector {
|
|
3
|
+
label: string;
|
|
4
|
+
value: number;
|
|
5
|
+
}
|
|
6
|
+
interface IProps {
|
|
7
|
+
onChange: any;
|
|
8
|
+
placeholder: string;
|
|
9
|
+
options: IOptionSelector[];
|
|
10
|
+
isMultiSelect?: boolean;
|
|
11
|
+
}
|
|
12
|
+
declare const InputSelector: FC<IProps>;
|
|
13
|
+
export default InputSelector;
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/configs/constants.d.ts
CHANGED
|
@@ -1 +1,13 @@
|
|
|
1
1
|
export declare const colors: string[];
|
|
2
|
+
export declare const INITIAL_BEST_FRIENDS: {
|
|
3
|
+
friends: number;
|
|
4
|
+
couldBeFriends: number;
|
|
5
|
+
supportive: number;
|
|
6
|
+
notSpeakingAtTheMoment: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const INITIAL_ACTIVITY_FRIENDS: {
|
|
9
|
+
like: number;
|
|
10
|
+
love: number;
|
|
11
|
+
interested: number;
|
|
12
|
+
curious: number;
|
|
13
|
+
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export declare type LoginCountingReport = {
|
|
2
3
|
date: string;
|
|
3
4
|
studentLoginCount: number;
|
|
@@ -48,4 +49,51 @@ export declare type BandScore = {
|
|
|
48
49
|
label: string;
|
|
49
50
|
value: number;
|
|
50
51
|
};
|
|
52
|
+
export declare type TotalCardItem = {
|
|
53
|
+
icon: any;
|
|
54
|
+
title: string;
|
|
55
|
+
value: string;
|
|
56
|
+
isUp: boolean;
|
|
57
|
+
deviant: string;
|
|
58
|
+
filter: string;
|
|
59
|
+
};
|
|
60
|
+
export declare type DashboardFilter = {
|
|
61
|
+
startDate: number;
|
|
62
|
+
endDate: number;
|
|
63
|
+
studentIds: number[];
|
|
64
|
+
gender?: number[];
|
|
65
|
+
grade?: string[];
|
|
66
|
+
};
|
|
67
|
+
export interface ICircleChartItem {
|
|
68
|
+
id: number;
|
|
69
|
+
name: string;
|
|
70
|
+
number: number;
|
|
71
|
+
background: string;
|
|
72
|
+
width: number;
|
|
73
|
+
height: number;
|
|
74
|
+
}
|
|
75
|
+
export interface ICircleChart {
|
|
76
|
+
circleChartItems: ICircleChartItem[];
|
|
77
|
+
}
|
|
78
|
+
export interface IsyntheticFriendCircle {
|
|
79
|
+
bestFriends: number;
|
|
80
|
+
friends: number;
|
|
81
|
+
couldBeFriends: number;
|
|
82
|
+
supportive: number;
|
|
83
|
+
notSpeakingAtTheMoment: number;
|
|
84
|
+
}
|
|
85
|
+
export interface IActivityCircle {
|
|
86
|
+
like: number;
|
|
87
|
+
love: number;
|
|
88
|
+
interested: number;
|
|
89
|
+
curious: number;
|
|
90
|
+
}
|
|
91
|
+
export interface IChartComponent {
|
|
92
|
+
label: string;
|
|
93
|
+
children: JSX.Element | undefined;
|
|
94
|
+
}
|
|
95
|
+
export declare enum LegalGenderType {
|
|
96
|
+
Male = 0,
|
|
97
|
+
Female = 1
|
|
98
|
+
}
|
|
51
99
|
export {};
|
|
@@ -1 +1,24 @@
|
|
|
1
|
+
import { IOptionSelector } from "../../../components/Select/InputSelector";
|
|
2
|
+
import { IActivityCircle, IsyntheticFriendCircle, LegalGenderType } from "./types";
|
|
1
3
|
export declare const getColors: (length: number) => string[];
|
|
4
|
+
export declare const friendCircleItems: ({ bestFriends, friends, couldBeFriends, supportive }: IsyntheticFriendCircle) => {
|
|
5
|
+
id: number;
|
|
6
|
+
name: string;
|
|
7
|
+
number: number;
|
|
8
|
+
background: string;
|
|
9
|
+
width: number;
|
|
10
|
+
height: number;
|
|
11
|
+
}[];
|
|
12
|
+
export declare const activityCircleItems: ({ like, love, interested, curious, }: IActivityCircle) => {
|
|
13
|
+
id: number;
|
|
14
|
+
name: string;
|
|
15
|
+
number: number;
|
|
16
|
+
background: string;
|
|
17
|
+
width: number;
|
|
18
|
+
height: number;
|
|
19
|
+
}[];
|
|
20
|
+
export declare const gradeOptions: (grades: string[]) => IOptionSelector[];
|
|
21
|
+
export declare const genderOptions: {
|
|
22
|
+
value: LegalGenderType;
|
|
23
|
+
label: string;
|
|
24
|
+
}[];
|
package/dist/MarioFramework.Education/ClientApp/src/containers/Dashboard/hooks/useDashboard.d.ts
CHANGED
|
@@ -1,10 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DashboardFilter, IActivityCircle, IsyntheticFriendCircle } from "../configs/types";
|
|
2
3
|
declare const useDashboard: () => {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
setFilter: import("react").Dispatch<import("react").SetStateAction<DashboardFilter>>;
|
|
5
|
+
filter: DashboardFilter;
|
|
6
|
+
listTotalTime: any;
|
|
7
|
+
readinessToLearning: any;
|
|
8
|
+
topLearningStrategies: any;
|
|
9
|
+
studentByGrade: undefined;
|
|
10
|
+
chartOneToOneData: undefined;
|
|
11
|
+
chartClassReflection: undefined;
|
|
12
|
+
chartConference: undefined;
|
|
13
|
+
learningProgress: undefined;
|
|
14
|
+
friendCircles: IsyntheticFriendCircle | undefined;
|
|
15
|
+
activityCircles: IActivityCircle | undefined;
|
|
16
|
+
studentBySpecialNeed: undefined;
|
|
17
|
+
studentByAge: undefined;
|
|
18
|
+
studentByGender: undefined;
|
|
19
|
+
grades: string[];
|
|
9
20
|
};
|
|
10
21
|
export default useDashboard;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IOptions, IStudentAssistantItem } from "../utils/type.interface";
|
|
3
|
+
declare const useSwitchAssistant: () => {
|
|
4
|
+
userList: IStudentAssistantItem[];
|
|
5
|
+
totalItems: number;
|
|
6
|
+
filters: import("mario-core").Filter;
|
|
7
|
+
changeFilters: (updatedFilters: any) => void;
|
|
8
|
+
modal: import("react").MutableRefObject<any>;
|
|
9
|
+
userChoiced: IStudentAssistantItem;
|
|
10
|
+
options: IOptions[];
|
|
11
|
+
setAssistantChangeId: import("react").Dispatch<import("react").SetStateAction<string>>;
|
|
12
|
+
assistantChangeId: string;
|
|
13
|
+
removeData: (teacherUserId: string, studentId: number) => Promise<void>;
|
|
14
|
+
resetData: () => void;
|
|
15
|
+
choiceUser: (userChoiced: IStudentAssistantItem) => void;
|
|
16
|
+
};
|
|
17
|
+
export default useSwitchAssistant;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export interface IOptions {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string;
|
|
4
|
+
}
|
|
5
|
+
export declare type USER_CHOICE = {
|
|
6
|
+
id: string;
|
|
7
|
+
studentName: string;
|
|
8
|
+
emailStudent: string;
|
|
9
|
+
assistantId: string;
|
|
10
|
+
emailAssistant: string;
|
|
11
|
+
assistantName: string;
|
|
12
|
+
};
|
|
13
|
+
export interface ISwitchAssistantModal {
|
|
14
|
+
header: string;
|
|
15
|
+
removeData: (teacherUserId: string, studentId: number | string) => Promise<void>;
|
|
16
|
+
resetData: () => void;
|
|
17
|
+
userChoiced: IStudentAssistantItem;
|
|
18
|
+
options: IOptions[];
|
|
19
|
+
assistantChangeId: string;
|
|
20
|
+
setAssistantChangeId: (value: any) => void;
|
|
21
|
+
}
|
|
22
|
+
export interface IStudentAssistantItem {
|
|
23
|
+
id: number;
|
|
24
|
+
emailStudent: string;
|
|
25
|
+
studentName: string;
|
|
26
|
+
assistantId?: string;
|
|
27
|
+
emailAssistant?: string;
|
|
28
|
+
assistantName?: string;
|
|
29
|
+
}
|
|
30
|
+
export declare type TypeStudentAssistantData = {
|
|
31
|
+
currentPage: number;
|
|
32
|
+
pageSize: number;
|
|
33
|
+
totalItems: number;
|
|
34
|
+
totalPages: number;
|
|
35
|
+
items: IStudentAssistantItem[];
|
|
36
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { FilterTypes } from "../utils/constants";
|
|
2
|
+
declare const useGetUserList: () => {
|
|
3
|
+
totalItem: number;
|
|
4
|
+
userList: never[];
|
|
5
|
+
filters: FilterTypes;
|
|
6
|
+
changeFilters: (updatedFilters: any) => void;
|
|
7
|
+
handleSelectAll: () => void;
|
|
8
|
+
handleClickCheck: (e: any) => void;
|
|
9
|
+
isCheckAll: boolean;
|
|
10
|
+
isCheck: any;
|
|
11
|
+
};
|
|
12
|
+
export default useGetUserList;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare const DEFAULT_PAGE_SIZE_VALUES: {
|
|
2
|
+
label: string;
|
|
3
|
+
value: number;
|
|
4
|
+
}[];
|
|
5
|
+
export declare const DEFAULT_PAGE_SIZE: {
|
|
6
|
+
label: string;
|
|
7
|
+
value: number;
|
|
8
|
+
};
|
|
9
|
+
export declare const DEFAULT_FILTER: FilterTypes;
|
|
10
|
+
export declare enum MediaType {
|
|
11
|
+
IMAGE = 0,
|
|
12
|
+
VIDEO = 1,
|
|
13
|
+
AUDIO = 2,
|
|
14
|
+
DOC = 3,
|
|
15
|
+
UNKNOW = 4
|
|
16
|
+
}
|
|
17
|
+
export interface FilterTypes {
|
|
18
|
+
currentPage: number;
|
|
19
|
+
pageSize: number;
|
|
20
|
+
searchString: string;
|
|
21
|
+
sortBy: string;
|
|
22
|
+
sortOrder: string;
|
|
23
|
+
name: string;
|
|
24
|
+
queryTypes?: MediaType[];
|
|
25
|
+
}
|
|
@@ -6,3 +6,14 @@ export declare const getHighImpactLearningStrategyReport: () => Promise<import("
|
|
|
6
6
|
export declare const getTimeInSessionReport: () => Promise<import("axios").AxiosResponse<any>>;
|
|
7
7
|
export declare const getPerceivedImpactReport: () => Promise<import("axios").AxiosResponse<any>>;
|
|
8
8
|
export declare const getGradeReport: () => Promise<import("axios").AxiosResponse<any>>;
|
|
9
|
+
export declare const getAllTotalTime: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
10
|
+
export declare const getReadinessToLearning: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
11
|
+
export declare const getTopLearningStrategies: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
12
|
+
export declare const getStudentByGrade: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
13
|
+
export declare const getOverviewQuestionChart: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
14
|
+
export declare const getFriendCircleItems: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
15
|
+
export declare const getActivityCircleItems: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
16
|
+
export declare const getStudentBySpecialNeed: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
17
|
+
export declare const getStudentByAge: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
18
|
+
export declare const getStudentByGender: (filter: any) => Promise<import("axios").AxiosResponse<any>>;
|
|
19
|
+
export declare const getGrades: () => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { TypeStudentAssistantData } from "../containers/SwitchAssistant/utils/type.interface";
|
|
2
|
+
import { IStudentWidthAssistant } from "../utils/serviceType.interface";
|
|
3
|
+
export declare const getStudentAssistant: (data: IStudentWidthAssistant) => Promise<import("axios").AxiosResponse<TypeStudentAssistantData>>;
|
|
4
|
+
export declare const getAssistant: () => Promise<import("axios").AxiosResponse<any>>;
|
|
5
|
+
export declare const changeAssistantOfStudent: (id: number, assistantUserId: string) => Promise<import("axios").AxiosResponse<any>>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { FilterTypes } from "../containers/WelcomeEmailResend/utils/constants";
|
|
2
|
+
export declare const getUserList: (filter: FilterTypes) => Promise<import("axios").AxiosResponse<any>>;
|
|
3
|
+
export declare const postRequestResendMail: (data: any) => Promise<import("axios").AxiosResponse<any>>;
|
package/dist/index.css
CHANGED
|
@@ -134,3 +134,278 @@ h6._3zOGW {
|
|
|
134
134
|
._3Thdy {
|
|
135
135
|
max-width: 200px;
|
|
136
136
|
}
|
|
137
|
+
|
|
138
|
+
._1WLBo {
|
|
139
|
+
font-size: 20px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
._10Pgm {
|
|
143
|
+
/* background: #E5E5E5; */
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
._3jPb_ {
|
|
147
|
+
font-size: 30px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
._1c43y {
|
|
151
|
+
color: #fc4747;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
._F1afY {
|
|
155
|
+
color: #0dc16a;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
._1kqUQ {
|
|
159
|
+
background: #f6f6f6;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
._10hbz {
|
|
163
|
+
font-weight: 400;
|
|
164
|
+
font-size: 14px;
|
|
165
|
+
line-height: 16px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
._2rmw_ {
|
|
169
|
+
font-weight: 700;
|
|
170
|
+
font-size: 32px;
|
|
171
|
+
line-height: 100%;
|
|
172
|
+
margin: 0;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
._1tdQu {
|
|
176
|
+
font-weight: 600;
|
|
177
|
+
font-size: 12px;
|
|
178
|
+
line-height: 14px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
._2BvFN {
|
|
182
|
+
font-weight: 400;
|
|
183
|
+
font-size: 10px;
|
|
184
|
+
line-height: 12px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
._10hbz,
|
|
188
|
+
._2rmw_,
|
|
189
|
+
._1tdQu,
|
|
190
|
+
._2BvFN {
|
|
191
|
+
font-family: "Roboto", sans-serif;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
._2TBTW {
|
|
195
|
+
margin: 10px 0;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
._3XXJp {
|
|
199
|
+
width: 35px;
|
|
200
|
+
color: #0D9994;
|
|
201
|
+
text-align: center;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
._LCuWQ {
|
|
205
|
+
background: #CEF7F5;
|
|
206
|
+
color: #0D9994;
|
|
207
|
+
border-radius: 8px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
._3x9D7 {
|
|
211
|
+
color: #1DA370;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
._2In63 {
|
|
215
|
+
border: none;
|
|
216
|
+
background: #fff;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
._1Vhg_ {
|
|
220
|
+
display: flex;
|
|
221
|
+
justify-content: space-between;
|
|
222
|
+
width: 100%;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
._6yLxd {
|
|
226
|
+
border: 1px solid;
|
|
227
|
+
padding: 7px 8px;
|
|
228
|
+
border-radius: 5px;
|
|
229
|
+
margin-right: 20px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
._6yLxd {
|
|
233
|
+
margin-bottom: 10px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
._h74SO {
|
|
237
|
+
display: flex;
|
|
238
|
+
justify-content: flex-start;
|
|
239
|
+
flex-wrap: wrap;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
._3e2pi {
|
|
243
|
+
display: flex;
|
|
244
|
+
justify-content: flex-end;
|
|
245
|
+
flex-wrap: wrap;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
._31VDE,
|
|
249
|
+
._1Pm1w{
|
|
250
|
+
min-width: 200px;
|
|
251
|
+
margin-left: 20px;
|
|
252
|
+
margin-bottom: 10px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
._2Q9xO{
|
|
256
|
+
border-radius: 50%;
|
|
257
|
+
display: flex;
|
|
258
|
+
align-items: center;
|
|
259
|
+
justify-content: center;
|
|
260
|
+
padding: 15px;
|
|
261
|
+
}
|
|
262
|
+
._2Q9xO._3r61v ._2b1Cw h2,
|
|
263
|
+
._2Q9xO._2Nlax ._2b1Cw h2{
|
|
264
|
+
font-size: 12px;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
._2Q9xO ._2b1Cw {
|
|
268
|
+
text-align: center;
|
|
269
|
+
}
|
|
270
|
+
._2Q9xO ._2b1Cw h2 {
|
|
271
|
+
font-size: 18px;
|
|
272
|
+
font-weight: 400;
|
|
273
|
+
}
|
|
274
|
+
._2Q9xO ._2b1Cw p {
|
|
275
|
+
color: "#153E75";
|
|
276
|
+
font-size: 18px;
|
|
277
|
+
font-weight: 700;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
._3DImv{
|
|
281
|
+
min-height: 640px;
|
|
282
|
+
overflow: hidden;
|
|
283
|
+
}
|
|
284
|
+
._1iPJ6 {
|
|
285
|
+
display: flex;
|
|
286
|
+
justify-content: space-between;
|
|
287
|
+
|
|
288
|
+
}
|
|
289
|
+
._1iPJ6 h2{
|
|
290
|
+
font-size: 18px;
|
|
291
|
+
font-weight: 700;
|
|
292
|
+
color: #1a202c;
|
|
293
|
+
}
|
|
294
|
+
._1iPJ6 ._3lxsP{
|
|
295
|
+
background-color: #308252;
|
|
296
|
+
border-radius: 12px;
|
|
297
|
+
color: #ffffff;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
._30j_l {
|
|
301
|
+
display: inline-block;
|
|
302
|
+
position: absolute;
|
|
303
|
+
top: 50%;
|
|
304
|
+
left: 50%;
|
|
305
|
+
transform: translate(-50%, -50%);
|
|
306
|
+
}
|
|
307
|
+
._34Snf {
|
|
308
|
+
display: inline-block;
|
|
309
|
+
position: absolute;
|
|
310
|
+
top: 66%;
|
|
311
|
+
left: 10%;
|
|
312
|
+
}
|
|
313
|
+
._2WBPR {
|
|
314
|
+
display: inline-block;
|
|
315
|
+
position: absolute;
|
|
316
|
+
top: 12%;
|
|
317
|
+
left: 50%;
|
|
318
|
+
}
|
|
319
|
+
._35giW {
|
|
320
|
+
display: inline-block;
|
|
321
|
+
top: 64%;
|
|
322
|
+
left: 52%;
|
|
323
|
+
position: absolute;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
._LR7-A {
|
|
327
|
+
display: block;
|
|
328
|
+
position: absolute;
|
|
329
|
+
top: 35%;
|
|
330
|
+
right: 5%;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
._LR7-A ._dVojB,
|
|
334
|
+
._LR7-A ._1ALLM,
|
|
335
|
+
._LR7-A ._3OII4,
|
|
336
|
+
._LR7-A ._1t4JS {
|
|
337
|
+
margin-bottom: 8px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
._3Rj17 {
|
|
341
|
+
display: flex;
|
|
342
|
+
flex-wrap: wrap;
|
|
343
|
+
position: absolute;
|
|
344
|
+
top: 77%;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
._3Yvnm {
|
|
348
|
+
background-color: #308252;
|
|
349
|
+
border-radius: 12px;
|
|
350
|
+
color: #ffffff;
|
|
351
|
+
position: absolute;
|
|
352
|
+
bottom: 20px;
|
|
353
|
+
right: 20px;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
|
|
357
|
+
._3UN7n ._LR7-A{
|
|
358
|
+
display: flex;
|
|
359
|
+
flex-wrap: wrap;
|
|
360
|
+
position: absolute;
|
|
361
|
+
top: 89%;
|
|
362
|
+
right: 10%;
|
|
363
|
+
}
|
|
364
|
+
._3UN7n ._LR7-A ._dVojB,
|
|
365
|
+
._3UN7n ._LR7-A ._1ALLM,
|
|
366
|
+
._3UN7n ._LR7-A ._3OII4,
|
|
367
|
+
._3UN7n ._LR7-A ._1t4JS {
|
|
368
|
+
flex: 50% 1;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
@media screen and (max-width: 1280px) {
|
|
373
|
+
._3DImv{
|
|
374
|
+
margin-bottom: 20px;
|
|
375
|
+
height: 750px;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
@media screen and (max-width: 562px) {
|
|
380
|
+
._LR7-A{
|
|
381
|
+
display: flex;
|
|
382
|
+
flex-wrap: wrap;
|
|
383
|
+
position: absolute;
|
|
384
|
+
top: 77%;
|
|
385
|
+
right: unset;
|
|
386
|
+
width: calc(100vw-10px);
|
|
387
|
+
padding: 0 10px;
|
|
388
|
+
}
|
|
389
|
+
._LR7-A ._dVojB,
|
|
390
|
+
._LR7-A ._1ALLM,
|
|
391
|
+
._LR7-A ._3OII4,
|
|
392
|
+
._LR7-A ._1t4JS {
|
|
393
|
+
flex: 50% 1;
|
|
394
|
+
}
|
|
395
|
+
._30j_l{
|
|
396
|
+
top: 41%;
|
|
397
|
+
left: 50%;
|
|
398
|
+
}
|
|
399
|
+
._34Snf{
|
|
400
|
+
top: 53%;
|
|
401
|
+
left: 5%;
|
|
402
|
+
}
|
|
403
|
+
._2WBPR {
|
|
404
|
+
top: 12%;
|
|
405
|
+
left: 50%;
|
|
406
|
+
}
|
|
407
|
+
._35giW {
|
|
408
|
+
top: 52%;
|
|
409
|
+
left: 55%;
|
|
410
|
+
}
|
|
411
|
+
}
|