index.less 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. page {
  2. background: #f6f6f6;
  3. padding: 20rpx 20rpx 20rpx 0;
  4. .box {
  5. margin: 20rpx;
  6. border-radius: 10rpx;
  7. background: #fff;
  8. padding: 15rpx 20rpx;
  9. .title {
  10. font-size: 36rpx;
  11. }
  12. .details {
  13. display: flex;
  14. margin-top: 20rpx;
  15. .image {
  16. width: 180rpx;
  17. height: 180rpx;
  18. border-radius: 18rpx;
  19. }
  20. .information {
  21. margin-left: 20rpx;
  22. .num {
  23. margin-bottom: 30rpx;
  24. }
  25. .time {
  26. font-size: 24rpx;
  27. color: #666666;
  28. margin-top: 10rpx;
  29. }
  30. }
  31. }
  32. .content {
  33. margin-bottom: 20rpx;
  34. display: flex;
  35. justify-content: space-between;
  36. .price {
  37. margin: auto 0;
  38. }
  39. .information {
  40. display: flex;
  41. font-size: 26rpx;
  42. color: #666666;
  43. .img {
  44. width: 100rpx;
  45. height: 100rpx;
  46. }
  47. .number {
  48. margin-top: 30rpx;
  49. }
  50. }
  51. }
  52. .bummon {
  53. display: flex;
  54. justify-content: space-between;
  55. border-top: 2rpx solid #F0F0F0;
  56. .totalPrice {
  57. border-top: 2rpx solid #F0F0F0;
  58. text-align: right;
  59. padding: 20rpx 0;
  60. font-size: 26rpx;
  61. color: #222222;
  62. }
  63. .pay {
  64. padding: 10rpx 20rpx;
  65. background: red;
  66. color: #fff;
  67. height: 60rpx;
  68. margin: auto 0;
  69. border-radius: 10rpx;
  70. }
  71. }
  72. }
  73. }