gp-designer 1.0.43 → 1.0.45

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.
@@ -1,3 +1,901 @@
1
+
2
+ /* 主题色 */
3
+ :root {
4
+ --main-color: #3574e6;
5
+ /* 默认颜色 */
6
+ }
7
+
8
+ .theme_text {
9
+ color: var(--main-color) !important;
10
+ }
11
+
12
+ .theme_bg {
13
+ background: var(--main-color) !important;
14
+ color: #fff;
15
+ }
16
+
17
+ .theme_border {
18
+ border-color: var(--main-color) !important;
19
+ }
20
+
21
+ .danger_color {
22
+ color: #f01d1d;
23
+ }
24
+
25
+ .danger_bg {
26
+ background: rgba(240, 29, 29, 0.8) !important;
27
+ }
28
+
29
+ .danger_border {
30
+ border-color: #f01d1d !important;
31
+ }
32
+
33
+ .mb40 {
34
+ margin-bottom: 40px;
35
+ }
36
+
37
+ img {
38
+ object-fit: cover;
39
+ }
40
+
41
+ /* flex public */
42
+ .add_modules .iconfont,
43
+ .add_modules span,
44
+ .top_box,
45
+ .top_logo,
46
+ .intro_cate,
47
+ .service_tip,
48
+ .module1_content,
49
+ .module2_content,
50
+ .aidition,
51
+ .aidition_right,
52
+ .module2_content2,
53
+ .module2_content3,
54
+ .cont_aidition,
55
+ .course_box2,
56
+ .course_box3 {
57
+ display: flex;
58
+ flex-direction: row;
59
+ }
60
+
61
+ .web_top,
62
+ .course_box,
63
+ .top_service,
64
+ .module1,
65
+ .module2,
66
+ .module3,
67
+ .module3_content,
68
+ .content_top,
69
+ .intro_left,
70
+ .year,
71
+ .recruit,
72
+ .teachers,
73
+ .course_box2_txt,
74
+ .course_box3_txt,
75
+ .txt_box {
76
+ display: flex;
77
+ flex-direction: column;
78
+ }
79
+
80
+ /* 模块样式 */
81
+ .add_modules {
82
+ display: none;
83
+ position: absolute;
84
+ bottom: -40px;
85
+ left: 0;
86
+ flex-direction: row;
87
+ align-items: center;
88
+ justify-content: center;
89
+ width: 100%;
90
+ height: 40px;
91
+ background: #eeeeee;
92
+ font-size: 14px;
93
+ font-weight: 400;
94
+ line-height: 20;
95
+ color: #333;
96
+ cursor: pointer;
97
+ }
98
+
99
+ .add_modules .iconfont,
100
+ .add_modules span {
101
+ height: 14px;
102
+ align-items: center;
103
+ justify-content: center;
104
+ }
105
+
106
+ .add_modules .iconfont {
107
+ height: 14px;
108
+ margin: 6px;
109
+ }
110
+
111
+ /* 添加 图标 */
112
+ .icon_gray_add {
113
+ display: none;
114
+ justify-content: center;
115
+ align-items: center;
116
+ position: absolute;
117
+ right: -36px;
118
+ top: 50%;
119
+ color: #999;
120
+ font-size: 35px !important;
121
+ width: 35px;
122
+ height: 35px;
123
+ cursor: pointer;
124
+ }
125
+
126
+ .icon_gray_add:hover {
127
+ color: #666;
128
+ }
129
+
130
+ .course_box2 .icon_gray_add,
131
+ .course_box3 .icon_gray_add {
132
+ right: -50px;
133
+ }
134
+
135
+ .cont_aidition {
136
+ /* display: none; */
137
+ background: white;
138
+ box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
139
+ padding: 8px 12px;
140
+ position: absolute;
141
+ top: -38px;
142
+ right: 0px;
143
+ column-gap: 24px;
144
+ height: 32px;
145
+ align-items: center;
146
+ }
147
+
148
+ .cont_aidition span {
149
+ color: #999;
150
+ cursor: pointer;
151
+ }
152
+
153
+ .cont_aidition span:hover {
154
+ color: #666;
155
+ }
156
+
157
+ .goodschool {
158
+ width: 100%;
159
+ height: 100%;
160
+ overflow: hidden;
161
+ color: #333333;
162
+ background: #eff1f7;
163
+ }
164
+
165
+ .goodschool_web {
166
+ flex: 1;
167
+ height: 100%;
168
+ /* overflow-y: auto; */
169
+ }
170
+
171
+ /* 头部 */
172
+ .web_top {
173
+ padding: 10px 140px;
174
+ background: white;
175
+ position: relative;
176
+ }
177
+
178
+ .top_box {
179
+ width: 100%;
180
+ /* height: 80px; */
181
+ /* padding: 0 140px; */
182
+ justify-content: space-between;
183
+ align-items: center;
184
+ }
185
+
186
+ /* 左边logo */
187
+ .top_logo {
188
+ position: relative;
189
+ align-items: center;
190
+ column-gap: 16px;
191
+ }
192
+
193
+ .school_logo {
194
+ width: 60px;
195
+ height: 60px;
196
+ }
197
+
198
+ .school_name {
199
+ font-size: 28px;
200
+ font-weight: 700;
201
+ }
202
+
203
+ /* 右边热线 */
204
+ .top_service {
205
+ align-items: end;
206
+ }
207
+
208
+ .service_hot_line {
209
+ font-size: 24px;
210
+ font-weight: 700;
211
+ line-height: 32px;
212
+ }
213
+
214
+ .service_tip {
215
+ position: relative;
216
+ align-items: center;
217
+ column-gap: 8px;
218
+ }
219
+
220
+ .service_tip .iconfont {
221
+ font-size: 20px;
222
+ }
223
+
224
+ .tip_text {
225
+ font-size: 16px;
226
+ }
227
+
228
+ /* banner */
229
+ .top_banner {
230
+ position: relative;
231
+ }
232
+
233
+ .top_banner img {
234
+ width: 100%;
235
+ height: 460px;
236
+ }
237
+
238
+ /* 内容 */
239
+ .module1,
240
+ .module2,
241
+ .module3 {
242
+ /* padding: 0 140px; */
243
+ background: white;
244
+ position: relative;
245
+ }
246
+
247
+ .module1,
248
+ .module2,
249
+ .content_top {
250
+ align-items: center;
251
+ }
252
+
253
+ .module1 {
254
+ padding: 0 140px 110px;
255
+ }
256
+
257
+ .content_top {
258
+ position: relative;
259
+ width: 100%;
260
+ padding-bottom: 32px;
261
+ }
262
+
263
+ .content_title {
264
+ font-size: 44px;
265
+ font-weight: 700;
266
+ margin-top: 52px;
267
+ }
268
+
269
+ .title_border {
270
+ height: 14px;
271
+ width: 80px;
272
+ border-bottom: 2px solid #333;
273
+ }
274
+
275
+ .content_desc {
276
+ font-size: 20px;
277
+ color: #666;
278
+ line-height: 28px;
279
+ padding-top: 16px;
280
+ }
281
+
282
+ .module1_content,
283
+ .module2_content,
284
+ .module3_content {
285
+ width: 100%;
286
+ align-items: center;
287
+ }
288
+
289
+ /* 顶部操作条 */
290
+ .aidition {
291
+ display: none;
292
+ align-items: center;
293
+ justify-content: space-between;
294
+ width: 100%;
295
+ height: 40px;
296
+ background: rgba(0, 0, 0, 0.6);
297
+ color: white;
298
+ font-size: 14px;
299
+ position: absolute;
300
+ top: 0;
301
+ left: 0;
302
+ padding: 0 48px;
303
+ }
304
+
305
+ .aidition_right {
306
+ column-gap: 24px;
307
+ }
308
+
309
+ .aidition_right span {
310
+ cursor: pointer;
311
+ }
312
+
313
+ /* 模块1 */
314
+ .module1_content {
315
+ position: relative;
316
+ justify-content: space-between;
317
+ padding: 60px 0 0;
318
+ }
319
+
320
+ .intro_left {
321
+ flex: 1;
322
+ align-items: start;
323
+ margin-right: 80px;
324
+ }
325
+
326
+ .intro_title {
327
+ font-size: 30px;
328
+ font-weight: 700;
329
+ line-height: 36px;
330
+ }
331
+
332
+ .title_desc {
333
+ font-size: 20px;
334
+ line-height: 28px;
335
+ color: #dddddd;
336
+ margin-left: 12px;
337
+ }
338
+
339
+ .intro_desc {
340
+ margin-top: 32px;
341
+ font-size: 16px;
342
+ line-height: 30px;
343
+ word-break: break-all;
344
+ }
345
+
346
+ .intro_line {
347
+ color: #dddddd;
348
+ font-size: 28px;
349
+ font-weight: 100;
350
+ }
351
+
352
+ .intro_cate {
353
+ width: 100%;
354
+ margin-top: 60px;
355
+ align-items: center;
356
+ justify-content: space-evenly;
357
+ }
358
+
359
+ .year,
360
+ .recruit,
361
+ .teachers {
362
+ align-items: center;
363
+ justify-content: center;
364
+ font-size: 42px;
365
+ font-weight: 700;
366
+ }
367
+
368
+ .year_suffix,
369
+ .recruit_suffix,
370
+ .teachers_suffix {
371
+ font-size: 14px;
372
+ }
373
+
374
+ .year_desc,
375
+ .recruit_desc,
376
+ .teachers_desc {
377
+ font-size: 16px;
378
+ color: #666;
379
+ font-weight: 500;
380
+ line-height: 24px;
381
+ margin-top: 2px;
382
+ }
383
+
384
+ .intro_img,
385
+ .intro_img_box,
386
+ .intro_img_bg {
387
+ width: 380px;
388
+ height: 507px;
389
+ border-radius: 4px;
390
+ }
391
+
392
+ .intro_img_box {
393
+ position: relative;
394
+ }
395
+
396
+ .intro_img_bg {
397
+ position: absolute;
398
+ top: 30px;
399
+ left: 30px;
400
+ }
401
+
402
+ .intro_img {
403
+ position: absolute;
404
+ top: 0;
405
+ left: 0;
406
+ }
407
+
408
+ /* 模块2 */
409
+ .module2 {
410
+ padding: 0 140px 90px;
411
+ }
412
+
413
+ .module2_content,
414
+ .module2_content2,
415
+ .module2_content3 {
416
+ width: 100%;
417
+ position: relative;
418
+ flex-wrap: wrap;
419
+ display: grid;
420
+ }
421
+
422
+ .module2_content2 {
423
+ grid-template-columns: repeat(2, minmax(0, 1fr));
424
+ }
425
+
426
+ .module2_content3 {
427
+ grid-template-columns: repeat(3, minmax(0, 1fr));
428
+ }
429
+
430
+ .module2_content {
431
+ padding: 50px 0 0;
432
+ }
433
+
434
+ .course_box,
435
+ .module2_content2 .course_box {
436
+ position: relative;
437
+ justify-content: start;
438
+ align-items: center;
439
+ margin: 10px;
440
+ padding-bottom: 40px;
441
+ box-shadow: 0 4px 24px 0 #00000014;
442
+ /* overflow: hidden; */
443
+ border-radius: 4px;
444
+ /* max-width: 380px; */
445
+ }
446
+
447
+ .module2_content2 .course_box:nth-child(1),
448
+ .module2_content2 .course_box:nth-child(2) {
449
+ /* max-width: 580px; */
450
+ }
451
+
452
+ .course_box:hover {
453
+ margin: 0 10px 20px;
454
+ box-shadow: 0 4px 24px 0 #00000029;
455
+
456
+ .course_consult {
457
+ background: var(--main-color);
458
+ color: #fff !important;
459
+ }
460
+ }
461
+
462
+ .course_box img {
463
+ border-top-right-radius: 4px;
464
+ border-top-left-radius: 4px;
465
+ width: 100%;
466
+ height: 300px;
467
+ }
468
+
469
+ .course_title {
470
+ font-size: 24px;
471
+ line-height: 32px;
472
+ font-weight: 700;
473
+ margin-top: 24px;
474
+ }
475
+
476
+ .course_desc {
477
+ word-break: break-all;
478
+ font-size: 14px;
479
+ line-height: 24px;
480
+ margin-top: 14px;
481
+ }
482
+
483
+ .course_consult {
484
+ margin-top: 14px;
485
+ border: 1px solid #3574e6;
486
+ border-radius: 20px;
487
+ height: 40px;
488
+ width: 184px;
489
+ }
490
+
491
+ .course_title,
492
+ .course_desc,
493
+ .course_consult,
494
+ .course_title,
495
+ .course_desc,
496
+ .course_consult {
497
+ padding: 0 16px;
498
+ text-align: center;
499
+ }
500
+
501
+ /* 模块3 */
502
+ .module3 {
503
+ background: rgba(53, 116, 230, 0.04);
504
+ padding: 0 140px 80px;
505
+ }
506
+
507
+ .module3_content {
508
+ padding: 30px 0 0;
509
+ }
510
+
511
+ .course_box2,
512
+ .course_box3 {
513
+ width: 100%;
514
+ position: relative;
515
+ margin: 20px 0;
516
+ }
517
+
518
+ .course_box2 {
519
+ justify-content: end;
520
+ }
521
+
522
+ .course_box3 {
523
+ justify-content: start;
524
+ }
525
+
526
+ .course_box2:hover,
527
+ .course_box3:hover {
528
+ margin: 10px 0 30px;
529
+
530
+ .course_box2_txt,
531
+ .course_box3_txt {
532
+ box-shadow: 0 4px 24px 0 #00000029;
533
+ }
534
+ }
535
+
536
+ .course_box2_txt,
537
+ .course_box3_txt {
538
+ /* max-width: 980px; */
539
+ width: 72%;
540
+ border-radius: 4px;
541
+ background: white;
542
+ min-height: 320px;
543
+ box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
544
+ }
545
+
546
+ .course_box2_txt {
547
+ padding: 20px 40px 20px 0;
548
+ align-items: end;
549
+ }
550
+
551
+ .course_box3_txt {
552
+ align-items: start;
553
+ padding: 20px 0 20px 40px;
554
+ }
555
+
556
+ .txt_box {
557
+ width: 72%;
558
+ height: 100%;
559
+ align-items: start;
560
+ justify-content: center;
561
+ }
562
+
563
+ .txt_title {
564
+ font-size: 24px;
565
+ line-height: 32px;
566
+ font-weight: 700;
567
+ }
568
+
569
+ .txt_desc {
570
+ font-size: 14px;
571
+ color: #666;
572
+ line-height: 24px;
573
+ margin-top: 16px;
574
+ word-break: break-all;
575
+ }
576
+
577
+ .txt_consult {
578
+ color: #fff;
579
+ font-size: 14px;
580
+ line-height: 20px;
581
+ padding: 6px 24px;
582
+ border-radius: 4px;
583
+ margin-top: 24px;
584
+ }
585
+
586
+ .course_box2_img1,
587
+ .course_box2_img2 {
588
+ position: absolute;
589
+ top: 6.5%;
590
+ /* width: 498px; */
591
+ width: 40.5%;
592
+ height: 87%;
593
+ border-radius: 4px;
594
+ z-index: 10;
595
+ }
596
+
597
+ .course_box2_img1 {
598
+ left: 0;
599
+ /* padding: 20px 48px 20px 0; */
600
+ }
601
+
602
+ .course_box2_img2 {
603
+ right: 0;
604
+ /* padding: 20px 0 20px 48px; */
605
+ }
606
+
607
+ /* .intro_img_bg, */
608
+ .icon_gray_add,
609
+ .course_box .aidition,
610
+ .course_box .add_modules {
611
+ /* display: none; */
612
+ }
613
+
614
+ /* .web_top:focus-within .aidition, */
615
+ /* .top_banner:focus-within .aidition, */
616
+ /* .content_top:focus-within .aidition, */
617
+ /* .module1_content:focus-within .aidition, */
618
+ /* .module1:focus-within > .aidition, */
619
+ /* .module2:focus-within > .aidition, */
620
+ /* .module3:focus-within > .aidition, */
621
+ /* .course_box:last-of-type:focus-within .icon_gray_add, */
622
+ /* .course_box2:last-of-type:focus-within .icon_gray_add, */
623
+ /* .course_box3:last-of-type:focus-within .icon_gray_add, */
624
+ /* .content_top:focus-within .cont_aidition, */
625
+ /* .module1_content:focus-within .cont_aidition, */
626
+ /* .course_box:focus-within .cont_aidition, */
627
+ /* .course_box2:focus-within .cont_aidition, */
628
+ /* .course_box3:focus-within .cont_aidition { */
629
+ /* display: flex; */
630
+ /* } */
631
+
632
+ /* 移動端 */
633
+ .goodschool_mobile {
634
+ .mb40 {
635
+ margin-bottom: 0;
636
+ }
637
+
638
+ .web_top,
639
+ .course_title,
640
+ .course_desc,
641
+ .course_consult,
642
+ .module3 {
643
+ padding: 0;
644
+ }
645
+
646
+ .top_box {
647
+ padding: 0 16px;
648
+ height: 56px;
649
+ }
650
+
651
+ .top_logo {
652
+ column-gap: 6px;
653
+ }
654
+
655
+ .school_logo {
656
+ width: 40px;
657
+ height: 40px;
658
+ }
659
+
660
+ .school_name {
661
+ font-size: 20px;
662
+ line-height: 20px;
663
+ }
664
+
665
+ .top_service {
666
+ row-gap: 2px;
667
+ }
668
+
669
+ .service_hot_line {
670
+ font-size: 16px;
671
+ line-height: 16px;
672
+ }
673
+
674
+ .service_tip {
675
+ font-size: 12px;
676
+ line-height: 12px;
677
+ column-gap: 4px;
678
+ }
679
+
680
+ .service_tip .iconfont {
681
+ width: 12px;
682
+ height: 12px;
683
+ font-size: 12px;
684
+ }
685
+
686
+ .top_banner img {
687
+ height: 150px;
688
+ width: 100%;
689
+ }
690
+
691
+ /* 模块1 */
692
+ .module1 {
693
+ padding: 0 16px;
694
+ }
695
+
696
+ .web_top {
697
+ padding: 0;
698
+ }
699
+
700
+ .content_top {
701
+ padding-bottom: 14px;
702
+ }
703
+
704
+ .content_title {
705
+ font-size: 20px;
706
+ margin: 20px 0 0;
707
+ }
708
+
709
+ .title_border {
710
+ width: 32px;
711
+ height: 10px;
712
+ }
713
+
714
+ .content_desc {
715
+ padding-top: 8px;
716
+ font-size: 12px;
717
+ line-height: 16px;
718
+ }
719
+
720
+ .module1_content {
721
+ padding: 203px 0 40px;
722
+ position: relative;
723
+ }
724
+
725
+ .intro_left {
726
+ margin: 24px 0 0;
727
+ }
728
+
729
+ .intro_title {
730
+ font-size: 16px;
731
+ line-height: 16px;
732
+ }
733
+
734
+ .title_desc {
735
+ font-size: 12px;
736
+ margin-left: 6px;
737
+ }
738
+
739
+ .intro_desc {
740
+ margin-top: 12px;
741
+ font-size: 12px;
742
+ line-height: 20px;
743
+ color: #666;
744
+ }
745
+
746
+ .intro_cate {
747
+ margin-top: 32px;
748
+ padding: 0 14px;
749
+ }
750
+
751
+ .year,
752
+ .recruit,
753
+ .teachers {
754
+ font-size: 24px;
755
+ }
756
+
757
+ .year_suffix,
758
+ .recruit_suffix,
759
+ .teachers_suffix,
760
+ .year_desc,
761
+ .recruit_desc,
762
+ .teachers_desc {
763
+ font-size: 12px;
764
+ }
765
+
766
+ .intro_img_box {
767
+ position: absolute;
768
+ top: 10px;
769
+ width: 100%;
770
+ height: 193px;
771
+ }
772
+
773
+ .intro_img {
774
+ width: 100%;
775
+ height: 100%;
776
+ }
777
+
778
+ /* 模块2 */
779
+ .module2 {
780
+ padding: 0;
781
+ background: rgba(53, 116, 230, 0.04);
782
+ }
783
+
784
+ .module2_content,
785
+ .module3_content {
786
+ padding: 0 16px 24px;
787
+ margin: 0 0 20px;
788
+ flex-direction: row;
789
+ flex-wrap: nowrap;
790
+ overflow-x: auto;
791
+ column-gap: 8px;
792
+ }
793
+
794
+ .module2_content2,
795
+ .module2_content3 {
796
+ flex-direction: row;
797
+ flex-wrap: nowrap;
798
+ column-gap: 8px;
799
+ }
800
+
801
+ .course_box,
802
+ .course_box2,
803
+ .course_box3 {
804
+ margin: 0;
805
+ padding: 10px 10px 32px;
806
+ background: #fff;
807
+ /* min-width: 318px; */
808
+ /* width: 318px; */
809
+ }
810
+
811
+ .course_box img,
812
+ .course_box2_img1,
813
+ .course_box2_img2 {
814
+ width: 100%;
815
+ height: 154px;
816
+ }
817
+
818
+ .course_title,
819
+ .txt_title {
820
+ font-size: 16px;
821
+ line-height: 16px;
822
+ }
823
+
824
+ .course_desc,
825
+ .txt_desc {
826
+ font-size: 12px;
827
+ line-height: 20px;
828
+ color: #666;
829
+ }
830
+
831
+ .course_box2:hover,
832
+ .course_box3:hover {
833
+ margin: 0;
834
+ }
835
+
836
+ .course_consult,
837
+ .txt_consult,
838
+ .intro_img_bg {
839
+ display: none;
840
+ }
841
+
842
+ /* 模块3 */
843
+
844
+ .module3_content {
845
+ padding: 0 16px 24px;
846
+ }
847
+
848
+ .course_box2,
849
+ .course_box3 {
850
+ margin: 0;
851
+ flex-direction: column;
852
+ }
853
+
854
+ .course_box2_img1 {
855
+ padding: 0;
856
+ position: unset;
857
+ }
858
+
859
+ .course_box2_txt,
860
+ .course_box3_txt {
861
+ width: 100%;
862
+ min-height: auto;
863
+ padding: 0;
864
+ margin: 0;
865
+ box-shadow: unset;
866
+ }
867
+
868
+ .course_box2:hover .course_box2_txt,
869
+ .course_box3:hover .course_box3_txt {
870
+ box-shadow: none;
871
+ }
872
+
873
+ .txt_box {
874
+ width: 100%;
875
+ align-items: center;
876
+ }
877
+
878
+ .txt_title {
879
+ margin-top: 24px;
880
+ }
881
+
882
+ .txt_desc {
883
+ margin-top: 14px;
884
+ text-align: center;
885
+ }
886
+
887
+ .course_box2_img2 {
888
+ width: 298px;
889
+ top: 10px;
890
+ left: 10px;
891
+ padding: 0;
892
+ }
893
+
894
+ .course_box3_txt {
895
+ padding-top: 154px;
896
+ }
897
+ }
898
+
1
899
  body,html {
2
900
  margin: 0;
3
901
  padding: 0