Files
36Wisdom/ui-src/src/App.vue
T

57 lines
796 B
Vue

<script>
export default {
onLaunch() {
console.log('36wisdom app launch')
}
}
</script>
<style>
page {
background-color: #fdf6ec;
font-size: 28rpx;
color: #5b4636;
}
/* 全局卡通配色 */
.bg-warm {
background-color: #fdf6ec;
}
.card {
background: #ffffff;
border-radius: 24rpx;
box-shadow: 0 6rpx 20rpx rgba(91, 70, 54, 0.08);
}
.btn-primary {
background: linear-gradient(135deg, #ff9a3d, #ff6b35);
color: #ffffff;
border-radius: 48rpx;
font-size: 32rpx;
font-weight: 600;
padding: 20rpx 0;
text-align: center;
}
.btn-primary:active {
opacity: 0.85;
}
.btn-disabled {
background: #e5d9c8;
color: #b3a18d;
}
.title-lg {
font-size: 40rpx;
font-weight: 700;
color: #5b4636;
}
.text-muted {
color: #a08c74;
font-size: 24rpx;
}
</style>