index.vue 1.3 KB
<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>