Extensive_Web/src/views/front/media/index.vue

56 lines
1.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div class="home">
<div class="banner">
<div class="banner_text">
<div style="font-size: 50px; color: #e7e7e7;">
来源于临床服务于临床
</div>
<div style="font-size: 35px; color: #e7e7e7;">
用先进的影像数据分析技术为生命保驾护航
</div>
</div>
</div>
<div class="content">
</div>
</div>
</template>
<script>
export default {
data () {
return {
}
},
methods: {
},
mounted () {}
}
</script>
<style scoped lang="scss">
.home {
background: #fff;
.banner {
height: 340px;
background: url(../../../../src/static/images/banner.jpg) no-repeat center center;
background-size: cover;
position: relative;
overflow: hidden;
clear: both;
.banner_text {
width: 100%;
font-size: 52px;
position: absolute;
left: 50%;
transform: translateX(-50%);
top: 50px;
color: #fff;
text-align: center;
}
}
}
</style>