ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
微信小程序采用flex弹性布局 ``` .container { height: 100vh; //vh为viewheight,即可见内容高度的100% display: flex; flex-direction: column; //排列方向:纵向 默认为横向 justify-content: space-around; //space-between暂不支持 align-items: center; } ```