index.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .container {
  2. padding: 0 14rpx;
  3. }
  4. .container .message {
  5. padding: 14rpx 0;
  6. text-align: center;
  7. font-size: 24rpx;
  8. color: #FE9221;
  9. background: #FFFAEA;
  10. }
  11. .container .total {
  12. margin: 12rpx 0 0;
  13. background: #FFFFFF;
  14. border-radius: 20rpx;
  15. }
  16. .container .total .box {
  17. padding: 27rpx 31rpx;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. font-size: 30rpx;
  22. }
  23. .container .historyList {
  24. position: fixed;
  25. top: 0;
  26. left: 0;
  27. height: 100vh;
  28. padding: 250rpx 14rpx 0rpx;
  29. padding-bottom: calc(136rpx + env(safe-area-inset-bottom)) !important;
  30. box-sizing: border-box;
  31. z-index: -1;
  32. }
  33. .container .historyList .user {
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. margin-bottom: 20rpx;
  38. padding: 20rpx 28rpx;
  39. background: #FFFFFF;
  40. border-radius: 20rpx;
  41. }
  42. .container .historyList .user .avatar {
  43. width: 64rpx;
  44. height: 64rpx;
  45. background: #D8D8D8;
  46. border-radius: 50%;
  47. border: 1rpx solid #979797;
  48. }
  49. .container .historyList .user .info {
  50. flex: 1;
  51. margin-left: 30rpx;
  52. }
  53. .container .historyList .user .info .nickName {
  54. margin-bottom: 6rpx;
  55. font-size: 30rpx;
  56. }
  57. .container .historyList .user .info .addTime {
  58. font-size: 26rpx;
  59. color: #7B7B7B;
  60. }
  61. .bottom {
  62. position: absolute;
  63. width: 100%;
  64. padding: 26rpx 0;
  65. bottom: 0;
  66. left: 0;
  67. background-color: white;
  68. }
  69. .bottom .btn {
  70. margin: 0 auto;
  71. margin-bottom: env(safe-area-inset-bottom) !important;
  72. width: 466rpx;
  73. padding: 14rpx 0;
  74. background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
  75. border-radius: 39rpx;
  76. color: white;
  77. }
  78. .empty {
  79. margin-top: 190rpx;
  80. }
  81. .empty .nullImg {
  82. transform: scale(0.8);
  83. }