This commit is contained in:
yanran200730
2022-08-10 10:59:08 +08:00
parent 4f6d6b9e77
commit b33faf19f7
2 changed files with 56 additions and 3 deletions

View File

@@ -0,0 +1,52 @@
<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>