53 lines
1.1 KiB
Vue
53 lines
1.1 KiB
Vue
<template>
|
|
<div class="pdgird">
|
|
<div class="pdgird-title">
|
|
<h2>幸福郫都微网实格架构</h2>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'pdgird',
|
|
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.pdgird {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
background: url(https://cdn.cunwuyun.cn/dvcp/dv/pddv/middle-bg.png) no-repeat center;
|
|
background-size: contain;
|
|
|
|
.pdgird-title {
|
|
position: absolute;
|
|
top: 200px;
|
|
left: 50%;
|
|
width: 640px;
|
|
height: 80px;
|
|
line-height: 80px;
|
|
text-align: center;
|
|
background: url(https://cdn.cunwuyun.cn/dvcp/dv/pddv/middle-titlebg.png) no-repeat center;
|
|
background-size: 100% 100%;
|
|
transform: translateX(-50%);
|
|
|
|
h2 {
|
|
color: #FFFFFF;
|
|
text-shadow: 0px 3px 5px rgba(0,0,0,0.5000);
|
|
background: linear-gradient(180deg, #FFFFFF 0%, #3BB6FF 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
</style>
|