take-notes.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* pages/take-notes/take-notes.wxss */
  2. page{
  3. background: #f4f4f4;
  4. }
  5. .empty{
  6. width: 100%;
  7. font-size: 32rpx;
  8. color: #707070;
  9. margin: auto;
  10. text-align: center;
  11. line-height: 200rpx;
  12. }
  13. .total{
  14. padding: 20rpx 30rpx;
  15. font-size: 32rpx;
  16. border-bottom: 10rpx solid #f4f4f4;
  17. background:#fff;
  18. }
  19. .total .total-num{
  20. color: #000;
  21. }
  22. .items {
  23. display: flex;
  24. position: relative;
  25. padding:20rpx 30rpx;
  26. line-height: 42rpx;
  27. background:#fff;
  28. border-bottom: 1rpx solid #f0f0f0;
  29. }
  30. .items:last-child {
  31. border: none!important;
  32. }
  33. .items::after{
  34. content: "";
  35. width: 100%;
  36. height: 1rpx;
  37. background: #f4f4f4;
  38. position: absolute;
  39. top: 0;
  40. left: 0;
  41. }
  42. .items:first-child::after{
  43. width: 0;
  44. }
  45. .items .left{
  46. flex: 1;
  47. }
  48. .items .right{
  49. text-align: right;
  50. }
  51. .items .left .text{
  52. font-size: 28rpx;
  53. }
  54. .items .right .number{
  55. font-size: 32rpx;
  56. color: #e43130;
  57. }
  58. .items .left .date{
  59. font-size: 25rpx;
  60. color: #777777;
  61. }
  62. .items .right .status{
  63. font-size:25rpx;
  64. color: #777777;
  65. }
  66. .loading, .empty {
  67. text-align: center;
  68. font-size: 28rpx;
  69. width: 100%;
  70. height: 80rpx;
  71. line-height: 80rpx;
  72. color: #666;
  73. }