- 添加uni-ui组件库依赖 - 实现微信静默登录功能 - 创建资产、策略、我的等核心页面 - 添加策略组合配置功能 - 实现持仓详情展示 - 完善用户信息展示 - 添加全局样式和工具类 - 配置小程序项目设置
25 lines
720 B
Plaintext
25 lines
720 B
Plaintext
|
|
/* 每个页面公共css */
|
|
page {
|
|
background-color: #F3F4F6;
|
|
font-family: 'Inter', 'Noto Sans SC', sans-serif;
|
|
--brand-color: #064e3b;
|
|
--brand-light: #10B981;
|
|
}
|
|
|
|
/* 通用工具类 */
|
|
.bg-white { background-color: #ffffff;
|
|
}
|
|
.rounded-2xl { border-radius: 32rpx;
|
|
}
|
|
.shadow-sm { box-shadow: 0 2rpx 6rpx rgba(0,0,0,0.05);
|
|
}
|
|
.flex-row { display: flex; flex-direction: row;
|
|
}
|
|
.flex-col { display: flex; flex-direction: column;
|
|
}
|
|
.items-center { align-items: center;
|
|
}
|
|
.justify-between { justify-content: space-between;
|
|
}
|
|
page{--status-bar-height:25px;--top-window-height:0px;--window-top:0px;--window-bottom:0px;--window-left:0px;--window-right:0px;--window-magin:0px}[data-c-h="true"]{display: none !important;} |