Featured image of post 第八章 响应式页面编写

第八章 响应式页面编写

编写思路

本次页面编写参考网页为 FastAdmin – 基于ThinkPHP和Bootstrap的极速后台开发框架

完成响应式页面编写,尽量使用 bootstrap 组件,减少工作量,大致实现效果如下,部分代码尚未完善。

需要用到的组件

导航栏

参考组件 navbar,需要图标以及导航栏跳转标题,可以将两段代码整合。

 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
<nav class="navbar navbar-expand-lg bg-body-tertiary">
  <div class="container-fluid">
    <a class="navbar-brand" href="#">Navbar</a>
    <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
      <span class="navbar-toggler-icon"></span>
    </button>
    <div class="collapse navbar-collapse" id="navbarSupportedContent">
      <ul class="navbar-nav me-auto mb-2 mb-lg-0">
        <li class="nav-item">
          <a class="nav-link active" aria-current="page" href="#">Home</a>
        </li>
        <li class="nav-item">
          <a class="nav-link" href="#">Link</a>
        </li>
        <li class="nav-item dropdown">
          <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
            Dropdown
          </a>
          <ul class="dropdown-menu">
            <li><a class="dropdown-item" href="#">Action</a></li>
            <li><a class="dropdown-item" href="#">Another action</a></li>
            <li><hr class="dropdown-divider"></li>
            <li><a class="dropdown-item" href="#">Something else here</a></li>
          </ul>
        </li>
        <li class="nav-item">
          <a class="nav-link disabled" aria-disabled="true">Disabled</a>
        </li>
      </ul>
      <form class="d-flex" role="search">
        <input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
        <button class="btn btn-outline-success" type="submit">Search</button>
      </form>
    </div>
  </div>
</nav>
1
2
3
4
5
6
7
8
<nav class="navbar bg-body-tertiary">
  <div class="container-fluid">
    <a class="navbar-brand" href="#">
      <img src="/docs/5.3/assets/brand/bootstrap-logo.svg" alt="Logo" width="30" height="24" class="d-inline-block align-text-top">
      Bootstrap
    </a>
  </div>
</nav>

不难发现,下面这段代码中,a 标签中为 logo 以及标题,可以将其向上方代码合并,多于的搜索框可以删除,再对文本进行修改后可以得到导航栏。

在修改时,可能会因为改变原本的 flex 布局导致页面缩放时导航栏图标位置发生改变,可以在外层嵌套 div 设置弹性盒布局,使得图标靠右。

轮播图

参考 Carousel 组件,在下方找到类似的组件模板。

 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
<div id="carouselExampleCaptions" class="carousel slide">
  <div class="carousel-indicators">
    <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
    <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
    <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
  </div>
  <div class="carousel-inner">
    <div class="carousel-item active">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>First slide label</h5>
        <p>Some representative placeholder content for the first slide.</p>
      </div>
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>Second slide label</h5>
        <p>Some representative placeholder content for the second slide.</p>
      </div>
    </div>
    <div class="carousel-item">
      <img src="..." class="d-block w-100" alt="...">
      <div class="carousel-caption d-none d-md-block">
        <h5>Third slide label</h5>
        <p>Some representative placeholder content for the third slide.</p>
      </div>
    </div>
  </div>
  <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Previous</span>
  </button>
  <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="visually-hidden">Next</span>
  </button>
</div>

更改 img 标签中的 src 以及下方的文本介绍即可达到类似效果,背景图片自适应需要额外添加部分 css 效果,具体代码如下。

1
2
3
4
5
6
7
8
.wrapper img {
    height: 550px;
    width: auto;
    overflow: hidden;
    object-fit: cover;
    /* 将图片的水平位置设置在正中间 */
    object-position: center;
}

卡片

通过媒体查询监测页面大小变化,设置断点使得页面元素响应的进行改变。

 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
@media screen and (max-width:1400px) {
    .addon-list .row {
        height: 550px;
    }

    .addon-list .row .grid-item {
        width: 270px;
        height: 252px;
        padding: 0;
        background-color: #fff;
        border-radius: 3px;
    }

    .addon-item {
        width: 270px;
        height: 252px;
    }

    .addon-item .addon-img {
        width: 270px;
        height: 180px;
    }

    .addon-item .addon-img img {
        width: 270px;
        height: 180px;
    }

    main .sec3 {
        background-color: rgb(245, 245, 245);
        /* height: 797px; */
    }
}

可以通过 min-width 属性设置页面的最小宽度,使得在页面宽度过小的情况下展示一定内容。

参考代码

index.html

  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
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>FastAdmin – 基于Bootstrap的极速后台开发框架</title>
  <link rel="icon" href="./favicon.ico">
  <link rel="stylesheet" href="./css/bootstrap.min.css">
  <link rel="stylesheet" href="./css/index.css">
  <script src="./js/bootstrap.bundle.min.js"></script>
</head>

<body>
  <!-- https://www.fastadmin.net/ -->
  <header>
    <nav class="navbar navbar-expand-lg bg-body-tertiary">
      <div class="container-fluid">
        <a class="navbar-brand" href="#">
          <img src="./img/logo.svg" alt="">
        </a>
        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
          aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
          <span class="navbar-toggler-icon"></span>
        </button>
        <div class="collapse navbar-collapse" id="navbarNavDropdown">
          <ul class="navbar-nav">
            <li class="nav-item">
              <a class="nav-link active" href="#">首页</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="#">插件市场</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="#">Uni-app</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="#">下载</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="#">演示</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="#">文档</a>
            </li>
            <li class="nav-item dropdown">
              <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
                aria-expanded="false">
                精选
              </a>
              <ul class="dropdown-menu">
                <li><a class="dropdown-item" href="#">Action</a></li>
                <li><a class="dropdown-item" href="#">Another action</a></li>
                <li><a class="dropdown-item" href="#">Something else here</a></li>
              </ul>
            </li>
            <li class="nav-item dropdown">
              <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
                aria-expanded="false">
                问答
              </a>
              <ul class="dropdown-menu">
                <li><a class="dropdown-item" href="#">Action</a></li>
                <li><a class="dropdown-item" href="#">Another action</a></li>
                <li><a class="dropdown-item" href="#">Something else here</a></li>
              </ul>
            </li>
            <li class="nav-item dropdown">
              <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
                aria-expanded="false">
                更多
                <ul class="dropdown-menu">
                  <li><a class="dropdown-item" href="#">Action</a></li>
                  <li><a class="dropdown-item" href="#">Another action</a></li>
                  <li><a class="dropdown-item" href="#">Something else here</a></li>
                </ul>
              </a>
            </li>
          </ul>
        </div>
      </div>
    </nav>
  </header>
  <main>
    <!-- 轮播图 -->
    <div class="wrapper">
      <div id="carouselExampleCaptions" class="carousel slide">
        <div class="carousel-indicators">
          <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
            aria-current="true" aria-label="Slide 1"></button>
          <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
            aria-label="Slide 2"></button>
          <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
            aria-label="Slide 3"></button>
          <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="3"
            aria-label="Slide 4"></button>
          <button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="4"
            aria-label="Slide 5"></button>
        </div>
        <div class="carousel-inner">
          <div class="carousel-item active">
            <img src="./img/b1.jpg" class="d-block w-100" alt="...">
            <div class="carousel-caption d-none d-md-block">
              <h3>模块化开发</h3>
              <p class="text-muted">一键生成CRUD/一键生成菜单/一键生成API文档<br>
                强大的一键生成功能快速简化你的开发流程,加快你的项目开发</p>
            </div>
          </div>
          <div class="carousel-item">
            <img src="./img/b2.jpg" class="d-block w-100" alt="...">
            <div class="carousel-caption d-none d-md-block">
              <h3>Second slide label</h3>
              <p class="text-muted">Some representative placeholder content for the second slide.</p>
            </div>
          </div>
          <div class="carousel-item">
            <img src="./img/b3.jpg" class="d-block w-100" alt="...">
            <div class="carousel-caption d-none d-md-block">
              <h3>响应式布局</h3>
              <p class="text-muted">基于ThinkPHP和Bootstrap进行二次开发,手机、平板、PC均自动适配,无需要担心兼容性问题</p>
            </div>
          </div>
          <div class="carousel-item">
            <img src="./img/b4.jpg" class="d-block w-100" alt="...">
            <div class="carousel-caption d-none d-md-block">
              <h3>Third slide label</h3>
              <p class="text-muted">Some representative placeholder content for the third slide.</p>
            </div>
          </div>
          <div class="carousel-item">
            <img src="./img/b5.jpg" class="d-block w-100" alt="...">
            <div class="carousel-caption d-none d-md-block">
              <h3>Third slide label</h3>
              <p class="text-muted">Some representative placeholder content for the third slide.</p>
            </div>
          </div>
        </div>
        <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions"
          data-bs-slide="prev">
          <span class="carousel-control-prev-icon" aria-hidden="true"></span>
          <span class="visually-hidden">Previous</span>
        </button>
        <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions"
          data-bs-slide="next">
          <span class="carousel-control-next-icon" aria-hidden="true"></span>
          <span class="visually-hidden">Next</span>
        </button>
      </div>
    </div>
    <section class="sec1">
      <div class="container-m cc" id="cc">
        <div class="text-line">
          <h2>适用人群</h2>
          <div class="subtitle">FastAdmin是你不错的选择!</div>
        </div>
        <div class="row">
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-30">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/code.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>一般开发者</strong>
              </div>
              <p class="suitable-intro">
                你可以使用FastAdmin快速开发你的后台管理、会员中心、API接口、移动应用等等功能
              </p>
              <p>
                <a href="/whatisfastadmin.html" class="btn blue-bg pix-white btn-round-lg wide">
                  <b>什么是FastAdmin</b>
                </a>
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/browser.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>应用(插件)开发者</strong>
              </div>
              <p class="suitable-intro">
                你可以在FastAdmin分享你开发的完整应用或插件,共享FastAdmin开放的生态资源。
              </p>
              <p>
                <a href="/developer.html" class="btn blue-bg pix-white btn-round-lg wide">
                  <b>加入开发者</b>
                </a>
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/laptop.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>普通使用者</strong>
              </div>
              <p class="suitable-intro">
                你可以在FastAdmin找到你需要的应用、小程序,快速部署你自己的完整网站、APP或小程序。
              </p>
              <p>
                <a href="/store.html" class="btn blue-bg pix-white btn-round-lg wide">
                  <b>插件市场</b>
                </a>
              </p>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="sec2">
      <div class="container-m cc" id="cc">
        <div class="text-line">
          <h2>为什么选择我们</h2>
          <div class="subtitle">成千上万的小伙伴都选择了FastAdmin</div>
        </div>
        <div class="row">
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-30">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-1.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>开源免费无加密</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin快速开发框架无需授权即可商业使用,代码全部开源免费且无任何加密。
              </p>
              <p>
                <a href="/whatisfastadmin.html" class="btn blue-bg pix-white btn-round-lg wide">
                  <b>立即下载</b>
                </a>
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-2.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>应用插件丰富</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin拥有丰富的应用插件市场,商城、CMS、博客、问答、小程序、点餐、订场应有尽有。
              </p>
              <p>
                <a href="/developer.html" class="btn blue-bg pix-white btn-round-lg wide">
                  <b>插件市场</b>
                </a>
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-3.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>社区氛围好</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin的社区小伙伴都非常热心的互相帮助,免费为大家解决各种使用中的问题。
              </p>
              <p>
                <a href="/store.html" class="btn blue-bg pix-white btn-round-lg wide">
                  <b>我要提问</b>
                </a>
              </p>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="section store-section pix-padding-bottom-40 sec3">
      <div class="container-m cccc">
        <div class="text-line">
          <h2><span>插件市场</span></h2>
          <div class="subtitle">基于FastAdmin框架开发的应用插件!</div>
        </div>
        <div class="addon-filter">
          <ul class="nav nav-pills hidden-xs tab">
            <li role="presentation" class="active"><a href="/store.html">全部</a></li>
            <li role="presentation"><a href="/store.html?pay=free" rel="nofollow">免费插件</a></li>
            <li role="presentation"><a href="/store.html?pay=price" rel="nofollow">付费插件</a></li>
          </ul>
          <div class="addon-post btn-group pull-right"><a href="/store.html" class="btn btn-gray gray-3-bg"> 更多 </a>
          </div>
        </div>
        <div class="addon-list fadeInDown animated">
          <div class="row">
            <div class="grid-item" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/command.html" title="在线命令" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/command.png!addon" srcset="./img/command.png 2x"
                      alt="在线命令" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/command.html" target="_blank"
                      title="在线命令">在线命令</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;302382</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/example.html" title="开发示例" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/example.png!addon" srcset="./img/example.png 2x"
                      alt="开发示例" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/example.html" target="_blank"
                      title="开发示例">开发示例</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;175524</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/darktheme.html" title="后台深色模式插件" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/darktheme.svg" srcset="./img/darktheme.svg 2x"
                      alt="后台深色模式插件" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/darktheme.html" target="_blank"
                      title="后台深色模式插件">后台深色模式插件</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;4135</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item" data-type="price">
              <div class="addon-item">
                <div class="tags tags-hot"></div>
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/cms.html" title="CMS内容管理系统" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/cms.svg" srcset="./img/cms.svg 2x" alt="CMS内容管理系统"
                      class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/cms.html" target="_blank"
                      title="CMS内容管理系统">CMS内容管理系统</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;115943</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-danger">¥299.00</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/epay.html" title="微信支付宝整合插件" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/epay.png!addon" srcset="./img/epay.png 2x"
                      alt="微信支付宝整合插件" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/epay.html" target="_blank"
                      title="微信支付宝整合插件">微信支付宝整合插件</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;103436</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/filewatcher.html" title="文件修改自动刷新页面插件" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/filewatcher.svg" srcset="./img/filewatcher.svg 2x"
                      alt="文件修改自动刷新页面插件" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/filewatcher.html" target="_blank"
                      title="文件修改自动刷新页面插件">文件修改自动刷新页面插件</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;1050</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/department.html" title="组织架构部门管理" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/department.svg" srcset="./img/department.svg 2x"
                      alt="组织架构部门管理" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/department.html" target="_blank"
                      title="组织架构部门管理">组织架构部门管理</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;11444</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
            <div class="grid-item weixin" data-type="free">
              <div class="addon-item">
                <div class="addon-img">
                  <a href="https://www.fastadmin.net/store/wechat.html" title="微信管理" target="_blank"> <img
                      src="https://cdn.fastadmin.net/uploads/addons/wechat.png!addon" srcset="./img/wechat.png 2x"
                      alt="微信管理" class="img-responsive"></a>
                </div>
                <div class="addon-info">
                  <div class="title"> <a href="https://www.fastadmin.net/store/wechat.html" target="_blank"
                      title="微信管理">微信管理</a> </div>
                  <div class="metas clearfix">
                    <span class="addon-author"><svg t="1745380386839" class="icon" viewBox="0 0 1107 1024" version="1.1"
                        xmlns="http://www.w3.org/2000/svg" p-id="3484" width="16" height="16">
                        <path
                          d="M1107.495 745.828v212.847c0 17.737-6.057 32.879-18.603 45.425-12.546 12.546-27.687 18.602-45.424 18.602H64.027c-17.737 0-32.879-6.056-45.425-18.602C6.057 991.554 0 976.412 0 958.675V745.828c0-17.737 6.057-32.878 18.602-45.424C31.148 687.858 46.29 681.8 64.027 681.8h309.32l89.984 90.417c25.524 24.66 55.807 37.205 90.416 37.205 34.61 0 64.893-12.546 90.417-37.205l90.416-90.417h308.888c17.737 0 32.878 6.057 45.424 18.603 12.546 12.546 18.603 27.687 18.603 45.424z m-216.308-378.97c7.355 18.17 4.326 33.744-9.517 46.722L583.598 711.652c-7.787 8.652-18.17 12.546-29.85 12.546-12.114 0-22.064-4.326-29.851-12.546L225.825 413.58c-13.844-12.978-16.872-28.553-9.517-46.722 7.354-17.305 20.765-25.957 39.368-25.957h170.45V42.829c0-11.68 4.326-21.63 12.546-29.85 8.22-8.22 18.602-12.546 29.85-12.546h170.45c11.681 0 21.631 4.326 29.851 12.545 8.22 8.22 12.546 18.603 12.546 29.85v298.073h170.45c18.603 0 32.014 8.652 39.368 25.957zM839.273 924.93c8.22-8.22 12.546-18.602 12.546-29.85 0-11.68-4.326-21.631-12.546-29.85-8.652-8.22-18.602-12.547-29.85-12.547-11.68 0-21.63 4.327-29.85 12.546-8.22 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.545 29.851 8.22 8.22 18.603 12.546 29.85 12.546 11.682 0 21.632-4.326 29.851-12.546z m170.45 0c8.22-8.22 12.547-18.602 12.547-29.85 0-11.68-4.327-21.631-12.546-29.85-8.22-8.22-18.603-12.547-29.85-12.547-11.681 0-21.631 4.327-29.851 12.546-8.652 8.653-12.546 18.603-12.546 29.85 0 11.681 4.326 21.631 12.546 29.851 8.22 8.22 18.602 12.546 29.85 12.546 11.248 0 21.198-4.326 29.85-12.546z m0 0"
                          fill="#C1C1C1" p-id="3485"></path>
                      </svg>&nbsp;&nbsp;56899</span>
                    <span class="addon-price">
                      <span class="price">
                        <span class="text-success">免费</span>
                      </span>
                    </span>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="sec4">
      <div class="container-m cc" id="cc">
        <div class="text-line">
          <h2>为什么选择我们</h2>
          <div class="subtitle">成千上万的小伙伴都选择了FastAdmin</div>
        </div>
        <div class="row">
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-30">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-1.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>开源免费无加密</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin快速开发框架无需授权即可商业使用,代码全部开源免费且无任何加密。
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-2.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>应用插件丰富</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin拥有丰富的应用插件市场,商城、CMS、博客、问答、小程序、点餐、订场应有尽有。
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-3.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>社区氛围好</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin的社区小伙伴都非常热心的互相帮助,免费为大家解决各种使用中的问题。
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-3.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>社区氛围好</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin的社区小伙伴都非常热心的互相帮助,免费为大家解决各种使用中的问题。
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-3.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>社区氛围好</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin的社区小伙伴都非常热心的互相帮助,免费为大家解决各种使用中的问题。
              </p>
            </div>
          </div>
          <div class="col-md-4 col-xs-12 col-sm-4 suitable-item">
            <div class="pix-content text-center pix-padding-v-50 pix-margin-v-10 pix-padding-h-20">
              <div class="pix-margin-bottom-20 suitable-img img-zoom">
                <img src="./img/features-3.png" alt="">
              </div>
              <div class="suitable-title">
                <strong>社区氛围好</strong>
              </div>
              <p class="suitable-intro">
                FastAdmin的社区小伙伴都非常热心的互相帮助,免费为大家解决各种使用中的问题。
              </p>
            </div>
          </div>
        </div>
      </div>
    </section>
    <section class="sec5" style="height: 500px;"></section>
  </main>
  <footer>
    <div class="footer-container">
      <div class="footer-inner">
        <div class="footer-top">
          <ul class="footer-ul">
            <li class="title">FastAdmin</li>
            <li>关于我们</li>
            <li>联系我们</li>
            <li>站点地图</li>
            <li>安全公告</li>
          </ul>
          <ul class="footer-ul">
            <li class="title">商务合作</li>
            <li>解决方案</li>
            <li>广告投放</li>
            <li>业务合作</li>
            <li>赞助投资</li>
          </ul>
          <ul class="footer-ul">
            <li class="title">服务支持</li>
            <li>插件协议</li>
            <li>用户协议</li>
            <li>云大使中心</li>
            <li>开发者中心</li>
          </ul>
          <ul class="footer-ul">
            <li>
              FastAdmin是一款基于ThinkPHP+Bootstrap开发的快速后台开发框架,软件著作权编号:2018SR1065394。FastAdmin基于Apache2.0开源协议发布,免费且不限制商业使用,目前被广泛应用于各大行业应用后台管理。
            </li>
          </ul>
        </div>
      </div>
    </div>
  </footer>
</body>

</html>

index.css

  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
* {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, 'Microsoft Yahei', Arial, sans-serif;
}

/* body{
    min-width: 700px;
} */

.navbar,
.sec1,
.sec2,
.sec3,
.sec4,
.wrapper {
    min-width: 765px;
}

.navbar {
    padding: 0;
    justify-content: space-between;
}

.navbar-nav .nav-item .nav-link {
    padding: 16px 15px;
    font-size: 14px;
    line-height: 28px;
}

.navbar .container-fluid .navbar-brand img {
    height: 50px;
}

.navbar-toggler {
    text-align: right;
}

#navbarNavDropdown {
    justify-content: end;
}

.wrapper,
#carouselExampleCaptions,
.carousel-inner,
.carousel-item {
    height: 550px;
    width: 100%;

}

.wrapper img {
    height: 550px;
    width: auto;
    overflow: hidden;
    object-fit: cover;
    /* 将图片的水平位置设置在正中间 */
    object-position: center;
}

.wrapper .carousel-caption {
    color: black;
}

.wrapper .carousel-caption h3 {
    font-weight: 700;
}

main .sec1 {
    background-color: rgb(245, 245, 245);
    height: 575px;
}

main .sec2 {
    background-color: rgb(255, 255, 255);
    height: 550px;
}

main .container-m {
    /* box-sizing: border-box; */
    padding: 0 15px;
}

main .container-m .text-line {
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

main .container-m .text-line h2 {
    font-size: 32px;
    margin: 20px 0;
}

main .container-m .text-line .subtitle {
    color: rgb(145, 145, 145);
}

main .row {
    justify-content: space-between;
    padding: 0 12px;
}

main .row .suitable-item {
    background-color: #fff;
    width: 400px;
    height: 380px;
    padding: 50px 20px;
    text-align: center;
}

.container-m {
    width: 1320px;
    margin: 0 auto;
}

@media screen and (max-width:1400px) {
    main .row .suitable-item {
        width: 350px;
        height: 380px;
        padding: 50px 20px;
    }

    .container-m {
        width: 1140px;
        margin: 0 auto;
    }
}

@media screen and (max-width:1200px) {
    main .row .suitable-item {
        width: 300px;
        height: 380px;
        padding: 50px 20px;
    }

    .container-m {
        width: 960px;
        margin: 0 auto;
    }

}

@media screen and (max-width:992px) {
    main .row .suitable-item {
        width: 240px;
        height: 380px;
        padding: 50px 20px;
    }

    .container-m {
        width: 770px;
        margin: 0 auto;
    }
}

@media screen and (max-width:770px) {
    main .sec1 .suitable-item {
        width: 100%;
        height: 300px;
        padding: 20px 20px;
        margin: 0 0 20px 0;
    }

    main .sec2 .suitable-item {
        width: 100%;
        height: 300px;
        padding: 20px 20px;
        margin: 0 0 20px 0;
    }

    main .sec1 {
        height: 1150px;
    }

    main .sec2 {
        height: 1150px;
    }
}

.pix-margin-bottom-20 {
    width: 120px;
    height: 120px;
    padding: 10px;
    display: inline-block;
}

.pix-margin-bottom-20 img {
    width: 100px;
}

.suitable-title {
    padding: 10px 0;
}

.btn-round-lg b {
    width: 122px;
    padding: 6px 34px;
    background-color: rgb(89, 163, 252);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
}

section .suitable-intro {
    color: rgb(145, 145, 145);
    font-size: 14px;
}

.addon-filter {
    display: flex;
    justify-content: space-between;
    height: 42px;
    line-height: 42px;
    margin-bottom: 20px;
}

.addon-filter li {
    margin-right: 30px;
    font-size: 14px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.addon-filter li a {
    padding: 10px 15px;
    color: rgb(97, 97, 97);
    text-decoration: none;
}

.addon-filter li:hover {
    background-color: #fff;
    border-radius: 3px;
}

.addon-filter li.active {
    background-color: rgb(51, 99, 223);
    border-radius: 3px;
}

.addon-filter li.active a {
    color: #fff;
}

.addon-filter .pull-right a {
    position: relative;
    top: 6px;
    height: 30px;
    box-sizing: border-box;
    padding: 6px 12px;
    line-height: 18px;
    font-size: 13px;
    color: rgb(33, 37, 41);
    background-color: rgb(248, 249, 250);
    border-radius: 3px;
}

.addon-filter .pull-right a:hover {
    background-color: rgb(226, 230, 234);
}

.addon-item {
    height: 267px;
    /* padding: 0 15px; */
    width: 292.5px;
}

.addon-item .addon-img {
    width: 292.5px;
    height: 195px;
}

.addon-item .addon-img img {
    width: 292.5px;
    height: 195px;
}

/* .cccc{background-color: aqua;} */

.addon-list {
    width: 100%;
    /* width: 1290px; */
    height: 594px;
}

.addon-list .row {
    height: 594px;
}

.addon-list .row .grid-item {
    width: 292.5px;
    padding: 0;
    height: 267px;
    background-color: #fff;
    border-radius: 3px;
}

.grid-item .addon-info .title {
    font-size: 14px;
    padding: 0 10px;
    margin-top: 10px;
}

.grid-item .addon-info .title a {
    color: rgb(51, 51, 51);
    text-decoration: none;
}

.grid-item .addon-info .metas {
    padding: 10px;
}

.grid-item .addon-info .metas .addon-author {
    color: rgb(193, 193, 193);
    font-size: 14px;
}

.grid-item .addon-info .metas .addon-author svg {
    position: relative;
    top: -3px;
}

.grid-item .addon-info .metas .addon-price {
    color: #1DB367;
    font-size: 14px;
    float: right;
}

main .sec3 {
    background-color: rgb(245, 245, 245);
    height: 857px;
}


@media screen and (max-width:1400px) {
    .addon-list .row {
        height: 550px;
    }

    .addon-list .row .grid-item {
        width: 270px;
        height: 252px;
        padding: 0;
        background-color: #fff;
        border-radius: 3px;
    }

    .addon-item {
        width: 270px;
        height: 252px;
    }

    .addon-item .addon-img {
        width: 270px;
        height: 180px;
    }

    .addon-item .addon-img img {
        width: 270px;
        height: 180px;
    }

    main .sec3 {
        background-color: rgb(245, 245, 245);
        /* height: 797px; */
    }
}

@media screen and (max-width:1200px) {
    .addon-list .row {
        height: 850px;
    }

    .addon-list .row .grid-item {
        width: 290px;
        height: 270px;
        padding: 0;
        background-color: #fff;
        border-radius: 3px;
    }

    .addon-item {
        width: 290px;
        height: 270px;
    }

    .addon-item .addon-img {
        width: 290px;
        height: 195px;
    }

    .addon-item .addon-img img {
        width: 290px;
        height: 195px;
    }

    .weixin {
        position: relative;
        left: -320px;
    }

    main .sec3 {
        background-color: rgb(245, 245, 245);
        height: 1150px;
    }
}

@media screen and (max-width:992px) {
    main .sec3 {
        height: 1650px;
    }

    .addon-list .row {
        height: 1400px;
    }

    .addon-list .row .grid-item {
        width: 355px;
        height: 310px;
        padding: 0;
        background-color: #fff;
        border-radius: 3px;
    }

    .addon-item {
        width: 355px;
        height: 310px;
    }

    .addon-item .addon-img {
        width: 355px;
        height: 236px;
    }

    .addon-item .addon-img img {
        width: 355px;
        height: 236px;
    }

    .weixin {
        /* position: relative; */
        /* left: -320px; */
        position: static;
    }
}

main .sec4 {
    background-color: rgb(89, 163, 252);
    height: 950px;
    color: #fff;
}

main .sec4 .suitable-item {
    background-color: rgb(89, 163, 252);
}

main .sec4 .suitable-intro {
    font-size: 16px;
}

main .sec4 .text-line .subtitle,
main .sec4 .suitable-intro {
    color: #fff;
}


@media screen and (max-width:770px) {
    main .sec4 .suitable-item {
        width: 100%;
        height: 300px;
        padding: 20px 20px;
        margin: 0 0 20px 0;
    }

    main .sec4 {
        height: 2100px;
    }
}

/* --------footer-------- */

.footer-container {
    height: 400px;
    background-color: rgb(22, 30, 38);
    color: rgb(170, 170, 170);
    font-size: 14px;
}

.footer-container .footer-inner {
    background-color: rgb(37, 48, 60);
}

.footer-container .footer-top{
    width: 1260px;
    height: 250px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 27px 15px;
    display: flex;
    justify-content: space-between;
}

.footer-container .footer-ul {
    list-style: none;
    padding: 0;
    width: 280px;
    height: 180px;
}

.footer-container .footer-ul li{
    line-height: 30px;
}

.footer-container .title {
    color: #fff;
    margin-bottom: 10px;
}
Blog for Sandy Memories