bonus-ui/src/views/screen/cityScreen/components/equiStatus/index.vue

76 lines
1.2 KiB
Vue
Raw Normal View History

2025-09-14 19:34:02 +08:00
<template>
<div class="content">
<div class="content-title">
<div class="title">
装备状态
</div>
</div>
<div class="content-view">
</div>
</div>
</template>
<script>
export default {
data() {
return {
}
},
created() {
},
mounted() {
},
methods: {
},
}
</script>
<style lang="scss" scoped>
.content{
width: 100%;
height: 100%;
background-image: url("../../../../../assets/cityScreen/equiStatusBg.png");
background-repeat: no-repeat;
background-size: 100% 100%;
}
.content-title{
width: 100%;
height: 18%;
position: relative;
color: #78D6FF;
}
.title{
font-size: 24px;
position: absolute;
top: 42%;
left: 18%;
}
.content-view{
width: 100%;
height: 85%;
padding-left: 8%;
}
@media screen and (min-width: 1920px) {
.title{
font-size: 10px;
position: absolute;
top: 42%;
left: 18%;
}
}
@media screen and (min-width: 3000px) {
.title{
font-size: 24px;
position: absolute;
top: 42%;
left: 18%;
}
}
</style>