2023-10-30 04:00:38 +00:00
|
|
|
<template>
|
|
|
|
<div class="com-root">
|
2023-10-30 06:08:16 +00:00
|
|
|
<div class="content1"></div>
|
|
|
|
<div class="content2"></div>
|
|
|
|
<div class="content3">
|
|
|
|
<image src="../../static/gdz49@3x.png"></image>
|
|
|
|
</div>
|
2023-10-30 04:00:38 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "view-venues"
|
|
|
|
}
|
|
|
|
</script>
|
2023-10-30 06:08:16 +00:00
|
|
|
<style scoped lang="scss">
|
|
|
|
.com-root{
|
|
|
|
position: relative;
|
|
|
|
.content3{
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
z-index: 999;
|
|
|
|
position: absolute;
|
|
|
|
image{
|
|
|
|
width: 750rpx;
|
|
|
|
height: 1449.44rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.content2{
|
|
|
|
transform:rotate(180deg) ;
|
|
|
|
width: 100vw;
|
|
|
|
height: 50vh;
|
|
|
|
background-image: url("../../static/bg-common.png");
|
2023-10-30 04:00:38 +00:00
|
|
|
|
2023-10-30 06:08:16 +00:00
|
|
|
}
|
|
|
|
.content1{
|
|
|
|
width: 100vw;
|
|
|
|
height: 50vh;
|
|
|
|
background-image: url("../../static/bg-common.png");
|
2023-10-30 04:00:38 +00:00
|
|
|
|
2023-10-30 06:08:16 +00:00
|
|
|
}
|
2023-10-30 04:00:38 +00:00
|
|
|
}
|
|
|
|
</style>
|