You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
4 years ago
|
<template>
|
||
|
<div class="wrap">
|
||
|
<div class="button_wrap">
|
||
|
<div class="button_item"><i class="iconfont icon-arrowRight"></i></div>
|
||
|
<div class="button_item"><i class="iconfont icon-arrowRight"></i></div>
|
||
|
</div>
|
||
|
<div class="notice">
|
||
|
注:期货交易虚拟仿真实验已经通过2019年四川省级虚拟仿真实验认定
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<style lang="scss" scoped>
|
||
|
.wrap{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
position: fixed;
|
||
|
background: url('../../assets/img/indexBg.jpg');
|
||
|
.button_wrap{
|
||
|
width: 900px;
|
||
|
height: 60px;
|
||
|
// background: red;
|
||
|
margin-top: 600px;
|
||
|
margin-left: 330px;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
.button_item{
|
||
|
width: 60px;
|
||
|
height: 60px;
|
||
|
background: #FF5288;
|
||
|
.icon-arrowRight{
|
||
|
font-size: 55px;
|
||
|
color: white;
|
||
|
}
|
||
|
}
|
||
|
.button_item:hover{
|
||
|
background: #002E66;
|
||
|
cursor: pointer
|
||
|
}
|
||
|
}
|
||
|
.notice{
|
||
|
width: 600px;
|
||
|
margin-top: 180px;
|
||
|
margin-left: 250px;
|
||
|
color: #002E66;
|
||
|
font-size: 27px;
|
||
|
letter-spacing:4px;
|
||
|
line-height:1.5
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</style>
|