| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*
- ***HotApp云笔记,基于HotApp小程序统计云后台
- ***免费云后台申请地址 https://weixin.hotapp.cn/cloud
- ***API 文档地址:https://weixin.hotapp.cn/api
- ***小程序技术讨论QQ群:173063969
- */
- page {
- width: 100%;
- height: 100%;
- }
- .container {
- flex-flow: column nowrap;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100%;
- }
- .title {
- margin: 15rpx 5%;
- width: 90%;
- text-align: center;
- height: 60rpx;
- font-size: 38rpx;
- border-bottom: 1px solid #f5f5f5;
- }
- .row {
- flex: 1;
- display: flex;
- width: 90%;
- height: auto;
- margin: 0 5%;
- overflow: hidden;
- }
- .row .text {
- width: 100%;
- flex: 1;
- height: auto;
- font-size: 36rpx;
- color: #666;
- }
- .date {
- padding: 10rpx 0;
- }
- .bottom {
- width: 100%;
- background: #fff;
- display: flex;
- flex-flow: row nowrap;
- justify-content: center;
- align-items: center;
- }
- .bottom .btn {
- flex: 1;
- line-height: 2;
- padding: 10rpx 20rpx;
- margin: 30rpx 30rpx;
- }
- .btn.success {
- background: #1aad19;
- color: #fff;
- }
- .btn.del {
- background: #e64340;
- color: #fff;
- }
|