ZZJ
2022-03-09 cc7401e771e13b40bb7dea11ec26da3acfc8e5c7
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
<template>
  <div class="SdkItem">
    <div class="icon">
      <img src="/images/index/15戴口罩.png" alt="" />
    </div>
    <div class="title">戴口罩</div>
    <div class="des">
      对火车驾驶舱的监控视频进行检测,当驾驶人员出现趴伏现象时,将结果记录下来
    </div>
    <div class="button">立即试用</div>
  </div>
</template>
 
<script>
export default {};
</script>
 
<style lang="scss" scoped>
.SdkItem {
  width: 302px;
  height: 280px;
  background-color: #fff;
  text-align: center;
  .icon img {
    margin-top: 20px;
    width: 96px;
  }
 
  .title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
  }
 
  .des {
    margin: 0 20px 30px 20px;
    color: #666666;
    font-size: 14px;
  }
 
  .button {
    width: 100%;
    height: 40px;
    box-shadow: 0px 2px 8px rgba(0, 43, 106, 0.12);
    color: #ff6a00;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    cursor: pointer;
 
    &:hover {
      background: linear-gradient(
        90.78deg,
        #ffba4a 0%,
        #ff6a00 20.33%,
        #ff6a00 79.66%,
        #ffba4a 100%
      );
      color: #fff;
    }
  }
}
</style>