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="Banner">
| <div class="heart">
| <div class="title">免费试用中心</div>
| <div class="des">完成注册,即可免费体验产品</div>
| <div class="button" @click="jump">马上咨询</div>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| methods: {
| jump() {
| this.$router.push("/connectUs");
| },
| },
| };
| </script>
|
| <style scoped lang="scss">
| .Banner {
| overflow: hidden;
| height: 546px;
| background-image: url("/images/index/banner.png");
| color: #fff;
|
| .title {
| margin: 209px 0 10px 0;
| font-size: 48px;
| }
|
| .des {
| margin-bottom: 52px;
| width: 560px;
| font-size: 24px;
| line-height: 60px;
| }
|
| .button {
| font-size: 18px;
| width: 160px;
| height: 56px;
| background: #0065ff;
| text-align: center;
| line-height: 56px;
| }
| }
| </style>
|
|