index.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. ***HotApp云笔记,基于HotApp小程序统计云后台
  3. ***免费云后台申请地址 https://weixin.hotapp.cn/cloud
  4. ***API 文档地址:https://weixin.hotapp.cn/api
  5. ***小程序技术讨论QQ群:173063969
  6. */
  7. page {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .container {
  12. flex-flow: column nowrap;
  13. justify-content: center;
  14. align-items: center;
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .title {
  19. margin: 15rpx 5%;
  20. width: 90%;
  21. text-align: center;
  22. height: 60rpx;
  23. font-size: 38rpx;
  24. border-bottom: 1px solid #f5f5f5;
  25. }
  26. .row {
  27. flex: 1;
  28. display: flex;
  29. width: 90%;
  30. height: auto;
  31. margin: 0 5%;
  32. overflow: hidden;
  33. }
  34. .row .text {
  35. width: 100%;
  36. flex: 1;
  37. height: auto;
  38. font-size: 36rpx;
  39. color: #666;
  40. }
  41. .date {
  42. padding: 10rpx 0;
  43. }
  44. .bottom {
  45. width: 100%;
  46. background: #fff;
  47. display: flex;
  48. flex-flow: row nowrap;
  49. justify-content: center;
  50. align-items: center;
  51. }
  52. .bottom .btn {
  53. flex: 1;
  54. line-height: 2;
  55. padding: 10rpx 20rpx;
  56. margin: 30rpx 30rpx;
  57. }
  58. .btn.success {
  59. background: #1aad19;
  60. color: #fff;
  61. }
  62. .btn.del {
  63. background: #e64340;
  64. color: #fff;
  65. }