72 lines
1.3 KiB
Vue
72 lines
1.3 KiB
Vue
|
|
<template>
|
|||
|
|
<CommonPage show-footer :show-header="false">
|
|||
|
|
<!-- 整个页面外层container -->
|
|||
|
|
<div class="container">
|
|||
|
|
<!-- 测试标题 -->
|
|||
|
|
<p id="indexTitle" class="lead">在线报告评测系统(首页)</p>
|
|||
|
|
</div>
|
|||
|
|
</CommonPage>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<style scoped>
|
|||
|
|
#indexTitle {
|
|||
|
|
font-size: 48px;
|
|||
|
|
letter-spacing: 10px;
|
|||
|
|
text-align: center;
|
|||
|
|
padding-top: 50px;
|
|||
|
|
padding-bottom: 40px;
|
|||
|
|
color: #4e627a;
|
|||
|
|
}
|
|||
|
|
#index-content {
|
|||
|
|
margin-left: auto;
|
|||
|
|
margin-right: auto;
|
|||
|
|
width: 800px;
|
|||
|
|
height: 350px;
|
|||
|
|
}
|
|||
|
|
.index-left-div {
|
|||
|
|
width: 495px;
|
|||
|
|
height: 273px;
|
|||
|
|
float: left;
|
|||
|
|
}
|
|||
|
|
.index-left-div img {
|
|||
|
|
border-radius: 5px;
|
|||
|
|
}
|
|||
|
|
.index-right-div {
|
|||
|
|
margin-left: 80px;
|
|||
|
|
font-size: 18px;
|
|||
|
|
height: 273px;
|
|||
|
|
float: left;
|
|||
|
|
}
|
|||
|
|
.index-right-div p {
|
|||
|
|
color: #4e627a;
|
|||
|
|
}
|
|||
|
|
.index-right-line1 {
|
|||
|
|
padding-top: 70px;
|
|||
|
|
}
|
|||
|
|
.index-right-line2 {
|
|||
|
|
padding-top: 20px;
|
|||
|
|
}
|
|||
|
|
.index-right-line3 {
|
|||
|
|
padding-top: 20px;
|
|||
|
|
}
|
|||
|
|
.index-right-div a {
|
|||
|
|
color: rgb(30, 208, 225);
|
|||
|
|
}
|
|||
|
|
img.shadow-img {
|
|||
|
|
width: auto;
|
|||
|
|
height: auto;
|
|||
|
|
-webkit-border-radius: 4px;
|
|||
|
|
-moz-border-radius: 4px;
|
|||
|
|
border-radius: 4px;
|
|||
|
|
-webkit-border-radius: 4px;
|
|||
|
|
-moz-border-radius: 4px;
|
|||
|
|
border-radius: 4px;
|
|||
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
|||
|
|
-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
|||
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
|
|||
|
|
border: 0px;
|
|||
|
|
display: block;
|
|||
|
|
outline: none;
|
|||
|
|
}
|
|||
|
|
</style>
|