index.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .table {
  2. width: 100vw;
  3. background-color: #ffffff;
  4. box-sizing: border-box;
  5. margin-top: 30rpx;
  6. .label {
  7. display: flex;
  8. align-items: center;
  9. height: 80rpx;
  10. padding: 0 20rpx;
  11. font-weight: bold;
  12. font-size: 26rpx;
  13. color: #666;
  14. .text {
  15. display: inline-block;
  16. width: 14rpx;
  17. height: 26rpx;
  18. background: #31A7FF;
  19. margin-right: 14rpx;
  20. }
  21. }
  22. }
  23. .list {
  24. position: relative;
  25. padding: 20rpx 20rpx 0 40rpx;
  26. box-sizing: border-box;
  27. .title {
  28. font-weight: bold;
  29. margin-top: 8rpx;
  30. }
  31. .row {
  32. width: 100%;
  33. font-size: 24rpx;
  34. color: #999;
  35. margin-top: 8rpx;
  36. }
  37. .bor {
  38. border-bottom: 1px solid rgb(209, 208, 208);
  39. padding-bottom: 20rpx;
  40. }
  41. .status {
  42. position: absolute;
  43. right: 20rpx;
  44. top: 20rpx;
  45. padding: 6rpx 14rpx;
  46. border-radius: 6rpx;
  47. background-color: #FF8D00;
  48. color: #fff;
  49. font-size: 24rpx;
  50. }
  51. .sum {
  52. color: #F3013B;
  53. position: absolute;
  54. bottom: 20rpx;
  55. right: 20rpx;
  56. font-weight: bold;
  57. }
  58. }
  59. .list:first-child {
  60. margin-top: 0 !important;
  61. }
  62. .list:last-child {
  63. .bor {
  64. border: none;
  65. }
  66. }