index.vue
1.3 KB
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
<template>
<div class="index_wrap">
<Top :activeIndex="activeIndex"></Top>
<router-view></router-view>
<Bottom></Bottom>
</div>
</template>
<script>
import Top from "../../common/top";
import Bottom from "../../common/bottom";
export default {
data(){
return{
activeIndex:0
}
},
methods:{
// 去测评
toEvalute(){
},
},
components:{
Top,
Bottom
},
mounted(){
},
}
</script>
<style scoped>
.main{
width: 1200px;
margin: 28px auto;
height: 750px;
box-shadow: #ccc 0px 0px 5px;
}
/* 标题 */
.title{
color: #526AA6;
font-size: 30px;
width: 100%;
height:94px;
border-bottom: 2px solid #526AA6;
text-align: center;
font-weight: bold;
line-height: 94px;
}
/* 开始测评 */
.start_test_wrap{
width: 100%;
}
.start_test{
margin: 80px 90px 0 86px
}
.start_title{
font-size: 26px;
color: #333;
text-align: left;
margin-bottom: 26px;
}
.start_content{
font-size: 18px;
color: #666;
text-align: left;
line-height: 20px;
}
.start_btn{
width: 200px;
height: 38px;
text-align: center;
line-height: 38px;
background-color: #526AA6;
color: #fff;
font-size: 20px;
border-radius: 3px;
margin: 120px auto 0;
}
</style>