65 lines
1.2 KiB
Vue
65 lines
1.2 KiB
Vue
<script>
|
|
import { store } from './utils/store.js'
|
|
|
|
export default {
|
|
onLaunch() {
|
|
store.boot()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page {
|
|
background: #faf8ff;
|
|
color: #131b2e;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
|
|
}
|
|
.page {
|
|
min-height: 100vh;
|
|
background: #faf8ff;
|
|
box-sizing: border-box;
|
|
}
|
|
.card {
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
|
|
border: 1rpx solid rgba(0, 0, 0, 0.03);
|
|
}
|
|
.muted { color: #737686; }
|
|
.ink { color: #131b2e; }
|
|
.brand { color: #2563eb; }
|
|
.btn-primary {
|
|
height: 96rpx;
|
|
background: #2563eb;
|
|
color: #fff;
|
|
border-radius: 16rpx;
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.btn-primary[disabled] { opacity: 0.6; }
|
|
.chip {
|
|
font-size: 22rpx;
|
|
padding: 4rpx 12rpx;
|
|
border-radius: 8rpx;
|
|
background: #eaedff;
|
|
color: #004ac6;
|
|
}
|
|
.badge {
|
|
min-width: 32rpx;
|
|
height: 32rpx;
|
|
padding: 0 8rpx;
|
|
border-radius: 32rpx;
|
|
background: #ba1a1a;
|
|
color: #fff;
|
|
font-size: 20rpx;
|
|
font-weight: 700;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.row-line { height: 1rpx; background: #eaedff; margin-left: 136rpx; }
|
|
</style>
|