ZZJ
2022-07-15 5c0c6ad7ac6f28e970532af9936de638830f1161
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
<template>
  <div class="SdkList">
    <div class="title">免费试用算法</div>
 
    <div class="list scroll heart">
      <SdkItem
        v-for="(item, index) in freeSdk"
        :key="index"
        :sdk="item"
      ></SdkItem>
    </div>
  </div>
</template>
 
<script>
import SdkItem from "@/views/trialCenter/components/SdkItem";
export default {
  props: {
    freeSdk: {},
  },
  components: {
    SdkItem,
  },
};
</script>
 
<style lang="scss" scoped>
.SdkList {
  overflow: hidden;
  padding-bottom: 40px;
  background: url("/images/trialCenter/center.png");
  background-size: cover;
 
  .title {
    margin-top: 158px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 28px;
  }
 
  .list {
    max-height: 960px;
    width: 1280px;
    display: flex;
    flex-wrap: wrap;
 
    .SdkItem {
      margin-right: 22px;
      margin-bottom: 40px;
 
      &:nth-child(4n) {
        margin-right: 0;
      }
    }
  }
}
</style>