60 lines
1.1 KiB
Vue
60 lines
1.1 KiB
Vue
<template>
|
|
<view class="container">
|
|
<view class="container-top">
|
|
欢迎登录物业管理系统
|
|
</view>
|
|
<view class="container-title">
|
|
<view class="container-title-view">登录</view>
|
|
</view>
|
|
<view class="container-bottom">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
$globalWidth: 600rpx;
|
|
$buttonColor: #0e7ff5;
|
|
|
|
.container {
|
|
display: flex;
|
|
background: -webkit-linear-gradient(270deg,
|
|
rgba(227, 239, 249, 1) 0%,
|
|
rgba(245, 245, 247, 1) 100%);
|
|
flex-direction: column;
|
|
/* align-items: center; */
|
|
width: 100%;
|
|
height: 100vh;
|
|
|
|
align-items: center;
|
|
|
|
.container-top {
|
|
margin-top: 200rpx;
|
|
width: $globalWidth;
|
|
font-size: 50rpx;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.container-title {
|
|
width: $globalWidth;
|
|
margin-top: 80rpx;
|
|
font-size: 35rpx solid $buttonColor;
|
|
|
|
.container-title-view {
|
|
border-bottom: 6rpx solid $buttonColor;
|
|
width: 70rpx;
|
|
text-align: center;
|
|
border-radius: 15rpx;
|
|
}
|
|
}
|
|
|
|
.container-bottom {
|
|
width: $globalWidth;
|
|
margin-top: 80rpx;
|
|
}
|
|
}
|
|
</style> |