index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .item {
  2. width: 100vw;
  3. padding-left: 30rpx;
  4. box-sizing: border-box;
  5. margin-bottom: 20rpx;
  6. background-color: #ffffff;
  7. .top {
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. height: 80rpx;
  12. width: 100%;
  13. border-bottom: 1rpx solid #ddd;
  14. box-sizing: border-box;
  15. padding-right: 30rpx;
  16. .tags {
  17. text {
  18. display: inline-block;
  19. height: 40rpx;
  20. line-height: 40rpx;
  21. background: #E7EEFF;
  22. border-radius: 20rpx;
  23. padding: 0 15rpx;
  24. font-size: 20rpx;
  25. color: #3874F6;
  26. margin-right: 10rpx;
  27. }
  28. }
  29. .statu {
  30. font-size: 28rpx;
  31. }
  32. }
  33. .content {
  34. position: relative;
  35. .num {
  36. height: 40rpx;
  37. line-height: 40rpx;
  38. font-size: 28rpx;
  39. color: #333333;
  40. padding: 20rpx 0;
  41. }
  42. .exp {
  43. height: 34rpx;
  44. font-size: 24rpx;
  45. margin-bottom: 8rpx;
  46. color: #999999;
  47. }
  48. .amount {
  49. position: absolute;
  50. font-size: 28rpx;
  51. color: #FF3B30;
  52. bottom: 0;
  53. right: 30rpx;
  54. }
  55. }
  56. .bottom {
  57. height: 72rpx;
  58. line-height: 72rpx;
  59. margin-top: 12rpx;
  60. border-top: 1rpx solid #ddd;
  61. box-sizing: border-box;
  62. padding-right: 30rpx;
  63. font-size: 24rpx;
  64. color: #666666;
  65. }
  66. }