You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

47 lines
979 B

<template>
<view>
<view class="header">局长信箱即接即办系统</view>
<view class="main">
<image class="logo" src="/static/images/login/logo.png" mode="aspectFit" width="80px"></image>
<view class="title">
<view>长沙市公安局</view>
<view>局长信箱即接即办系统</view>
</view>
<image class="fui-logo" src="/static/images/login/ill.png" mode="widthFix"></image>
</view>
</view>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.header {
height: 60px;
background-color: var(--primary-color);
color: #fff;
font-size: 19px;
text-align: center;
line-height: 60px;
}
.main {
height: calc(100vh - 60px);
background-image: url('/static/images/login/bg.png');
background-size: cover;
background-position: center;
box-sizing: border-box;
color: #fff;
text-align: center;
padding-top: 40px;
font-size: 27px;
.logo {
height: 112px;
margin-bottom: 8px;
}
.title {
margin-bottom: 20px;
}
}
</style>