2024-08-26 16:12:49 +08:00
|
|
|
<template>
|
|
|
|
<view class="container">
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-08-29 17:13:33 +08:00
|
|
|
|
2024-08-26 16:12:49 +08:00
|
|
|
</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;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|