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
| <template>
| <div class="SdkList">
| <div class="title">免费试用算法</div>
|
| <div class="list heart">
| <SdkItem v-for="i in 16" :key="i"></SdkItem>
| </div>
| </div>
| </template>
|
| <script>
| import SdkItem from "@/views/trialCenter/components/SdkItem";
| export default {
| components: {
| SdkItem,
| },
| };
| </script>
|
| <style lang="scss" scoped>
| .SdkList {
| overflow: hidden;
| padding-bottom: 40px;
| background: url("/images/trialCenter/试用中心.png");
| background-size: cover;
|
| .title {
| margin-top: 158px;
| margin-bottom: 40px;
| text-align: center;
| font-size: 28px;
| }
|
| .list {
| width: 1280px;
| display: flex;
| flex-wrap: wrap;
|
| .SdkItem {
| margin-right: 24px;
| margin-bottom: 40px;
|
| &:nth-child(4n) {
| margin-right: 0;
| }
| }
| }
| }
| </style>
|
|