-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
1005 lines (887 loc) · 18.4 KB
/
style.css
File metadata and controls
1005 lines (887 loc) · 18.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* scroll to reveal
html.sr .load-hidden {
visibility: hidden;
} */
/*
html {
scroll-behavior: smooth;
} */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Helvetica, "PingFang SC", "Microsoft Yahei", sans-serif;
font-size: 14px;
}
/* 图片默认宽度100% */
img {
width: 100%;
}
/* 定义变量 */
:root {
--primary-color: #ff434f;
--secondary-color: #e3e3e3;
--text-color-lightest: #e7e9ec;
--text-color-darker: #2e2e2e;
--text-color-dark: #494949;
--text-color-gray: #8b8b8b;
--text-color-dark-gray: #727272;
--text-color-light-gray: #c6c6c6;
--backdrop-color: rgba(42, 42, 42, 0.69);
}
/* ============= 头部================== */
/* 头部 */
header {
width: 100vw;
height: 80px;
/* 栅格布局 */
display: grid;
padding: 0 40px;
/* 两列,一列占三分之一,一列占三分之二 */
grid-template-columns: 1fr 2fr;
/* 垂直居中 */
align-items: center;
/* 用于定位导航菜单 */
position: relative;
z-index: 200;
}
/* logo */
.logo {
font-size: 24px;
font-weight: 600;
color: var(--text-color-lightest);
}
/* 导航 */
header nav {
/* 水平靠右对齐 */
justify-self: end;
}
/* 导航链接 */
header nav a {
color: var(--text-color-lightest);
text-decoration: none;
margin: 0 24px;
}
/* 搜索图标 */
header nav i {
color: var(--text-color-lightest);
}
/* 折叠菜单 */
header .burger {
display: none;
}
/* 页面下滑时固定导航,背景设置为白色 */
header.sticky {
position: fixed;
background-color: white;
box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
animation: dropDown 0.5s ease-in-out forwards;
}
/* 固定导航文字颜色为黑色 */
header.sticky .logo,
header.sticky nav a,
header.sticky nav i {
color: var(--text-color-darker);
}
/* 固定导航下滑动画 */
@keyframes dropDown {
from {
transform: translateY(-100px);
}
to {
transform: translateY(0);
}
}
/* ============= 轮播 ================== */
.glide {
/* 定位标题和图片 */
position: relative;
/* 抵消导航高度 */
top: -80px;
/* 放置在最下层 */
z-index: 50;
}
/* 轮播的图片和视频的大小 */
.glide__slide img,
.glide__slide video {
object-fit: cover;
width: 100vw;
height: 100vh;
}
/* 轮播的布局 */
.glide__slide {
display: flex;
align-items: center;
justify-content: center;
}
/* 轮播标题容器 */
.slide-caption {
position: absolute;
/* 放置在遮罩上层 */
z-index: 70;
color: var(--text-color-lightest);
text-align: center;
max-width: 60vw;
}
/* 轮播标题默认不显示,在JS中用动画移入 */
.slide-caption > * {
opacity: 0;
}
/* 轮播标题中的主标语 */
.slide-caption h1 {
font-size: 54px;
font-weight: 600;
}
/* 轮播标题中的副标语 */
.slide-caption h3 {
font-size: 24px;
margin: 48px 0;
}
/* 第二页轮播标题布局方式 */
.slide-caption.left {
max-width: 80vw;
text-align: left;
}
/* 轮播遮罩层 */
.backdrop {
background: var(--backdrop-color);
opacity: 0.5;
position: absolute;
left: 0;
width: 100%;
height: 100%;
/* 放置在幻灯片上层 */
z-index: 60;
}
.glide__arrows,
.glide__bullets {
z-index: 70;
}
/* 探索更多按钮 */
.explore-btn {
padding: 14px 32px;
background-color: var(--primary-color);
border: 0;
border-radius: 4px;
color: var(--text-color-lightest);
font-size: 18px;
cursor: pointer;
outline: none;
}
/* ============= 内容区域 ================== */
/* 通用样式 */
.content-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
/* 所有section都按grid布局 */
section {
display: grid;
/* 单元格都居中对齐 */
justify-items: center;
max-width: 1180px;
padding: 0 80px;
}
/* 区域大标题 */
.title1 {
/* justify-self: center; */
/* position: relative; */
font-size: 34px;
color: var(--text-color-darker);
}
/* 大标题下方红线 */
.title1::after {
content: "";
display: block;
width: 80%;
height: 4px;
transform: translateX(10%);
margin-top: 14px;
background-color: var(--primary-color);
}
/* 大d标题下方简介 */
.intro {
margin: 28px 0 60px 0;
font-size: 18px;
color: var(--text-color-dark-gray);
}
/* 区域背景色,因为区域有最大宽度限制,用before来设置占满浏览器宽度 */
.section-bg {
position: relative;
}
.section-bg::before {
content: "";
display: block;
position: absolute;
background-color: #f9fbfb;
width: 100vw;
height: 100%;
z-index: -1;
}
/* ============= 关于我们 ================== */
/* 关于我们 */
.about-us {
padding-bottom: 32px;
}
/* 公司业务布局 */
.features {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 126px 126px;
column-gap: 5vw;
align-items: center;
}
/* 业务 */
.feature {
display: grid;
/* 规划栅格,图标占两行,标题和内容各占一行 */
grid-template-areas:
"icon title"
"icon content";
/* 每列的宽度,第一列60象素,第二列占满剩余空间 */
grid-template-columns: 60px 1fr;
/* 三行 */
grid-template-rows: 1fr 3fr;
}
/* 图标 */
.feature i.fas {
grid-area: icon;
font-size: 34px;
color: var(--primary-color);
}
/* 标题 */
.feature-title {
grid-area: title;
font-size: 18px;
color: var(--text-color-darker);
}
/* 内容 */
.feature-content {
grid-area: content;
color: var(--text-color-gray);
margin-top: 8px;
}
/* ============= 成功案例 ================== */
/* 成功案例 */
.showcases {
max-width: unset;
padding: 0;
padding-top: 72px;
}
/* 案例筛选按钮容器 */
.filter-btns {
margin-top: 54px;
margin-bottom: 38px;
}
/* 筛选按钮 */
.filter-btn {
margin: 0 7px;
background-color: var(--secondary-color);
border: 0;
color: var(--text-color-dark-gray);
padding: 8px 18px;
border-radius: 4px;
cursor: pointer;
transition: 0.4s;
}
/* 按钮选中时 */
.filter-btn:focus,
.filter-btn:active {
/* 去掉边框 */
outline: none;
}
.filter-btn.active,
.filter-btn:hover {
background-color: var(--primary-color);
color: white;
}
.showcases .cases {
width: 100vw;
}
.showcases .case-item {
/* 保持图片长宽比 */
width: 25vw;
/* 这里没有写错,图片比例为25:20,也就是5:4 */
height: 20vw;
overflow: hidden;
}
/* 案例图片 */
.case-item img {
height: 100%;
object-fit: cover;
}
/* ============= 服务流程 ================== */
/* 区域 */
.service {
padding-top: 131px;
}
/* 所有服务 */
.services {
display: grid;
/* 同关于我们 */
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr 1fr;
column-gap: 38px;
row-gap: 34px;
}
/* 服务 */
.service-item {
/* 同关于我们 */
display: grid;
grid-template-areas:
"icon title"
"icon content";
grid-template-columns: 70px 1fr;
grid-template-rows: 1fr 3fr;
/* 内边距 */
padding: 24px;
box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.06);
}
/* 服务图标 */
.service-item i.fas {
grid-area: icon;
font-size: 42px;
color: var(--primary-color);
padding-top: 6px;
}
/* 服务标题 */
.service-item .service-title {
grid-area: title;
color: var(--text-color-darker);
font-size: 24px;
}
/* 服务内容 */
.service-item .service-content {
grid-area: content;
color: var(--text-color-gray);
line-height: 30px;
font-size: 16px;
/* align-self: st; */
margin-top: 8px;
}
/* ============= 团队介绍 ================== */
/* 团队介绍 */
.team-intro {
margin-top: 48px;
padding-top: 62px;
padding-bottom: 52px;
}
/* 团队成员容器 */
.team-members {
display: grid;
/* 4列 */
grid-template-columns: repeat(4, 1fr);
column-gap: 24px;
margin-top: 86px;
}
/* 团队成员 */
.team-member {
background-color: white;
box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
text-align: center;
padding-bottom: 28px;
/* 鼠标移过会放大并上移 */
transition: 0.4s;
display: grid;
justify-items: center;
}
/* 成员照片遮罩 */
.profile-image {
overflow: hidden;
}
/* 成员照片 */
.profile-image img {
width: 100%;
height: 264px;
object-fit: cover;
object-position: top center;
}
/* 团队姓名 */
.team-member .name {
margin-top: 18px;
font-size: 18px;
font-weight: 500;
color: var(--text-color-dark);
}
/* 团队职位 */
.team-member .position {
color: var(--text-color-dark-gray);
margin-top: 12px;
margin-bottom: 18px;
}
/* 社交账号 */
.social-links {
width: 100%;
max-width: 200px;
display: flex;
justify-content: space-between;
padding: 0 42px;
}
/* 社交账号 */
.social-links li {
list-style: none;
}
/* 社交账号图标 */
.social-links li a {
color: var(--text-color-dark);
text-decoration: none;
}
/* 鼠标移过加动画 */
.team-member:hover {
transform: translateY(-20px) scale(1.05);
box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}
/* ============= 数据区域 ================== */
/* 数据 */
.data-section {
max-width: unset;
width: 100vw;
height: 255px;
/* 背景,自动拉伸,取中间部分 */
background-image: url(images/adult-business-computer-contemporary-380769.jpg);
background-size: cover;
background-position: center;
/* 4列布局 */
display: grid;
grid-template-columns: repeat(4, minmax(auto, 220px));
justify-content: center;
align-items: center;
position: relative;
z-index: 20;
}
/* 背景遮罩 */
.data-section::before {
content: "";
display: block;
position: absolute;
background-color: var(--backdrop-color);
width: 100%;
height: 100%;
z-index: 1;
}
/* 每个数据项的样式 */
.data-piece {
width: 250px;
display: grid;
grid-template-rows: repeat(3, 1fr);
justify-items: center;
color: white;
position: relative;
z-index: 40;
}
/* 数据图标 */
.data-piece i.fas {
font-size: 44px;
}
/* 数据数字 */
.data-piece .num {
margin-top: 7px;
font-size: 41px;
font-weight: 600;
}
/* 数字单位 */
.data-piece .data-desc {
font-size: 18px;
font-weight: 500;
}
/* ============= 公司动态 ================== */
/* 公司动态 */
.company-activities {
margin-top: 88px;
}
/* 动态栅格布局 */
.activities {
display: grid;
grid-template-columns: repeat(3, 1fr);
column-gap: 24px;
}
/* 动态 */
.activity {
box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
padding: 24px;
transition: 0.4s;
}
/* 动态图片容器 */
.act-image-wrapper {
height: 255px;
overflow: hidden;
/* 抵消activity的padding */
margin: -24px;
margin-bottom: 0;
}
/* 动态图片 */
.act-image-wrapper img {
min-height: 300px;
object-fit: cover;
}
/* 动态元数据 */
.activity .meta {
margin-top: 20px;
margin-bottom: 12px;
color: var(--text-color-light-gray);
font-size: 12px;
display: flex;
}
/* 评论 */
.activity .meta > p:last-child {
margin-left: 36px;
}
/* 动态标题 */
.act-title {
color: var(--text-color-dark);
font-size: 18px;
margin-bottom: 16px;
}
/* 动态摘要 */
.activity article {
color: var(--text-color-gray);
letter-spacing: 0.54px;
line-height: 24px;
}
/* 阅读更多按钮 */
.readmore-btn {
border: 0;
color: white;
background-color: var(--primary-color);
border-radius: 4px;
padding: 6px 14px;
margin-top: 24px;
}
/* 动态鼠标移上时 */
.activity:hover {
transform: translateY(-20px) scale(1.05);
box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}
/* ============= 底部区域 ================== */
/* 底部 */
footer {
margin-top: 124px;
background-color: #181818;
display: grid;
justify-items: center;
padding-top: 72px;
padding-bottom: 24px;
}
/* 底部菜单 */
.footer-menus {
width: 100%;
max-width: 1180px;
display: grid;
/* 5列布局 */
grid-template-columns: 2fr repeat(4, 1fr);
padding: 0 80px;
position: relative;
}
/* 导航菜单,靠右对齐 */
.footer-menu {
justify-self: end;
}
/* 一级菜单 */
.menu-title {
font-size: 16px;
color: white;
font-weight: 500;
margin-bottom: 20px;
}
/* 联系我们,靠左对齐 */
.contact-us {
justify-self: start;
color: var(--text-color-lightest);
}
/* 联系我们,文字 */
.contact-us p:not(:first-child) {
padding-bottom: 16px;
}
/* 菜单项 */
.menu-items li {
list-style: none;
padding-bottom: 8px;
}
/* 菜单链接 */
.menu-items li a {
text-decoration: none;
font-weight: 300;
color: var(--text-color-lightest);
}
/* 备案信息 */
.icp-info {
margin-top: 24px;
margin-bottom: 16px;
}
/* 备案信息,版权信息 */
.icp-info,
.rights {
/* 占满整行,-1代表最后一个编号 */
grid-column: 1 / -1;
/* 居中对齐 */
justify-self: center;
color: white;
}
/* 返回顶部按钮,默认不显示 */
.scrollToTop {
display: none;
position: relative;
z-index: 300;
}
/* 返回顶部按钮 */
.scrollToTop a {
width: 32px;
height: 32px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--primary-color);
color: white;
text-decoration: none;
position: fixed;
bottom: 60px;
right: 30px;
}
/* 自适应,小于1100象素时 */
@media (max-width: 1100px) {
/* 导航设置为不可见,点击折叠按钮显示全屏导航 */
header nav {
display: none;
}
/* 头部平分两列布局 */
header {
grid-template-columns: repeat(2, 1fr);
}
/* 折叠菜单样式,显示出来 */
header .burger {
display: block;
justify-self: end;
cursor: pointer;
position: relative;
width: 20px;
height: 6px;
}
/* 折叠按钮线条样式 */
.burger-line1,
.burger-line2,
.burger-line3 {
width: 20px;
height: 2px;
background-color: var(--text-color-lightest);
/* position: relative; */
}
/* 上移第一条线 */
.burger-line1 {
position: absolute;
top: -6px;
}
/* 下移第三条线 */
.burger-line3 {
position: absolute;
top: 6px;
}
/* 全屏导航展开时,折叠按钮设置为深色 */
header.open .burger-line1,
header.open .burger-line2,
header.open .burger-line3,
header.sticky .burger-line1,
header.sticky .burger-line2,
header.sticky .burger-line3 {
background-color: var(--text-color-darker);
transition: 0.4s ease;
}
/* 全屏导航显示时,折叠按钮第一条线样式 */
header.open .burger-line1 {
transform: rotate(45deg) translate(3px, 5px);
}
/* 全屏导航显示时,折叠按钮第二条线样式 */
header.open .burger-line2 {
transform: translateX(5px);
opacity: 0;
}
/* 全屏导航显示时,折叠按钮第三条线样式 */
header.open .burger-line3 {
transform: rotate(-45deg) translate(3px, -5px);
}
/* 全屏导航显示时,logo样式 */
header.open .logo {
color: var(--text-color-darker);
z-index: 40;
}
/* 全屏导航显示时,导航菜单样式 */
header.open nav {
display: grid;
/* 每行高度为内容的高度,不设置会平分全屏高度 */
grid-auto-rows: max-content;
/* 菜单项靠右对齐 */
justify-items: end;
position: absolute;
top: 0;
left: 0;
background: white;
width: 100vw;
height: 100vh;
padding: 0 40px;
opacity: 0;
/* 下滑效果 */
animation: slideDown 0.6s ease-out forwards;
}
/* 全屏导航显示时,导航菜单项样式和动画 */
header.open nav > * {
margin: 4px 0;
font-size: 18px;
color: var(--text-color-darker);
opacity: 0;
animation: showMenu 0.5s linear forwards 0.4s;
}
/* 搜索按钮 */
header.open nav > i.fas {
margin-top: 10px;
}
/* 导航下滑动画 */
@keyframes slideDown {
from {
height: 0;
opacity: 0;
}
to {
height: 100vh;
padding-top: 80px;
opacity: 1;
}
}
/* 菜单项动画 */
@keyframes showMenu {
from {
opacity: 0;
transform: translateY(-1vh);
}
to {
opacity: 1;
}
}
/* 缩小业务流程标题字体 */
.service-item .service-title {
font-size: 20px;
}
/* 缩小业务流程内容字体和行距 */
.service-item .service-content {
font-size: 14px;
line-height: 24px;
}
/* 团队成员改为两列 */
.team-members {
grid-template-columns: repeat(2, 1fr);
column-gap: 6vw;
row-gap: 36px;
}
/* 公司动态改为两列 */
.activities {
grid-template-columns: repeat(2, 1fr);
row-gap: 36px;
}
}
/* 小于992象素时 */
@media (max-width: 992px) {
/* 轮播标题字号缩小 */
.slide-caption h1 {
font-size: 48px;
}
.slide-caption h3 {
font-size: 18px;
}
/* 关于我们和业务流程设置为两列布局 */
.features,
.services {
grid-template-columns: repeat(2, 1fr);
/* 取消两行布局 */
grid-template-rows: unset;
}
/* 数据部分设置为两列布局 */
.data-section {
/* 每列最小宽度为200象素,最大为自动 */
grid-template-columns: repeat(2, minmax(200px, auto));
row-gap: 24px;
height: auto;
padding: 24px 0;
background-size: 200%;
}
/* 成功案例图片设置为3列 */
.showcases .case-item {
width: calc(100vw / 3);
}
}
/* 小于768象素时 */
@media (max-width: 768px) {
/* 区域的左右内边距设置为40象素 */
section,
.footer-menus {
padding: 0 40px;
}
/* 关于我们和业务流程设置为1列 */
.features,
.services {
grid-template-columns: 1fr;
}
/* 团队成员设置为1列 */
.team-members {
grid-template-columns: minmax(200px, 400px);
/* column-gap: 6vw;
row-gap: 36px; */
}
/* 数据部分设置为1列 */
.data-section {
grid-template-columns: 1fr;
/* 增加背景尺寸 */
background-size: 320%;
}
/* 公司动态设置为1列 */
.activities {
grid-template-columns: 1fr;
row-gap: 36px;
}
/* 成功案例图片显示为两列 */
.showcases .case-item {
width: calc(100vw / 2);
height: 30vw;
}
/* 底部菜单设置为3列 */
.footer-menus {
grid-template-columns: 2fr repeat(2, 1fr);
row-gap: 24px;
}
/* 联系我们占前两列 */
.contact-us {
grid-row: 1 / 3;
}
/* 菜单文字靠右对齐 */
.footer-menu {
text-align: right;
}
}
/* 小于576象素 */
@media (max-width: 576px) {
/* 缩小轮播标题文字,探索更多按钮文字 */
.slide-caption h1 {
font-size: 28px;
}
.slide-caption h3 {
font-size: 14px;
}
.explore-btn {
padding: 8px 18px;
font-size: 14px;
}
/* 成功案例显示为1列 */
.showcases .case-item {
width: 100vw;
height: 60vw;
}
/* 底部菜单显示为1列 */
.footer-menus {
grid-template-columns: 1fr;
/* row-gap: 24px; */
}
/* 底部菜单左对齐 */