index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. .mainBox{
  6. background:#F7F8FB ;
  7. .list{
  8. overflow-y: scroll;
  9. overflow-x: hidden;
  10. min-height: 100vh;
  11. padding: 30rpx;
  12. padding-top: 110rpx;
  13. .item{
  14. // height: 154rpx;
  15. background: #FFFFFF;
  16. box-shadow: 0rpx 4rpx 16rpx -8rpx rgba(0,103,104,0.16);
  17. border-radius: 32rpx;
  18. padding: 40rpx 32rpx;
  19. position: relative;
  20. margin-bottom: 24rpx;
  21. .water{
  22. width: 114rpx;
  23. height: 120rpx;
  24. position: absolute;
  25. bottom: 0;
  26. left: 0;
  27. z-index: 0;
  28. border-radius:0 0 0 32rpx;
  29. }
  30. .top{
  31. display: flex;
  32. align-items: center;
  33. justify-content: space-between;
  34. position: relative;
  35. z-index: 1;
  36. .name{
  37. font-size: 28rpx;
  38. font-family: PingFang-SC, PingFang-SC;
  39. font-weight: bold;
  40. color: #333333;
  41. }
  42. .money{
  43. font-size: 32rpx;
  44. font-family: PingFang-SC, PingFang-SC;
  45. font-weight: bold;
  46. color: #333333;
  47. padding-right: 18rpx;
  48. }
  49. }
  50. .bot{
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. margin-top: 14rpx;
  55. position: relative;
  56. z-index: 1;
  57. .count{
  58. font-size: 24rpx;
  59. font-family: PingFang-SC, PingFang-SC;
  60. font-weight: 500;
  61. color: #666666;
  62. width: 110rpx;
  63. height: 32rpx;
  64. background: #C5E1FF;
  65. border-radius: 0rpx 14rpx 0rpx 14rpx;
  66. display: flex;
  67. align-items: center;
  68. justify-content: center;
  69. }
  70. .time{
  71. font-size: 24rpx;
  72. font-family: PingFang-SC, PingFang-SC;
  73. font-weight: 500;
  74. color: #999999;
  75. }
  76. }
  77. }
  78. }
  79. }
  80. }
  81. ::v-deep .u-tabs{
  82. background: #FFFFFF!important;
  83. box-shadow: 0rpx 2rpx 20rpx 0rpx rgba(0,0,0,0.05)!important;
  84. border-radius: 0rpx 0rpx 32rpx 32rpx!important;
  85. position: fixed;
  86. width: 100%;
  87. z-index: 3;
  88. }