index.wxss 1.6 KB

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